Forked from
KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
240 commits behind the upstream repository.
-
Bereczki Sandor authoredBereczki Sandor authored
EditTaskReducer.js 512 B
import { SELECT_TASK, WRITE_TASK, WRITE_TASK_DEADLINE, CLEAR_WRITE } from '../actions/types';
const INITIAL_STATE = { };
export default (state = INITIAL_STATE, action) => {
switch (action.type) {
case SELECT_TASK:
return action.payload;
case WRITE_TASK:
return { ...state, [action.target]: action.payload };
case WRITE_TASK_DEADLINE:
return { ...state, [action.target]: action.payload };
case CLEAR_WRITE:
return INITIAL_STATE;
default:
return state;
}
};