2016-08-31 16:15:12 +02:00
|
|
|
import { createStore, applyMiddleware, compose } from 'redux';
|
2017-01-09 12:37:15 +01:00
|
|
|
import thunk from 'redux-thunk';
|
|
|
|
import appReducer from '../reducers';
|
|
|
|
import { loadingBarMiddleware } from 'react-redux-loading-bar';
|
|
|
|
import errorsMiddleware from '../middleware/errors';
|
|
|
|
import Immutable from 'immutable';
|
2016-08-24 17:56:44 +02:00
|
|
|
|
2017-01-09 12:37:15 +01:00
|
|
|
export default function configureStore() {
|
|
|
|
return createStore(appReducer, compose(applyMiddleware(thunk, loadingBarMiddleware({
|
2016-09-19 23:25:59 +02:00
|
|
|
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
|
|
|
};
|