import { createStore, applyMiddleware } 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(); enhacers = composeWithDevTools( applyAppStateListener(), applyMiddleware(reduxImmutableStateInvariant), applyMiddleware(sagaMiddleware), applyMiddleware(logger) ); } else { enhacers = composeWithDevTools( applyAppStateListener(), applyMiddleware(sagaMiddleware) ); } 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;