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