2016-08-31 16:15:12 +02:00
|
|
|
import { createStore, applyMiddleware, compose } from 'redux';
|
2016-09-19 23:25:59 +02:00
|
|
|
import thunk from 'redux-thunk';
|
|
|
|
import appReducer from '../reducers';
|
|
|
|
import { loadingBarMiddleware } from 'react-redux-loading-bar';
|
2016-10-18 17:09:45 +02:00
|
|
|
import errorsMiddleware from '../middleware/errors';
|
2016-08-24 17:56:44 +02:00
|
|
|
|
2016-08-31 16:15:12 +02:00
|
|
|
export default function configureStore(initialState) {
|
2016-09-19 23:25:59 +02:00
|
|
|
return createStore(appReducer, initialState, compose(applyMiddleware(thunk, loadingBarMiddleware({
|
|
|
|
promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAIL'],
|
2016-10-18 17:09:45 +02:00
|
|
|
}), errorsMiddleware()), window.devToolsExtension ? window.devToolsExtension() : f => f));
|
2016-09-19 23:25:59 +02:00
|
|
|
};
|