Skip to content

Instantly share code, notes, and snippets.

@senhongo
Forked from MarcoWorms/mini-redux.js
Created April 22, 2017 13:47
Show Gist options
  • Save senhongo/3cd54ed29bfe062ba6a96831cc7125b8 to your computer and use it in GitHub Desktop.
Save senhongo/3cd54ed29bfe062ba6a96831cc7125b8 to your computer and use it in GitHub Desktop.
Redux in a nutshell
function createStore (reducers) {
var state = reducers()
const store = {
dispatch: (action) => {
state = reducers(state, action)
},
getState: () => {
return state
}
}
return store
}
const reducers = (state = { counter: 0 }, action) => {
if (!action) { return state }
switch (action.type) {
case 'INCREMENT':
return { counter: state.counter + 1 }
case 'DECREMENT':
return { counter: state.counter - 1 }
default:
return state
}
}
const store = createStore(reducers)
store.getState() // => { counter: 0 }
store.dispatch({ type: 'INCREMENT' })
store.getState() // => { counter: 1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment