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

Feature/ht5 #75

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open

Conversation

dmitrykhotko
Copy link

@dmitrykhotko dmitrykhotko commented Oct 29, 2021

можно было много чего оптимизировать - редьюсеры, экшны, компоненты, но не было времени, сделал только основное

@@ -17,20 +24,32 @@ class Menu extends Component {
this.setState({ error });
}

componentDidMount({ prevId } = {}) {
Copy link
Owner

Choose a reason for hiding this comment

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

в componentDidMount ничего не приходит, это у нас самый первый рендер компонента

Copy link
Author

Choose a reason for hiding this comment

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

@koretskiyav - так и есть. но за счет того, что мы перемонтируем меню каждый раз (key={id}), didMount отрабатывает каждое переключение ресторана и инициирует подгрузку продуктов.

Copy link
Author

Choose a reason for hiding this comment

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

в данном случае, наверное, можно было не делать проверок в принципе, просто дергать за загрузку.

} from './constants';

const loadedItems = {};
Copy link
Owner

Choose a reason for hiding this comment

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

лучше данные. о том, что у нас уже загружено хранить в редаксе

return {
...state,
activeId: data[0].id,
entities: arrToMap(data),
Copy link
Owner

Choose a reason for hiding this comment

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

не совсем понимаю, как это работает, если мы ревьюхи грузить только по одному разу за счет loadedItems, но при этом мы записываем только данный из последней загрузки

Copy link
Author

Choose a reason for hiding this comment

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

@koretskiyav - это никак не работает, это поле не нужно вообще. результат копипаста из редьюсера ресторанов и спешки.

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