rsnext/examples/with-redux-thunk/store.js
Joe Haddad 18a9c7e371
Improve linting rules to catch more errors (#9374)
* Update `packages/`

* Update examples

* Update tests

* Update bench

* Update top level files

* Fix build

* trigger
2019-11-10 19:24:53 -08:00

72 lines
1.7 KiB
JavaScript

import { createStore, applyMiddleware } from 'redux'
import { composeWithDevTools } from 'redux-devtools-extension'
import thunkMiddleware from 'redux-thunk'
const exampleInitialState = {
lastUpdate: 0,
light: false,
count: 0,
}
export const actionTypes = {
TICK: 'TICK',
INCREMENT: 'INCREMENT',
DECREMENT: 'DECREMENT',
RESET: 'RESET',
}
// REDUCERS
export const reducer = (state = exampleInitialState, action) => {
switch (action.type) {
case actionTypes.TICK:
return Object.assign({}, state, {
lastUpdate: action.ts,
light: !!action.light,
})
case actionTypes.INCREMENT:
return Object.assign({}, state, {
count: state.count + 1,
})
case actionTypes.DECREMENT:
return Object.assign({}, state, {
count: state.count - 1,
})
case actionTypes.RESET:
return Object.assign({}, state, {
count: exampleInitialState.count,
})
default:
return state
}
}
// ACTIONS
export const serverRenderClock = isServer => dispatch => {
return dispatch({ type: actionTypes.TICK, light: !isServer, ts: Date.now() })
}
export const startClock = dispatch => {
return setInterval(() => {
dispatch({ type: actionTypes.TICK, light: true, ts: Date.now() })
}, 1000)
}
export const incrementCount = () => {
return { type: actionTypes.INCREMENT }
}
export const decrementCount = () => {
return { type: actionTypes.DECREMENT }
}
export const resetCount = () => {
return { type: actionTypes.RESET }
}
export function initializeStore(initialState = exampleInitialState) {
return createStore(
reducer,
initialState,
composeWithDevTools(applyMiddleware(thunkMiddleware))
)
}