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

Ht4v2 #37

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

Ht4v2 #37

wants to merge 6 commits into from

Conversation

chertt007
Copy link

В целом таск выполнен, возникли небольшие затруднения с reselect - в некоторых местах пришлось обойтись без нее, но там где нет селекторов я меморизировал через useMemo.


switch (type) {
case SET_ACTIVE_RESTAURANT:
return { ...restaurants, activeRestaurantId: payload.id };
Copy link
Owner

@koretskiyav koretskiyav Jan 12, 2021

Choose a reason for hiding this comment

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

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

}
const activeRestaurantId = payload.activeRestaurantId;
const restaurant = restaurants[activeRestaurantId];
restaurant.reviews.push(payload.id);
Copy link
Owner

Choose a reason for hiding this comment

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

мутации в редьюсере недопустимы, на любом уровне вложености

}
return {
...reviews,
error: false,
Copy link
Owner

Choose a reason for hiding this comment

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

лучше для этого сделать на одну вложенность больше, чтобы на одном уровне не было разных типов данных (и ревью по id и дополнительные данные про ошибки), у нас это как раз будет сегодня на занятии

if (action.type === 'POST_REVIEW') {
const newReviewId = uuidv4();
const newUserId = uuidv4();
action.payload.id = newReviewId;
Copy link
Owner

Choose a reason for hiding this comment

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

не стоит мутировать action, лучше создать новый


const ReviewForm = ({ onSubmit }) => {
const { values, handlers, reset } = useForm(INITIAL_VALUES);

const activeRestaurantId = useSelector(
(state) => state.restaurants.activeRestaurantId
Copy link
Owner

Choose a reason for hiding this comment

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

это нужно выносить в селекторы

const { name, menu, reviews } = restaurant;
const allReviews = useSelector((state) => state.reviews);
Copy link
Owner

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