insomnia/app/ui/redux/create.js

34 lines
834 B
JavaScript
Raw Normal View History

import {createStore, applyMiddleware} from 'redux';
2016-03-16 05:49:42 +00:00
import thunkMiddleware from 'redux-thunk'
import localStorageMiddleware, {getState} from './middleware/localstorage';
import rootReducer from './reducer';
2016-09-21 00:03:26 +00:00
import {LOCALSTORAGE_KEY} from 'backend/constants';
2016-03-16 05:49:42 +00:00
2016-04-29 05:58:37 +00:00
2016-04-29 03:37:49 +00:00
export default function configureStore () {
2016-04-29 05:58:37 +00:00
const middleware = [
thunkMiddleware,
localStorageMiddleware(LOCALSTORAGE_KEY)
];
if (__DEV__) {
2016-04-30 05:01:57 +00:00
// middleware.push(createLogger({collapsed: true}));
2016-04-29 05:58:37 +00:00
}
2016-04-29 03:37:49 +00:00
// Create the store and apply middleware
2016-03-20 04:00:40 +00:00
const store = createStore(
rootReducer,
2016-04-29 03:37:49 +00:00
getState(LOCALSTORAGE_KEY),
2016-04-29 05:58:37 +00:00
applyMiddleware(...middleware)
2016-03-20 04:00:40 +00:00
);
2016-03-16 05:49:42 +00:00
2016-03-20 04:00:40 +00:00
if (module.hot) {
2016-04-23 06:16:23 +00:00
module.hot.accept('./reducer', () => {
const nextReducer = require('./reducer.js').default;
2016-03-20 04:00:40 +00:00
store.replaceReducer(nextReducer);
})
}
2016-03-16 05:49:42 +00:00
return store;
2016-03-20 04:00:40 +00:00
}