-
Notifications
You must be signed in to change notification settings - Fork 0
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
Sprint 2 #5
Conversation
✅ Deploy Preview for legendary-cat-a62c0e ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
Здравствуйте. (Нужно развернуть общий комментарий ↓)
Посмотрите на гитхабе все комментарии к коду (нужно прокрутить вниз страницу там)
Работа проделана огромная
Что сделано отлично:
Readme
хорошо оформлен- Проект задеплоен и отлично работает
- Отлично, что не забыли про
.gitignore
- Отлично, что ограничиваете версию
node
- Отлично, что нет
EOF
ошибок в гите - Хорошая структура папок и файлов
- Добавлен
ESLint
иStylelint
- Отлично, что цвета вынесены в
css
-константы - Отлично, что не забываете про тег
main
для главной части страницы - Отлично, что не забываете удалять обработчики
- Отличная реализация валидации
Что можно улучшить:
- лучше всего передавать тип пропсов в виде дженерика в
Block
, чтобы можно было конкретный тип пропсов всегда иметь под каждый отдельный экземпляр классаBlock
. Будет очень универсально
Поздравляю! Ваша работа принята.
Критических замечаний нет
Вы отлично потрудились.
Удачного дальнейшего обучения.
}) | ||
} | ||
|
||
private _removeEvents() { |
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.
Отлично
Отлично, что не забываете удалять обработчики
export type Props = Record<string, unknown>; | ||
export type Children = Record<string, Element | Block>; | ||
|
||
class Block { |
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.
Можно лучше
лучше всего передавать тип пропсов в виде дженерика в Block
, чтобы можно было конкретный тип пропсов всегда иметь под каждый отдельный экземпляр класса Block
. Будет очень универсально
abstract class Block<Props extends Record<string, any> = unknown> {
timeout?: number, | ||
} | ||
|
||
export type HTTP = (url: string, options?: Options) => Promise<any>; |
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.