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

junior course react #26

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

junior course react #26

wants to merge 9 commits into from

Conversation

schurin
Copy link

@schurin schurin commented Aug 10, 2020

  • Добавлен списко товаров
  • Фильтрация
  • Redux не подключал для шаринга фильтров использовал Context

2020-08-10-15-33-47-3tmo4

width: '6em'
}

class PriceFilter extends BaseComponent {

Choose a reason for hiding this comment

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

Думаю уже нет смысла наследоваться от BaseComponent, эта часть была для понимания как sCU реализуется. Наследуйся от React.Component

Copy link
Author

Choose a reason for hiding this comment

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

Мне самому инетресно пока, когда был рерндер
Давай оставим :)

class PriceFilter extends BaseComponent {

handleControlChange(filterName, value) {
setTimeout(() => this.props.onChangeFilter({

Choose a reason for hiding this comment

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

Вся асинхронщина должнв быть в componentDidMount

Copy link
Author

Choose a reason for hiding this comment

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

Это задержка пользовательского ввода
Чтобы фильтрация не происходила мгновенно после ввода каждого символа

<input style={ inuputStyle }
type="text"
defaultValue={ minPrice || 0 }
onChange={(event)=> this.handleControlChange('minPrice', parseInt(event.target.value, 10))}/>

Choose a reason for hiding this comment

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

В целом в этом случае стрелки ок. Но это часто приводит в проблемам "лишних" рендеров тк функция анонимная каждый раз.
Нужно это иметь ввиду.
https://ru.reactjs.org/docs/faq-functions.html#arrow-function-in-render тут подробнее

Copy link
Author

Choose a reason for hiding this comment

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

обратил внимание, для реакта это повод перерисовать компонент, ввиду того, что ссылка изменилась
в конкретной ситуации передаём minPrice как аргумент

handleFilterChange(changes) {
const { filterName, value } = changes;

setTimeout(() => this.props.onChangeFilter({

Choose a reason for hiding this comment

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

Вообще не очень понятно зачем тут таймаут

Copy link
Author

Choose a reason for hiding this comment

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

нужна задержка по вводу пользователя
правда ей тут немного не метсто

Copy link
Author

Choose a reason for hiding this comment

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

уберу ка я это от сюда


import { logger } from 'csssr-school-utils';

class BaseComponent extends React.Component {

Choose a reason for hiding this comment

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

Больше нет смысла самому писать BaseCompoment, можно сразу во всех случаях наследоваться от React.Component и юзать нативный sCU

Copy link
Author

Choose a reason for hiding this comment

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

fix

<div className={s.goodsName}>{title}</div>
<div>
{
range(maxRating).map(i => React.createElement(ratingComponent, { key: i, isFilled: i <= rating }))

Choose a reason for hiding this comment

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

React.createElenent тут лишний, можно же просто передать <ratingComponent {...props}>

Copy link
Author

Choose a reason for hiding this comment

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

fix

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