1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 21:08:57 +00:00
trezor-wallet/src/js/views/index.js

59 lines
3.3 KiB
JavaScript
Raw Normal View History

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-14 12:56:47 +00:00
import ErrorBoundary from 'support/ErrorBoundary';
2018-08-13 12:52:43 +00:00
2018-08-16 14:02:23 +00:00
import WalletContainer from 'views/Wallet';
2018-08-14 13:18:16 +00:00
import BootloaderContainer from 'components/wallet/pages/Bootloader';
import InitializeContainer from 'components/wallet/pages/Initialize';
import AcquireContainer from 'components/wallet/pages/Acquire';
import UnreadableDeviceContainer from 'components/wallet/pages/UnreadableDevice';
2018-02-20 09:30:36 +00:00
2018-08-14 13:18:16 +00:00
import DashboardContainer from 'components/wallet/pages/Dashboard';
2018-08-16 13:56:39 +00:00
2018-08-14 13:18:16 +00:00
import DeviceSettingsContainer from 'components/wallet/pages/DeviceSettings';
import WalletSettingsContainer from 'components/wallet/pages/WalletSettings';
2018-08-16 10:19:13 +00:00
import LandingContainer from 'views/Landing/Container';
2018-08-16 13:56:39 +00:00
2018-08-16 14:02:23 +00:00
import SignVerifyContainer from './Wallet/components/Sign';
import ReceiveContainer from './Wallet/components/Receive/Container';
import SendFormContainer from './Wallet/components/Send/Container';
import SummaryContainer from './Wallet/components/Summary/Container';
2018-08-16 13:56:39 +00:00
2018-08-14 14:06:34 +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-08-16 10:19:13 +00:00
<Route exact path="/" component={LandingContainer} />
<Route exact path="/bridge" component={LandingContainer} />
<Route exact path="/import" component={LandingContainer} />
2018-02-20 09:30:36 +00:00
<Route>
2018-08-16 13:56:39 +00:00
<ErrorBoundary>
<WalletContainer>
2018-08-13 12:52:43 +00:00
<Route exact path="/settings" component={WalletSettingsContainer} />
<Route exact path="/device/:device/" component={DashboardContainer} />
<Route exact path="/device/:device/network/:network" component={DashboardContainer} />
<Route exact path="/device/:device/acquire" component={AcquireContainer} />
<Route exact path="/device/:device/unreadable" component={UnreadableDeviceContainer} />
<Route exact path="/device/:device/bootloader" component={BootloaderContainer} />
<Route exact path="/device/:device/initialize" component={InitializeContainer} />
<Route exact path="/device/:device/settings" component={DeviceSettingsContainer} />
<Route exact path="/device/:device/network/:network/account/:account" component={SummaryContainer} />
<Route path="/device/:device/network/:network/account/:account/send" component={SendFormContainer} />
<Route path="/device/:device/network/:network/account/:account/send/override" component={SendFormContainer} />
<Route path="/device/:device/network/:network/account/:account/receive" component={ReceiveContainer} />
<Route path="/device/:device/network/:network/account/:account/signverify" component={SignVerifyContainer} />
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);