2016-03-20 04:00:40 +00:00
|
|
|
import {createStore, applyMiddleware} from 'redux'
|
2016-03-16 05:49:42 +00:00
|
|
|
import thunkMiddleware from 'redux-thunk'
|
|
|
|
import createLogger from 'redux-logger'
|
2016-04-23 06:16:23 +00:00
|
|
|
import rootReducer from './reducer'
|
2016-03-16 05:49:42 +00:00
|
|
|
|
|
|
|
export default function configureStore (initialState) {
|
2016-03-20 04:00:40 +00:00
|
|
|
const store = createStore(
|
|
|
|
rootReducer,
|
|
|
|
initialState,
|
|
|
|
applyMiddleware(
|
|
|
|
thunkMiddleware,
|
2016-04-26 07:29:24 +00:00
|
|
|
createLogger({collapsed: true})
|
2016-03-20 04:00:40 +00:00
|
|
|
)
|
|
|
|
);
|
2016-03-16 05:49:42 +00:00
|
|
|
|
2016-03-20 04:00:40 +00:00
|
|
|
if (module.hot) {
|
2016-04-23 06:16:23 +00:00
|
|
|
module.hot.accept('./reducer', () => {
|
2016-04-26 07:29:24 +00:00
|
|
|
const nextReducer = require('./reducer.js').default;
|
2016-03-20 04:00:40 +00:00
|
|
|
store.replaceReducer(nextReducer);
|
|
|
|
})
|
|
|
|
}
|
2016-03-16 05:49:42 +00:00
|
|
|
|
2016-04-26 07:29:24 +00:00
|
|
|
return store;
|
2016-03-20 04:00:40 +00:00
|
|
|
}
|