2017-07-13 18:55:29 +00:00
|
|
|
import {createStore, applyMiddleware} from 'redux'
|
|
|
|
import createSagaMiddleware from 'redux-saga'
|
2018-05-16 08:47:12 +00:00
|
|
|
|
2017-07-13 18:55:29 +00:00
|
|
|
import rootReducer, {exampleInitialState} from './reducer'
|
|
|
|
import rootSaga from './saga'
|
|
|
|
|
|
|
|
const sagaMiddleware = createSagaMiddleware()
|
|
|
|
|
2018-01-26 16:09:49 +00:00
|
|
|
const bindMiddleware = (middleware) => {
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
const { composeWithDevTools } = require('redux-devtools-extension')
|
|
|
|
return composeWithDevTools(applyMiddleware(...middleware))
|
|
|
|
}
|
|
|
|
return applyMiddleware(...middleware)
|
|
|
|
}
|
|
|
|
|
2018-05-16 08:47:12 +00:00
|
|
|
function configureStore (initialState = exampleInitialState) {
|
2017-07-13 18:55:29 +00:00
|
|
|
const store = createStore(
|
|
|
|
rootReducer,
|
|
|
|
initialState,
|
2018-01-26 16:09:49 +00:00
|
|
|
bindMiddleware([sagaMiddleware])
|
2017-07-13 18:55:29 +00:00
|
|
|
)
|
|
|
|
|
2018-05-13 16:26:17 +00:00
|
|
|
store.runSagaTask = () => {
|
|
|
|
store.sagaTask = sagaMiddleware.run(rootSaga)
|
|
|
|
}
|
|
|
|
|
|
|
|
store.runSagaTask()
|
2017-07-13 18:55:29 +00:00
|
|
|
return store
|
|
|
|
}
|
|
|
|
|
2018-05-13 16:26:17 +00:00
|
|
|
export default configureStore
|