2018-09-25 15:01:06 +02:00
|
|
|
/**
|
|
|
|
* Create the store with dynamic reducers
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { createStore, applyMiddleware, compose } from 'redux';
|
|
|
|
import { fromJS } from 'immutable';
|
2019-04-16 12:54:16 +02:00
|
|
|
// import { routerMiddleware } from 'react-router-redux';
|
2018-09-25 15:01:06 +02:00
|
|
|
import createSagaMiddleware from 'redux-saga';
|
|
|
|
import createReducer from './reducers';
|
|
|
|
|
|
|
|
const sagaMiddleware = createSagaMiddleware();
|
|
|
|
|
2019-04-16 12:54:16 +02:00
|
|
|
export default function configureStore(initialState = {}) {
|
2018-09-25 15:01:06 +02:00
|
|
|
// Create the store with two middlewares
|
|
|
|
// 1. sagaMiddleware: Makes redux-sagas work
|
|
|
|
// 2. routerMiddleware: Syncs the location/URL path to the state
|
2019-04-16 12:54:16 +02:00
|
|
|
const middlewares = [sagaMiddleware];
|
2018-09-25 15:01:06 +02:00
|
|
|
|
2019-04-16 12:54:16 +02:00
|
|
|
const enhancers = [applyMiddleware(...middlewares)];
|
2018-09-25 15:01:06 +02:00
|
|
|
|
|
|
|
// If Redux DevTools Extension is installed use it, otherwise use Redux compose
|
|
|
|
/* eslint-disable no-underscore-dangle */
|
|
|
|
const composeEnhancers =
|
|
|
|
process.env.NODE_ENV !== 'production' &&
|
|
|
|
typeof window === 'object' &&
|
|
|
|
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
|
|
|
|
? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({
|
|
|
|
// TODO Try to remove when `react-router-redux` is out of beta, LOCATION_CHANGE should not be fired more than once after hot reloading
|
|
|
|
// Prevent recomputing reducers for `replaceReducer`
|
|
|
|
shouldHotReload: false,
|
2019-04-16 12:54:16 +02:00
|
|
|
name: 'Strapi - Dashboard',
|
2018-09-25 15:01:06 +02:00
|
|
|
})
|
|
|
|
: compose;
|
|
|
|
/* eslint-enable */
|
|
|
|
|
|
|
|
const store = createStore(
|
|
|
|
createReducer(),
|
|
|
|
fromJS(initialState),
|
2019-04-16 12:54:16 +02:00
|
|
|
composeEnhancers(...enhancers),
|
2018-09-25 15:01:06 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// Extensions
|
|
|
|
store.runSaga = sagaMiddleware.run;
|
|
|
|
store.injectedReducers = {}; // Reducer registry
|
|
|
|
store.injectedSagas = {}; // Saga registry
|
|
|
|
|
|
|
|
// Make reducers hot reloadable, see http://mxs.is/googmo
|
|
|
|
/* istanbul ignore next */
|
|
|
|
if (module.hot) {
|
|
|
|
module.hot.accept('./reducers', () => {
|
|
|
|
store.replaceReducer(createReducer(store.injectedReducers));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return store;
|
|
|
|
}
|