Choices/src/scripts/reducers/index.ts

38 lines
901 B
TypeScript
Raw Normal View History

import { combineReducers } from 'redux';
import items from './items';
import groups from './groups';
import choices from './choices';
import loading from './loading';
2018-05-28 17:22:22 +02:00
import { cloneObject } from '../lib/utils';
export const defaultState = {
groups: [],
items: [],
choices: [],
loading: false,
};
const appReducer = combineReducers({
items,
groups,
choices,
loading,
});
const rootReducer = (passedState, action): object => {
let state = passedState;
// If we are clearing all items, groups and options we reassign
// state and then pass that state to our proper reducer. This isn't
// mutating our actual state
// See: http://stackoverflow.com/a/35641992
if (action.type === 'CLEAR_ALL') {
state = defaultState;
2018-05-28 17:22:22 +02:00
} else if (action.type === 'RESET_TO') {
return cloneObject(action.state);
}
return appReducer(state, action);
};
2016-04-04 15:43:22 +02:00
2016-09-24 12:07:48 +02:00
export default rootReducer;