Rocket.Chat.ReactNative/app/lib/createStore.js

40 lines
1.1 KiB
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';
import applyAppStateListener from 'redux-enhancer-react-native-appstate';
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(
applyAppStateListener(),
applyMiddleware(reduxImmutableStateInvariant),
applyMiddleware(sagaMiddleware),
applyMiddleware(logger)
);
2017-08-13 01:35:09 +00:00
} else {
enhacers = composeWithDevTools(
applyAppStateListener(),
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;