-
Notifications
You must be signed in to change notification settings - Fork 634
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
Улучшения формы в статье Мгновенная валидация форм #5314
Conversation
@@ -298,13 +298,19 @@ | |||
event.preventDefault() | |||
if (hasInvalidInput()) { | |||
formError() | |||
inputList.forEach((inputElement) => { |
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.
тут можно немного сократить
inputList.forEach(checkInputValidity)
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.
Спасибо! Текущая реализация намного лучше :)
Но у нее все еще есть проблема
Если заполнить все поля правильно, но не убрать фокус с последнего поля в котором была ошибка, кнопка сабмита недоступна, см пример ниже
Самый простой способ решить эту проблему - не дизейблить кнопку сабмита
Способ посложнее - следить за изменением состояния формы при каждом обновлении поля, когда форма валидная делать кнопку отправки доступной, но ошибку показывать только на blur
Превью контента из f53ac2d опубликовано. |
@HellSquirrel привет) большое спасибо за ревью! пушнула правочки |
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.
Класс!
Описание
Улучшения формы в статье Мгновенная валидация форм:
номер ишью - #5273
Чек-лист
/css/color/
,/tools/json/
,/tools/gulp/#kak-ponyat
)images/example.png
,demos/example/
,../demos/example/
)