2017-12-13 11:01:37 +00:00
|
|
|
import React from 'react';
|
2018-08-10 15:18:22 +00:00
|
|
|
import { hot } from 'react-hot-loader';
|
2018-02-20 09:30:36 +00:00
|
|
|
import { Route, Switch } from 'react-router-dom';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { ConnectedRouter } from 'react-router-redux';
|
|
|
|
|
2018-08-16 14:58:28 +00:00
|
|
|
// general
|
2018-08-14 12:56:47 +00:00
|
|
|
import ErrorBoundary from 'support/ErrorBoundary';
|
2018-09-21 10:41:13 +00:00
|
|
|
import { getPattern } from 'support/routes';
|
2018-08-16 14:29:14 +00:00
|
|
|
import LandingContainer from 'views/Landing/Container';
|
2018-08-13 12:52:43 +00:00
|
|
|
|
2018-08-16 14:29:14 +00:00
|
|
|
// wallet views
|
2018-08-16 14:02:23 +00:00
|
|
|
import WalletContainer from 'views/Wallet';
|
2018-08-27 10:34:01 +00:00
|
|
|
import AccountSummary from 'views/Wallet/views/AccountSummary/Container';
|
2018-08-27 10:30:42 +00:00
|
|
|
import AccountSend from 'views/Wallet/views/AccountSend/Container';
|
2018-08-27 10:29:13 +00:00
|
|
|
import AccountReceive from 'views/Wallet/views/AccountReceive/Container';
|
2018-08-27 10:45:39 +00:00
|
|
|
import AccountSignVerify from 'views/Wallet/views/AccountSignVerify';
|
2018-08-27 10:32:27 +00:00
|
|
|
|
2018-08-16 14:29:14 +00:00
|
|
|
import WalletDashboard from 'views/Wallet/views/Dashboard';
|
|
|
|
import WalletDeviceSettings from 'views/Wallet/views/DeviceSettings';
|
|
|
|
import WalletSettings from 'views/Wallet/views/WalletSettings';
|
|
|
|
import WalletBootloader from 'views/Wallet/views/Bootloader';
|
|
|
|
import WalletInitialize from 'views/Wallet/views/Initialize';
|
|
|
|
import WalletAcquire from 'views/Wallet/views/Acquire';
|
|
|
|
import WalletUnreadableDevice from 'views/Wallet/views/UnreadableDevice';
|
2018-08-16 13:56:39 +00:00
|
|
|
|
2018-09-05 09:36:50 +00:00
|
|
|
import store, { history } from 'store';
|
2018-02-20 09:30:36 +00:00
|
|
|
|
2018-08-10 15:18:22 +00:00
|
|
|
const App = () => (
|
2018-07-30 10:52:13 +00:00
|
|
|
<Provider store={store}>
|
|
|
|
<ConnectedRouter history={history}>
|
2018-02-20 09:30:36 +00:00
|
|
|
<Switch>
|
2018-09-21 12:01:41 +00:00
|
|
|
<Route exact path={getPattern('landing-home')} component={LandingContainer} />
|
|
|
|
<Route exact path={getPattern('landing-bridge')} component={LandingContainer} />
|
|
|
|
<Route exact path={getPattern('landing-import')} component={LandingContainer} />
|
2018-02-20 09:30:36 +00:00
|
|
|
<Route>
|
2018-08-16 13:56:39 +00:00
|
|
|
<ErrorBoundary>
|
|
|
|
<WalletContainer>
|
2018-09-21 12:01:41 +00:00
|
|
|
<Route exact path={getPattern('wallet-setting')} component={WalletSettings} />
|
|
|
|
<Route exact path={getPattern('wallet-dashboard')} component={WalletDashboard} />
|
|
|
|
<Route exact path={getPattern('wallet-acquire')} component={WalletAcquire} />
|
|
|
|
<Route exact path={getPattern('wallet-unreadable')} component={WalletUnreadableDevice} />
|
|
|
|
<Route exact path={getPattern('wallet-bootloader')} component={WalletBootloader} />
|
|
|
|
<Route exact path={getPattern('wallet-initialize')} component={WalletInitialize} />
|
|
|
|
<Route exact path={getPattern('wallet-device-settings')} component={WalletDeviceSettings} />
|
|
|
|
<Route exact path={getPattern('wallet-account-summary')} component={AccountSummary} />
|
|
|
|
<Route path={getPattern('wallet-account-send')} component={AccountSend} />
|
|
|
|
<Route path={getPattern('wallet-account-send-override')} component={AccountSend} />
|
|
|
|
<Route path={getPattern('wallet-account-receive')} component={AccountReceive} />
|
|
|
|
<Route path={getPattern('wallet-account-signverify')} component={AccountSignVerify} />
|
2018-08-16 13:56:39 +00:00
|
|
|
</WalletContainer>
|
|
|
|
</ErrorBoundary>
|
2018-02-20 09:30:36 +00:00
|
|
|
</Route>
|
|
|
|
</Switch>
|
|
|
|
</ConnectedRouter>
|
|
|
|
</Provider>
|
2018-08-10 15:18:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
export default hot(module)(App);
|