mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
b90c77b17f
* Rename page component's class name: Counter => Index, Counter => Other * Rename counter component class name: AddCount => Counter * Add counter actions `decrement` and `reset` same as with-redux example * Modify page link by NavigateTo attr in Page component * Modify license MIT => ISC same as others in package.json * Modify README
33 lines
829 B
JavaScript
33 lines
829 B
JavaScript
import {createStore, applyMiddleware} from 'redux'
|
|
import createSagaMiddleware from 'redux-saga'
|
|
|
|
import rootReducer, {exampleInitialState} from './reducer'
|
|
import rootSaga from './saga'
|
|
|
|
const sagaMiddleware = createSagaMiddleware()
|
|
|
|
const bindMiddleware = (middleware) => {
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const { composeWithDevTools } = require('redux-devtools-extension')
|
|
return composeWithDevTools(applyMiddleware(...middleware))
|
|
}
|
|
return applyMiddleware(...middleware)
|
|
}
|
|
|
|
function configureStore (initialState = exampleInitialState) {
|
|
const store = createStore(
|
|
rootReducer,
|
|
initialState,
|
|
bindMiddleware([sagaMiddleware])
|
|
)
|
|
|
|
store.runSagaTask = () => {
|
|
store.sagaTask = sagaMiddleware.run(rootSaga)
|
|
}
|
|
|
|
store.runSagaTask()
|
|
return store
|
|
}
|
|
|
|
export default configureStore
|