-
Notifications
You must be signed in to change notification settings - Fork 26
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
Misnik ht 4 #52
base: master
Are you sure you want to change the base?
Misnik ht 4 #52
Conversation
да |
@@ -57,8 +58,8 @@ Product.propTypes = { | |||
}; | |||
|
|||
const mapStateToProps = (state, props) => ({ | |||
amount: state.order[props.id] || 0, | |||
product: state.products[props.id], | |||
amount: productAmountSelector(state, props.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.
лучше делать селекторы от всех стейта и пропов, вроде productAmountSelector(state, props), расскажу при разборе домашки почему
export default Restaurant; | ||
const mapStateToProps = (state, props) => ({ | ||
restaurant: restaurantSelector(state, props.id), | ||
averageRating: averageRatingSelector(state, restaurantSelector(state, props.id).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.
это все можно написать через один селектор averageRatingSelector(state, props)
@@ -31,4 +31,10 @@ Review.defaultProps = { | |||
user: 'Anonymous', | |||
}; | |||
|
|||
export default Review; | |||
const mapStateToProps = (state, props) => ({ | |||
user: state.users[state.reviews[props.id].userId].name, |
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.
тут нужны селекторы
middleware не успел доделать. И не совсем понял, откуда нам взять id текущего ресторана. Нужно его добавить к value при клике на onSubmit?