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/ht4 #62

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

Conversation

dmitrykhotko
Copy link

No description provided.

@@ -56,8 +57,8 @@ Product.propTypes = {
};

const mapStateToProps = (state, props) => ({
amount: state.order[props.id] || 0,
product: state.products[props.id],
amount: orderSelector(state)[props.id] || 0,
Copy link
Owner

Choose a reason for hiding this comment

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

лучше делать селекторы от всех стейта и пропов, вроде orderSelector(state, props), расскажу при разборе домашки почему

const [activeTab, setActiveTab] = useState('menu');

const reviews = useMemo(
Copy link
Owner

Choose a reason for hiding this comment

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

это вычисление лучше перенести в селекторы

const tabs = useMemo(
() => restaurants.map(({ id, name }) => ({ id, label: name })),
() =>
Object.values(restaurants).map(({ id, name }) => ({ id, label: name })),
Copy link
Owner

Choose a reason for hiding this comment

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

это вычисление лучше перенести в селектор


return {
review,
user: usersSelector(state)[review.userId],
Copy link
Owner

Choose a reason for hiding this comment

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

это все можно выбрать через один селектор usersSelector(state, props)

const user = { id: userId, name };
const review = { id: uuidv4(), userId, text, rating };

next(addUser(user));
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