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

Misnik ht 4 #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Misnik ht 4 #52

wants to merge 1 commit into from

Conversation

Laidar
Copy link

@Laidar Laidar commented Dec 13, 2021

middleware не успел доделать. И не совсем понял, откуда нам взять id текущего ресторана. Нужно его добавить к value при клике на onSubmit?

@koretskiyav
Copy link
Owner

middleware не успел доделать. И не совсем понял, откуда нам взять id текущего ресторана. Нужно его добавить к value при клике на onSubmit?

да

@@ -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),
Copy link
Owner

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)
Copy link
Owner

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,
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