Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

7 Самсонов Иван #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

VEH9
Copy link

@VEH9 VEH9 commented Oct 17, 2022

No description provided.

);
};

ReactDom.render(<Form />, document.getElementById('userForm'));
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Кажется, ты забыл закоммитить изменения в index.html, без него ничего не работает)

return (
<Modal onClose={close}>
<Modal.Header>Пользователь сохранен</Modal.Header>
<Modal.Body>{listItems.length !== 0 && saved && <div>Измененные данные: {listItems}</div>}</Modal.Body>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Когда рендеришь массив, у каждого из детей должно быть свойство key. Сейчас его нет, и в консоли из-за этого ошибки при открытии модалки

setData({ ...data, current: { ...data.current, [field]: value } });
}

function renderModal() {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Если у тебя в компоненте появляется функция, которая называется render..., это хороший звоночек, что это должен быть отдельный компонент :)

Comment on lines +53 to +55
<p>
Имя: было {data.saved.name} стало {data.current.name}
</p>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Это в целом тоже может быть мини-компонентом)

Comment on lines +90 to +94
function close() {
setOpened(false);
setData({ ...data, saved: data.current });
setSaved(true);
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тут внутри столько всего происходит, что это скорее не просто close, а saveAndClose какой-нибудь) Ну или абстрактный closeHandler. Главное, чтобы название не вводило в заблуждение, что там происходит какое-то одно простое действие

О, и кстати в принципе, почему сохранение данных происходит по закрытию модалки, а не по кнопке "Сохранить"?)

Comment on lines +75 to +77
onClick={() => {
close();
}}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А можно просто onClick={close}

});
const [saved, setSaved] = useState(false);
const [opened, setOpened] = useState(false);
const [panel, setPanel] = useState(false);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А это зачем?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants