higher-order-reducers
Version:
A library of simple everyday reducer utility functions
18 lines (15 loc) • 500 B
JavaScript
const chain = (reducers = []) => {
for (let i = 0; i < reducers.length; i += 1) {
if (typeof reducers[i] !== 'function') {
throw new Error(`Element at position ${i} in "chain" is not a reducer`);
}
}
const getNext = (position, action) => (state) => {
if (position >= reducers.length) {
return state;
}
return reducers[position](state, action, getNext(position + 1, action));
};
return (state, action) => getNext(0, action)(state);
};
export default chain;