-
Notifications
You must be signed in to change notification settings - Fork 53
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
base: master
Are you sure you want to change the base?
7 Самсонов Иван #38
Conversation
); | ||
}; | ||
|
||
ReactDom.render(<Form />, document.getElementById('userForm')); |
There was a problem hiding this comment.
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> |
There was a problem hiding this comment.
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() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Если у тебя в компоненте появляется функция, которая называется render...
, это хороший звоночек, что это должен быть отдельный компонент :)
<p> | ||
Имя: было {data.saved.name} стало {data.current.name} | ||
</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это в целом тоже может быть мини-компонентом)
function close() { | ||
setOpened(false); | ||
setData({ ...data, saved: data.current }); | ||
setSaved(true); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тут внутри столько всего происходит, что это скорее не просто close, а saveAndClose какой-нибудь) Ну или абстрактный closeHandler
. Главное, чтобы название не вводило в заблуждение, что там происходит какое-то одно простое действие
О, и кстати в принципе, почему сохранение данных происходит по закрытию модалки, а не по кнопке "Сохранить"?)
onClick={() => { | ||
close(); | ||
}} |
There was a problem hiding this comment.
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); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А это зачем?
No description provided.