Skip to content

Commit

Permalink
feat: improve createReducer function
Browse files Browse the repository at this point in the history
enhance #164  createReducer
  • Loading branch information
streamich committed May 24, 2019
2 parents 766ab2f + 2c1a671 commit 6ba2d93
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions src/createReducer.ts
Original file line number Diff line number Diff line change
@@ -1,35 +1,36 @@
import { useReducer } from 'react';
import { useMemo, useRef, useState } from 'react';

function compose(...funcs) {
if (funcs.length === 0) {
return arg => arg;
}

if (funcs.length === 1) {
return funcs[0];
}

return funcs.reduce((a, b) => (...args) => a(b(...args)));
function composeMiddleware(chain) {
return (context, dispatch) => {
return chain.reduceRight((res, middleware) => {
return middleware(context)(res);
}, dispatch);
};
}

const createReducer = (...middlewares) => (...args) => {
const [state, dispatch] = useReducer(...args);

const createReducer = (...middlewares) => (reducer, initialState, initializer = value => value) => {
const ref = useRef(initializer(initialState))
const [, setState] = useState(ref.current)
let middlewareDispatch = () => {
throw new Error(
'Dispatching while constructing your middleware is not allowed. ' +
'Other middleware would not be applied to this dispatch.'
);
};

const dispatch = action => {
ref.current = reducer(ref.current, action)
setState(ref.current)
return action;
}
const composedMiddleware = useMemo(() => {
return composeMiddleware(middlewares);
}, middlewares);
const middlewareAPI = {
getState: () => state,
getState: () => ref.current,
dispatch: (...args) => middlewareDispatch(...args),
};
const chain = middlewares.map(middleware => middleware(middlewareAPI));
middlewareDispatch = compose(...chain)(dispatch);

return [state, middlewareDispatch];
middlewareDispatch = composedMiddleware(middlewareAPI, dispatch);
return [ref.current, middlewareDispatch];
};

export default createReducer;

0 comments on commit 6ba2d93

Please sign in to comment.