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

Homework - 3 #29

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

Homework - 3 #29

wants to merge 2 commits into from

Conversation

galusha
Copy link

@galusha galusha commented Oct 21, 2018

Вынесла Фильтр для article-list в filterDecorator.
Он получился достаточно универсальным (каким и должен быть декоратор, ведь так?), т.е. filterDecorator можно применить не только к article-list, но и к любому спископодобному компоненту (authorList, userList catList and etc), который надо отфильтровать и не важно что это будет за фильтр: по селекту или фильтр по дате, или может чекбокс для которого можно будет добавить бизнес-логику в filterDecorator позже.
Вопрос: это ok или это too much for decorator и я вообще ничего не поняла про декораторы.

@@ -12,3 +12,10 @@ export function deleteArticle(id) {
payload: { id }
}
}

export function setFilter(filter) {
Copy link
Owner

Choose a reason for hiding this comment

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

Лучше отдельно обрабатывать селект и дату, я бы делал 2 отдельных AC

@@ -0,0 +1,70 @@
import React, { Component } from 'react'

const filterDecorator = (OriginalComponent, listName) =>
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