-
Notifications
You must be signed in to change notification settings - Fork 13
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
base: master
Are you sure you want to change the base?
Ht4v2 #37
Conversation
|
||
switch (type) { | ||
case SET_ACTIVE_RESTAURANT: | ||
return { ...restaurants, activeRestaurantId: payload.id }; |
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.
теперь знание о какой ресторан активный храниться в двух местах, в этом редьюсере и в компоненте Tabs, я расскажу на занятие какие могут возникнуть с этим проблемы
} | ||
const activeRestaurantId = payload.activeRestaurantId; | ||
const restaurant = restaurants[activeRestaurantId]; | ||
restaurant.reviews.push(payload.id); |
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.
мутации в редьюсере недопустимы, на любом уровне вложености
} | ||
return { | ||
...reviews, | ||
error: 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.
лучше для этого сделать на одну вложенность больше, чтобы на одном уровне не было разных типов данных (и ревью по id и дополнительные данные про ошибки), у нас это как раз будет сегодня на занятии
if (action.type === 'POST_REVIEW') { | ||
const newReviewId = uuidv4(); | ||
const newUserId = uuidv4(); | ||
action.payload.id = newReviewId; |
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.
не стоит мутировать action, лучше создать новый
|
||
const ReviewForm = ({ onSubmit }) => { | ||
const { values, handlers, reset } = useForm(INITIAL_VALUES); | ||
|
||
const activeRestaurantId = useSelector( | ||
(state) => state.restaurants.activeRestaurantId |
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.
это нужно выносить в селекторы
const { name, menu, reviews } = restaurant; | ||
const allReviews = useSelector((state) => state.reviews); |
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.
все это нужно выносить в селекторы, чтобы компонент занимался только рендером
В целом таск выполнен, возникли небольшие затруднения с reselect - в некоторых местах пришлось обойтись без нее, но там где нет селекторов я меморизировал через useMemo.