2018-03-23 16:55:40 +00:00
|
|
|
import { createStore as reduxCreateStore, applyMiddleware, compose } from 'redux';
|
2019-03-12 16:23:06 +00:00
|
|
|
import Reactotron from 'reactotron-react-native';
|
2017-08-16 22:51:37 +00:00
|
|
|
import createSagaMiddleware from 'redux-saga';
|
2017-11-28 11:01:18 +00:00
|
|
|
import applyAppStateListener from 'redux-enhancer-react-native-appstate';
|
2018-04-24 19:34:03 +00:00
|
|
|
|
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
|
|
|
|
2018-03-23 16:55:40 +00:00
|
|
|
const createStore = __DEV__ ? Reactotron.createStore : reduxCreateStore;
|
|
|
|
let sagaMiddleware;
|
|
|
|
let enhancers;
|
2017-08-13 01:35:09 +00:00
|
|
|
|
|
|
|
if (__DEV__) {
|
|
|
|
/* eslint-disable global-require */
|
|
|
|
const reduxImmutableStateInvariant = require('redux-immutable-state-invariant').default();
|
2018-03-23 16:55:40 +00:00
|
|
|
sagaMiddleware = createSagaMiddleware({
|
2018-07-17 19:10:27 +00:00
|
|
|
sagaMonitor: Reactotron.createSagaMonitor()
|
2018-03-23 16:55:40 +00:00
|
|
|
});
|
2017-09-25 13:15:28 +00:00
|
|
|
|
2018-03-23 16:55:40 +00:00
|
|
|
enhancers = compose(
|
2017-11-28 11:01:18 +00:00
|
|
|
applyAppStateListener(),
|
2017-09-21 17:08:00 +00:00
|
|
|
applyMiddleware(reduxImmutableStateInvariant),
|
2018-04-24 19:34:03 +00:00
|
|
|
applyMiddleware(sagaMiddleware)
|
2017-09-21 17:08:00 +00:00
|
|
|
);
|
2017-08-13 01:35:09 +00:00
|
|
|
} else {
|
2018-03-23 16:55:40 +00:00
|
|
|
sagaMiddleware = createSagaMiddleware();
|
|
|
|
enhancers = compose(
|
2017-11-28 11:01:18 +00:00
|
|
|
applyAppStateListener(),
|
|
|
|
applyMiddleware(sagaMiddleware)
|
|
|
|
);
|
2017-08-13 01:35:09 +00:00
|
|
|
}
|
|
|
|
|
2018-03-23 16:55:40 +00:00
|
|
|
const store = createStore(reducers, enhancers);
|
2017-08-17 00:24:06 +00:00
|
|
|
sagaMiddleware.run(sagas);
|
2017-09-21 17:08:00 +00:00
|
|
|
|
|
|
|
if (module.hot && typeof module.hot.accept === 'function') {
|
|
|
|
module.hot.accept(() => {
|
|
|
|
store.replaceReducer(require('../reducers').default);
|
|
|
|
sagaMiddleware.run(require('../sagas').default);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export default store;
|