mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
26 lines
760 B
JavaScript
26 lines
760 B
JavaScript
import {createStore, applyMiddleware} from 'redux'
|
|
import {composeWithDevTools} from 'redux-devtools-extension'
|
|
import withRedux from 'next-redux-wrapper'
|
|
import nextReduxSaga from 'next-redux-saga'
|
|
import createSagaMiddleware from 'redux-saga'
|
|
|
|
import rootReducer, {exampleInitialState} from './reducer'
|
|
import rootSaga from './saga'
|
|
|
|
const sagaMiddleware = createSagaMiddleware()
|
|
|
|
export function configureStore (initialState = exampleInitialState) {
|
|
const store = createStore(
|
|
rootReducer,
|
|
initialState,
|
|
composeWithDevTools(applyMiddleware(sagaMiddleware))
|
|
)
|
|
|
|
store.sagaTask = sagaMiddleware.run(rootSaga)
|
|
return store
|
|
}
|
|
|
|
export function withReduxSaga (BaseComponent) {
|
|
return withRedux(configureStore)(nextReduxSaga(BaseComponent))
|
|
}
|