23 lines
869 B
TypeScript
23 lines
869 B
TypeScript
import { routerMiddleware } from "connected-react-router";
|
|
import { createStore, applyMiddleware, compose } from "redux";
|
|
import { createBrowserHistory } from "history";
|
|
import thunk from "redux-thunk";
|
|
import createRootReducer from "../reducers";
|
|
import socketIO from "socket.io-client";
|
|
import socketIoMiddleware from "redux-socket.io-middleware";
|
|
// import { SOCKET_BASE_URI } from "../constants/endpoints";
|
|
const io = socketIO(`http://localhost:3001`);
|
|
export const history = createBrowserHistory();
|
|
const configureStore = (initialState) => {
|
|
const store = createStore(
|
|
createRootReducer(history),
|
|
initialState,
|
|
compose(
|
|
applyMiddleware(socketIoMiddleware(io), thunk, routerMiddleware(history)),
|
|
// window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__(),
|
|
),
|
|
);
|
|
return store;
|
|
};
|
|
export default configureStore;
|