This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/flavours/glitch/store/configureStore.js

16 lines
641 B
JavaScript
Raw Normal View History

import { createStore, applyMiddleware, compose } from 'redux';
2017-01-09 03:37:15 -08:00
import thunk from 'redux-thunk';
import appReducer from '../reducers';
2017-01-16 04:27:58 -08:00
import loadingBarMiddleware from '../middleware/loading_bar';
2017-01-09 03:37:15 -08:00
import errorsMiddleware from '../middleware/errors';
import soundsMiddleware from '../middleware/sounds';
2017-01-09 03:37:15 -08:00
export default function configureStore() {
return createStore(appReducer, compose(applyMiddleware(
thunk,
loadingBarMiddleware({ promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAIL'] }),
errorsMiddleware(),
soundsMiddleware(),
), window.__REDUX_DEVTOOLS_EXTENSION__ ? window.__REDUX_DEVTOOLS_EXTENSION__() : f => f));
}