48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
import { createStore, applyMiddleware, compose } from 'redux';
|
|
import createSagaMiddleware from 'redux-saga';
|
|
import logger from 'redux-logger';
|
|
import { composeWithDevTools } from 'remote-redux-devtools';
|
|
import applyAppStateListener from 'redux-enhancer-react-native-appstate';
|
|
import reducers from '../reducers';
|
|
import sagas from '../sagas';
|
|
|
|
const sagaMiddleware = createSagaMiddleware();
|
|
let enhacers;
|
|
|
|
if (__DEV__) {
|
|
/* eslint-disable global-require */
|
|
const reduxImmutableStateInvariant = require('redux-immutable-state-invariant').default();
|
|
|
|
const devComposer = composeWithDevTools({ hostname: 'localhost', port: 8000 });
|
|
enhacers = devComposer(
|
|
applyAppStateListener(),
|
|
applyMiddleware(reduxImmutableStateInvariant),
|
|
applyMiddleware(sagaMiddleware),
|
|
applyMiddleware(logger)
|
|
);
|
|
} else {
|
|
enhacers = compose(
|
|
applyAppStateListener(),
|
|
applyMiddleware(sagaMiddleware)
|
|
);
|
|
}
|
|
|
|
// uncomment the following lines to integrate reactotron with redux
|
|
// const store = Reactotron.createStore(
|
|
// reducers,
|
|
// enhacers(createStore)(reducers),
|
|
// );
|
|
|
|
|
|
const store = enhacers(createStore)(reducers);
|
|
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;
|