Skip to content

Instantly share code, notes, and snippets.

@perjo927
Created September 8, 2020 07:06
Show Gist options
  • Save perjo927/1e67f110eabd392d54b5672a831a0f2b to your computer and use it in GitHub Desktop.
Save perjo927/1e67f110eabd392d54b5672a831a0f2b to your computer and use it in GitHub Desktop.
Make dispatcher
export const makeDispatcher = (stateHandlers, reducer, onDispatch) => ({
dispatch(action) {
const { getState, setState } = stateHandlers;
const state = getState();
const newState = reducer(state, action);
setState(newState);
onDispatch();
return action;
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment