vn-verdnaturachat/app/lib/createStore.js

35 lines
996 B
JavaScript
Raw Normal View History

2017-08-13 01:35:09 +00:00
import { createStore, applyMiddleware } from 'redux';
2017-08-16 22:51:37 +00:00
import createSagaMiddleware from 'redux-saga';
import logger from 'redux-logger';
import { composeWithDevTools } from 'remote-redux-devtools';
2017-08-17 06:28:41 +00:00
import reducers from '../reducers';
2017-08-17 00:24:06 +00:00
import sagas from '../sagas';
2017-08-13 01:35:09 +00:00
2017-08-16 22:51:37 +00:00
const sagaMiddleware = createSagaMiddleware();
let enhacers;
2017-08-13 01:35:09 +00:00
if (__DEV__) {
/* eslint-disable global-require */
const reduxImmutableStateInvariant = require('redux-immutable-state-invariant').default();
enhacers = composeWithDevTools(
applyMiddleware(reduxImmutableStateInvariant),
applyMiddleware(sagaMiddleware),
applyMiddleware(logger)
);
2017-08-13 01:35:09 +00:00
} else {
2017-11-13 12:58:35 +00:00
enhacers = composeWithDevTools(applyMiddleware(sagaMiddleware));
2017-08-13 01:35:09 +00:00
}
const store = enhacers(createStore)(reducers);
2017-08-17 00:24:06 +00:00
sagaMiddleware.run(sagas);
if (module.hot && typeof module.hot.accept === 'function') {
module.hot.accept(() => {
store.replaceReducer(require('../reducers').default);
sagaMiddleware.run(require('../sagas').default);
});
}
export default store;