2017-06-24 01:26:08 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { render } from 'react-dom';
|
|
|
|
import { syncHistoryWithStore, routerMiddleware } from 'react-router-redux';
|
|
|
|
import { composeWithDevTools } from 'redux-devtools-extension';
|
|
|
|
import Perf from 'react-addons-perf';
|
|
|
|
import { createStore, applyMiddleware } from 'redux';
|
|
|
|
import RootReducer from './reducers';
|
|
|
|
import { Root } from 'components';
|
|
|
|
import { Routing, history } from './routing';
|
|
|
|
import { createLogger } from 'redux-logger';
|
|
|
|
import createSagaMiddleware from 'redux-saga';
|
|
|
|
import notificationsSaga from './sagas/notifications';
|
2017-04-14 06:23:36 +00:00
|
|
|
|
2017-04-12 05:04:27 +00:00
|
|
|
// application styles
|
2017-06-24 01:26:08 +00:00
|
|
|
import 'assets/styles/etherwallet-master.less';
|
2017-04-12 05:04:27 +00:00
|
|
|
|
2017-06-24 01:26:08 +00:00
|
|
|
const sagaMiddleware = createSagaMiddleware();
|
2017-04-12 05:04:27 +00:00
|
|
|
|
|
|
|
const configureStore = () => {
|
2017-06-24 01:26:08 +00:00
|
|
|
let sagaApplied = applyMiddleware(sagaMiddleware);
|
|
|
|
let store;
|
|
|
|
let middleware;
|
|
|
|
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
window.Perf = Perf;
|
|
|
|
sagaApplied = composeWithDevTools(sagaApplied);
|
|
|
|
const logger = createLogger({
|
|
|
|
collapsed: true
|
|
|
|
});
|
|
|
|
middleware = applyMiddleware(routerMiddleware(history), logger);
|
|
|
|
} else {
|
|
|
|
middleware = applyMiddleware(routerMiddleware(history));
|
|
|
|
}
|
|
|
|
|
|
|
|
store = createStore(RootReducer, sagaApplied, middleware);
|
|
|
|
sagaMiddleware.run(notificationsSaga);
|
|
|
|
return store;
|
2017-04-12 05:04:27 +00:00
|
|
|
};
|
|
|
|
|
2017-06-24 01:26:08 +00:00
|
|
|
const renderRoot = Root => {
|
|
|
|
let store = configureStore();
|
|
|
|
let syncedHistory = syncHistoryWithStore(history, store);
|
|
|
|
render(
|
|
|
|
<Root
|
|
|
|
key={Math.random()}
|
|
|
|
routes={Routing}
|
|
|
|
history={syncedHistory}
|
|
|
|
store={store}
|
|
|
|
/>,
|
|
|
|
document.getElementById('app')
|
|
|
|
);
|
2017-04-12 05:04:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
renderRoot(Root);
|
|
|
|
|
|
|
|
if (module.hot) {
|
2017-06-24 01:26:08 +00:00
|
|
|
module.hot.accept();
|
2017-04-12 05:04:27 +00:00
|
|
|
}
|