Created
February 6, 2018 12:31
Redux basics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const redux = require('redux'); | |
const createStore = redux.createStore; | |
const initialState = { | |
counter: 0, | |
}; | |
// Reducer | |
const rootReducer = (state = initialState, action) => { | |
if (action.type === 'INC_COUNTER') { | |
return { ...state, counter: state.counter + 1 }; | |
} | |
if (action.type === 'ADD_COUNTER') { | |
return { ...state, counter: state.counter + action.value }; | |
} | |
return state; | |
}; | |
// Store | |
const store = createStore(rootReducer); | |
console.log(store.getState()); | |
// Subscription | |
store.subscribe(() => { | |
//console.log('[subscription]', store.getState()); | |
}); | |
// Dispatching action | |
store.dispatch({ type: 'INC_COUNTER' }); | |
store.dispatch({ type: 'ADD_COUNTER', value: 10 }); | |
console.log(store.getState()); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment