import {cowValueModel} from './cow-value-model'; export const subReducer = (key, reducer, ...otherKeys) => { const value = cowValueModel(key), otherParts = otherKeys.map(each => cowValueModel(each)); return (state, action) => { let newSubState = reducer(value(state), action, ...otherParts.map(value => value(state))); if (typeof newSubState === "undefined") { throw new Error(`The '${key}' reducer must not return undefined.`); } return value(state, newSubState); }; }; export const composeReducers = (...reducers) => (state, action) => reducers.reduce((x, r) => r(x, action), state);