Created
November 3, 2015 19:12
-
-
Save lesniakania/003fe994fb9ea36400ad to your computer and use it in GitHub Desktop.
This file contains 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
import ActionTypes from '../constants/ActionTypes'; | |
import SubmissionReducer from './SubmissionReducer' | |
let SubmissionsListReducer = (state = {}, action) => { | |
let newState; | |
switch (action.type) { | |
case ActionTypes.RECEIVE_SUBMISSIONS_LIST: | |
newState = {}; | |
action.submissions.forEach((s) => { | |
newState[s.id] = s; | |
}); | |
return newState; | |
case ActionTypes.RECEIVE_SUBMISSION: | |
case ActionTypes.RATING_PERFORMED: | |
let submissionId = action.submission.id | |
newState = { | |
[submissionId]: SubmissionReducer(state[submissionId], action) | |
}; | |
return Object.assign({}, state, newState); | |
default: | |
return state; | |
} | |
}; | |
export default SubmissionsListReducer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment