-
Notifications
You must be signed in to change notification settings - Fork 14
Hometask 5 #72
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
Open
0ro
wants to merge
8
commits into
romabelka:master
Choose a base branch
from
0ro:hometask_5
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Hometask 5 #72
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0f2c95f
Merge remote-tracking branch 'romabelka/master'
c0e6bf3
Merge remote-tracking branch 'romabelka/master'
f46ac83
Merge remote-tracking branch 'romabelka/master'
0d15db6
Merge remote-tracking branch 'romabelka/master'
e2605a5
Merge remote-tracking branch 'romabelka/master'
62afaba
Merge remote-tracking branch 'romabelka/master'
965c24c
Refactor articles
0cc948c
Add adding comment to articles
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| import { ADD_COMMENT } from "../constants"; | ||
|
|
||
| export default store => next => action => { | ||
| const { payload } = action | ||
| next({...action, payload: {...payload, id: idGenerator()}}) | ||
| } | ||
|
|
||
| const idGenerator = () => Math.random().toString(36).slice(2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,38 @@ | ||
| import { DELETE_ARTICLE } from '../constants' | ||
| import { DELETE_ARTICLE, ADD_COMMENT } from '../constants' | ||
| import {normalizedArticles as defaultArticles} from '../fixtures' | ||
|
|
||
| export default (articlesState = defaultArticles, action) => { | ||
| const articlesMap = defaultArticles.reduce((acc, article) => ({ | ||
| ...acc, | ||
| [article.id]: article | ||
| }), {}) | ||
|
|
||
| const deletePropFromObject = (object, property) => { | ||
| const obj = {...object} | ||
| delete obj[property] | ||
| return obj | ||
| } | ||
|
|
||
| const getArticlesWithNewComment = (articles, articleId, commentId) => { | ||
| const article = articles[articleId] | ||
| const {comments} = article | ||
| return { | ||
| ...articles, | ||
| [articleId]: { | ||
| ...article, | ||
| comments: [...comments, commentId] | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. comments может быть undefined |
||
| } | ||
| } | ||
| } | ||
|
|
||
| export default (articlesState = articlesMap, action) => { | ||
| const { type, payload } = action | ||
|
|
||
| switch (type) { | ||
| case DELETE_ARTICLE: | ||
| return articlesState.filter(article => article.id !== payload.id) | ||
| return deletePropFromObject(articlesState, payload.id) | ||
|
|
||
| case ADD_COMMENT: | ||
| return getArticlesWithNewComment(articlesState, payload.articleId, payload.id) | ||
| } | ||
|
|
||
| return articlesState | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| import {createStore, applyMiddleware, compose} from 'redux' | ||
| import rootReducer from '../reducer' | ||
| import logger from '../middlewares/logger' | ||
| import idGenerator from '../middlewares/idGenerator' | ||
|
|
||
| const composeEnhancers = | ||
| typeof window === 'object' && | ||
|
|
@@ -10,7 +11,7 @@ const composeEnhancers = | |
| }) : compose | ||
|
|
||
| const enhancer = composeEnhancers( | ||
| applyMiddleware(logger) | ||
| applyMiddleware(logger, idGenerator) | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. лучше логгер в конце ставить |
||
| ) | ||
| const store = createStore(rootReducer, enhancer) | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Лучше селектор, который достанет из в виде массива