2016-08-31 14:15:12 +00:00
|
|
|
import { createStore, applyMiddleware, compose } from 'redux';
|
2017-01-09 11:37:15 +00:00
|
|
|
import thunk from 'redux-thunk';
|
2017-07-09 10:16:08 +00:00
|
|
|
import appReducer from '../reducers';
|
2017-01-16 12:27:58 +00:00
|
|
|
import loadingBarMiddleware from '../middleware/loading_bar';
|
2017-01-09 11:37:15 +00:00
|
|
|
import errorsMiddleware from '../middleware/errors';
|
2017-03-13 16:12:30 +00:00
|
|
|
import soundsMiddleware from '../middleware/sounds';
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2017-01-09 11:37:15 +00:00
|
|
|
export default function configureStore() {
|
2017-07-09 10:16:08 +00:00
|
|
|
return createStore(appReducer, compose(applyMiddleware(
|
2017-01-17 19:09:03 +00:00
|
|
|
thunk,
|
|
|
|
loadingBarMiddleware({ promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAIL'] }),
|
|
|
|
errorsMiddleware(),
|
2020-03-08 15:02:36 +00:00
|
|
|
soundsMiddleware(),
|
2018-12-31 17:11:48 +00:00
|
|
|
), window.__REDUX_DEVTOOLS_EXTENSION__ ? window.__REDUX_DEVTOOLS_EXTENSION__() : f => f));
|
2016-09-19 21:25:59 +00:00
|
|
|
};
|