2020-03-26 17:18:50 +01:00
|
|
|
import classnames from 'classnames'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import React, { Component } from 'react'
|
|
|
|
import { matchPath, Route, Switch } from 'react-router-dom'
|
|
|
|
import IdleTimer from 'react-idle-timer'
|
|
|
|
|
|
|
|
import FirstTimeFlow from '../first-time-flow'
|
|
|
|
import SendTransactionScreen from '../send'
|
2020-10-06 20:28:38 +02:00
|
|
|
import Swaps from '../swaps'
|
2020-03-26 17:18:50 +01:00
|
|
|
import ConfirmTransaction from '../confirm-transaction'
|
|
|
|
import Sidebar from '../../components/app/sidebars'
|
|
|
|
import Home from '../home'
|
|
|
|
import Settings from '../settings'
|
|
|
|
import Authenticated from '../../helpers/higher-order-components/authenticated'
|
|
|
|
import Initialized from '../../helpers/higher-order-components/initialized'
|
2020-11-09 14:50:24 +01:00
|
|
|
import Lock from '../lock'
|
2020-03-26 17:18:50 +01:00
|
|
|
import PermissionsConnect from '../permissions-connect'
|
|
|
|
import RestoreVaultPage from '../keychains/restore-vault'
|
|
|
|
import RevealSeedConfirmation from '../keychains/reveal-seed'
|
|
|
|
import MobileSyncPage from '../mobile-sync'
|
|
|
|
import AddTokenPage from '../add-token'
|
|
|
|
import ConfirmAddTokenPage from '../confirm-add-token'
|
|
|
|
import ConfirmAddSuggestedTokenPage from '../confirm-add-suggested-token'
|
|
|
|
import CreateAccountPage from '../create-account'
|
|
|
|
import Loading from '../../components/ui/loading-screen'
|
|
|
|
import LoadingNetwork from '../../components/app/loading-network-screen'
|
|
|
|
import NetworkDropdown from '../../components/app/dropdowns/network-dropdown'
|
|
|
|
import AccountMenu from '../../components/app/account-menu'
|
|
|
|
import { Modal } from '../../components/app/modals'
|
|
|
|
import Alert from '../../components/ui/alert'
|
|
|
|
import AppHeader from '../../components/app/app-header'
|
|
|
|
import UnlockPage from '../unlock-page'
|
2020-04-29 19:10:51 +02:00
|
|
|
import Alerts from '../../components/app/alerts'
|
2020-06-01 19:54:32 +02:00
|
|
|
import Asset from '../asset'
|
2020-03-26 17:18:50 +01:00
|
|
|
|
|
|
|
import {
|
|
|
|
ADD_TOKEN_ROUTE,
|
2020-06-01 19:54:32 +02:00
|
|
|
ASSET_ROUTE,
|
2020-03-26 17:18:50 +01:00
|
|
|
CONFIRM_ADD_SUGGESTED_TOKEN_ROUTE,
|
|
|
|
CONFIRM_ADD_TOKEN_ROUTE,
|
|
|
|
CONFIRM_TRANSACTION_ROUTE,
|
|
|
|
CONNECT_ROUTE,
|
|
|
|
DEFAULT_ROUTE,
|
|
|
|
INITIALIZE_ROUTE,
|
|
|
|
INITIALIZE_UNLOCK_ROUTE,
|
2020-11-09 14:50:24 +01:00
|
|
|
LOCK_ROUTE,
|
2020-03-26 17:18:50 +01:00
|
|
|
MOBILE_SYNC_ROUTE,
|
|
|
|
NEW_ACCOUNT_ROUTE,
|
|
|
|
RESTORE_VAULT_ROUTE,
|
|
|
|
REVEAL_SEED_ROUTE,
|
|
|
|
SEND_ROUTE,
|
2020-10-06 20:28:38 +02:00
|
|
|
SWAPS_ROUTE,
|
2020-03-26 17:18:50 +01:00
|
|
|
SETTINGS_ROUTE,
|
|
|
|
UNLOCK_ROUTE,
|
2020-10-12 18:51:01 +02:00
|
|
|
BUILD_QUOTE_ROUTE,
|
2020-03-26 17:18:50 +01:00
|
|
|
} from '../../helpers/constants/routes'
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
import {
|
|
|
|
ENVIRONMENT_TYPE_NOTIFICATION,
|
|
|
|
ENVIRONMENT_TYPE_POPUP,
|
|
|
|
} from '../../../../app/scripts/lib/enums'
|
2020-04-02 00:28:10 +02:00
|
|
|
import { getEnvironmentType } from '../../../../app/scripts/lib/util'
|
2020-11-07 08:38:12 +01:00
|
|
|
import { TRANSACTION_STATUSES } from '../../../../shared/constants/transaction'
|
2020-03-26 17:18:50 +01:00
|
|
|
|
|
|
|
export default class Routes extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
currentCurrency: PropTypes.string,
|
|
|
|
setCurrentCurrencyToUSD: PropTypes.func,
|
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
loadingMessage: PropTypes.string,
|
|
|
|
alertMessage: PropTypes.string,
|
|
|
|
textDirection: PropTypes.string,
|
|
|
|
network: PropTypes.string,
|
|
|
|
provider: PropTypes.object,
|
|
|
|
frequentRpcListDetail: PropTypes.array,
|
|
|
|
sidebar: PropTypes.object,
|
|
|
|
alertOpen: PropTypes.bool,
|
|
|
|
hideSidebar: PropTypes.func,
|
|
|
|
isUnlocked: PropTypes.bool,
|
|
|
|
setLastActiveTime: PropTypes.func,
|
|
|
|
history: PropTypes.object,
|
|
|
|
location: PropTypes.object,
|
|
|
|
lockMetaMask: PropTypes.func,
|
|
|
|
submittedPendingTransactions: PropTypes.array,
|
|
|
|
isMouseUser: PropTypes.bool,
|
|
|
|
setMouseUserState: PropTypes.func,
|
|
|
|
providerId: PropTypes.string,
|
|
|
|
autoLockTimeLimit: PropTypes.number,
|
2020-06-01 19:54:32 +02:00
|
|
|
pageChanged: PropTypes.func.isRequired,
|
2020-10-06 20:28:38 +02:00
|
|
|
prepareToLeaveSwaps: PropTypes.func,
|
2020-03-26 17:18:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
t: PropTypes.func,
|
|
|
|
metricsEvent: PropTypes.func,
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
UNSAFE_componentWillMount() {
|
2020-06-01 19:54:32 +02:00
|
|
|
const { currentCurrency, pageChanged, setCurrentCurrencyToUSD } = this.props
|
2020-03-26 17:18:50 +01:00
|
|
|
|
|
|
|
if (!currentCurrency) {
|
|
|
|
setCurrentCurrencyToUSD()
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.history.listen((locationObj, action) => {
|
|
|
|
if (action === 'PUSH') {
|
2020-06-01 19:54:32 +02:00
|
|
|
pageChanged(locationObj.pathname)
|
2020-03-26 17:18:50 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
renderRoutes() {
|
2020-03-26 17:18:50 +01:00
|
|
|
const { autoLockTimeLimit, setLastActiveTime } = this.props
|
|
|
|
|
|
|
|
const routes = (
|
|
|
|
<Switch>
|
2020-11-09 14:50:24 +01:00
|
|
|
<Route path={LOCK_ROUTE} component={Lock} exact />
|
2020-03-26 17:18:50 +01:00
|
|
|
<Route path={INITIALIZE_ROUTE} component={FirstTimeFlow} />
|
|
|
|
<Initialized path={UNLOCK_ROUTE} component={UnlockPage} exact />
|
2020-11-03 00:41:28 +01:00
|
|
|
<Initialized
|
|
|
|
path={RESTORE_VAULT_ROUTE}
|
|
|
|
component={RestoreVaultPage}
|
|
|
|
exact
|
|
|
|
/>
|
|
|
|
<Authenticated
|
|
|
|
path={REVEAL_SEED_ROUTE}
|
|
|
|
component={RevealSeedConfirmation}
|
|
|
|
exact
|
|
|
|
/>
|
|
|
|
<Authenticated
|
|
|
|
path={MOBILE_SYNC_ROUTE}
|
|
|
|
component={MobileSyncPage}
|
|
|
|
exact
|
|
|
|
/>
|
2020-03-26 17:18:50 +01:00
|
|
|
<Authenticated path={SETTINGS_ROUTE} component={Settings} />
|
2020-11-03 00:41:28 +01:00
|
|
|
<Authenticated
|
|
|
|
path={`${CONFIRM_TRANSACTION_ROUTE}/:id?`}
|
|
|
|
component={ConfirmTransaction}
|
|
|
|
/>
|
|
|
|
<Authenticated
|
|
|
|
path={SEND_ROUTE}
|
|
|
|
component={SendTransactionScreen}
|
|
|
|
exact
|
|
|
|
/>
|
2020-10-06 20:28:38 +02:00
|
|
|
<Authenticated path={SWAPS_ROUTE} component={Swaps} />
|
2020-03-26 17:18:50 +01:00
|
|
|
<Authenticated path={ADD_TOKEN_ROUTE} component={AddTokenPage} exact />
|
2020-11-03 00:41:28 +01:00
|
|
|
<Authenticated
|
|
|
|
path={CONFIRM_ADD_TOKEN_ROUTE}
|
|
|
|
component={ConfirmAddTokenPage}
|
|
|
|
exact
|
|
|
|
/>
|
|
|
|
<Authenticated
|
|
|
|
path={CONFIRM_ADD_SUGGESTED_TOKEN_ROUTE}
|
|
|
|
component={ConfirmAddSuggestedTokenPage}
|
|
|
|
exact
|
|
|
|
/>
|
2020-03-26 17:18:50 +01:00
|
|
|
<Authenticated path={NEW_ACCOUNT_ROUTE} component={CreateAccountPage} />
|
2020-11-03 00:41:28 +01:00
|
|
|
<Authenticated
|
|
|
|
path={`${CONNECT_ROUTE}/:id`}
|
|
|
|
component={PermissionsConnect}
|
|
|
|
/>
|
2020-06-01 19:54:32 +02:00
|
|
|
<Authenticated path={`${ASSET_ROUTE}/:asset`} component={Asset} />
|
2020-03-31 01:38:02 +02:00
|
|
|
<Authenticated path={DEFAULT_ROUTE} component={Home} />
|
2020-03-26 17:18:50 +01:00
|
|
|
</Switch>
|
|
|
|
)
|
|
|
|
|
|
|
|
if (autoLockTimeLimit > 0) {
|
|
|
|
return (
|
|
|
|
<IdleTimer onAction={setLastActiveTime} throttle={1000}>
|
|
|
|
{routes}
|
|
|
|
</IdleTimer>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return routes
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
onInitializationUnlockPage() {
|
2020-03-26 17:18:50 +01:00
|
|
|
const { location } = this.props
|
2020-11-03 00:41:28 +01:00
|
|
|
return Boolean(
|
|
|
|
matchPath(location.pathname, {
|
|
|
|
path: INITIALIZE_UNLOCK_ROUTE,
|
|
|
|
exact: true,
|
|
|
|
}),
|
|
|
|
)
|
2020-03-26 17:18:50 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
onConfirmPage() {
|
2020-03-26 17:18:50 +01:00
|
|
|
const { location } = this.props
|
2020-11-03 00:41:28 +01:00
|
|
|
return Boolean(
|
|
|
|
matchPath(location.pathname, {
|
|
|
|
path: CONFIRM_TRANSACTION_ROUTE,
|
|
|
|
exact: false,
|
|
|
|
}),
|
|
|
|
)
|
2020-03-26 17:18:50 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
onSwapsPage() {
|
2020-10-06 20:28:38 +02:00
|
|
|
const { location } = this.props
|
2020-11-03 00:41:28 +01:00
|
|
|
return Boolean(
|
|
|
|
matchPath(location.pathname, { path: SWAPS_ROUTE, exact: false }),
|
|
|
|
)
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
onSwapsBuildQuotePage() {
|
2020-10-12 18:51:01 +02:00
|
|
|
const { location } = this.props
|
2020-11-03 00:41:28 +01:00
|
|
|
return Boolean(
|
|
|
|
matchPath(location.pathname, { path: BUILD_QUOTE_ROUTE, exact: false }),
|
|
|
|
)
|
2020-10-12 18:51:01 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
hideAppHeader() {
|
2020-10-07 18:45:39 +02:00
|
|
|
const { location } = this.props
|
2020-03-26 17:18:50 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const isInitializing = Boolean(
|
|
|
|
matchPath(location.pathname, {
|
|
|
|
path: INITIALIZE_ROUTE,
|
|
|
|
exact: false,
|
|
|
|
}),
|
|
|
|
)
|
2020-03-26 17:18:50 +01:00
|
|
|
|
|
|
|
if (isInitializing && !this.onInitializationUnlockPage()) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-04-02 00:28:10 +02:00
|
|
|
const windowType = getEnvironmentType()
|
|
|
|
|
|
|
|
if (windowType === ENVIRONMENT_TYPE_NOTIFICATION) {
|
2020-03-26 17:18:50 +01:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-06-11 02:27:47 +02:00
|
|
|
if (windowType === ENVIRONMENT_TYPE_POPUP && this.onConfirmPage()) {
|
|
|
|
return true
|
2020-03-26 17:18:50 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const isHandlingPermissionsRequest = Boolean(
|
|
|
|
matchPath(location.pathname, {
|
|
|
|
path: CONNECT_ROUTE,
|
|
|
|
exact: false,
|
|
|
|
}),
|
|
|
|
)
|
2020-03-26 17:18:50 +01:00
|
|
|
|
2020-06-11 02:27:47 +02:00
|
|
|
return isHandlingPermissionsRequest
|
2020-03-26 17:18:50 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
render() {
|
2020-03-26 17:18:50 +01:00
|
|
|
const {
|
|
|
|
isLoading,
|
2020-05-12 15:01:52 +02:00
|
|
|
isUnlocked,
|
2020-03-26 17:18:50 +01:00
|
|
|
alertMessage,
|
|
|
|
textDirection,
|
|
|
|
loadingMessage,
|
|
|
|
network,
|
|
|
|
provider,
|
|
|
|
frequentRpcListDetail,
|
|
|
|
setMouseUserState,
|
|
|
|
sidebar,
|
|
|
|
submittedPendingTransactions,
|
|
|
|
isMouseUser,
|
2020-10-06 20:28:38 +02:00
|
|
|
prepareToLeaveSwaps,
|
2020-03-26 17:18:50 +01:00
|
|
|
} = this.props
|
|
|
|
const isLoadingNetwork = network === 'loading'
|
2020-11-03 00:41:28 +01:00
|
|
|
const loadMessage =
|
|
|
|
loadingMessage || isLoadingNetwork
|
|
|
|
? this.getConnectingLabel(loadingMessage)
|
|
|
|
: null
|
2020-03-26 17:18:50 +01:00
|
|
|
|
|
|
|
const {
|
|
|
|
isOpen: sidebarIsOpen,
|
|
|
|
transitionName: sidebarTransitionName,
|
|
|
|
type: sidebarType,
|
|
|
|
props,
|
|
|
|
} = sidebar
|
|
|
|
const { transaction: sidebarTransaction } = props || {}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const sidebarShouldClose =
|
|
|
|
sidebarTransaction &&
|
2020-11-07 08:38:12 +01:00
|
|
|
!sidebarTransaction.status === TRANSACTION_STATUSES.FAILED &&
|
2020-11-03 00:41:28 +01:00
|
|
|
!submittedPendingTransactions.find(
|
|
|
|
({ id }) => id === sidebarTransaction.id,
|
|
|
|
)
|
2020-03-26 17:18:50 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={classnames('app', { 'mouse-user-styles': isMouseUser })}
|
|
|
|
dir={textDirection}
|
|
|
|
onClick={() => setMouseUserState(true)}
|
|
|
|
onKeyDown={(e) => {
|
|
|
|
if (e.keyCode === 9) {
|
|
|
|
setMouseUserState(false)
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Modal />
|
2020-11-03 00:41:28 +01:00
|
|
|
<Alert visible={this.props.alertOpen} msg={alertMessage} />
|
|
|
|
{!this.hideAppHeader() && (
|
2020-03-26 17:18:50 +01:00
|
|
|
<AppHeader
|
|
|
|
hideNetworkIndicator={this.onInitializationUnlockPage()}
|
2020-10-06 20:28:38 +02:00
|
|
|
disableNetworkIndicator={this.onSwapsPage()}
|
|
|
|
onClick={async () => {
|
|
|
|
if (this.onSwapsPage()) {
|
|
|
|
await prepareToLeaveSwaps()
|
|
|
|
}
|
|
|
|
}}
|
2020-11-03 00:41:28 +01:00
|
|
|
disabled={
|
|
|
|
this.onConfirmPage() ||
|
|
|
|
(this.onSwapsPage() && !this.onSwapsBuildQuotePage())
|
|
|
|
}
|
2020-03-26 17:18:50 +01:00
|
|
|
/>
|
2020-11-03 00:41:28 +01:00
|
|
|
)}
|
2020-03-26 17:18:50 +01:00
|
|
|
<Sidebar
|
|
|
|
sidebarOpen={sidebarIsOpen}
|
|
|
|
sidebarShouldClose={sidebarShouldClose}
|
|
|
|
hideSidebar={this.props.hideSidebar}
|
|
|
|
transitionName={sidebarTransitionName}
|
|
|
|
type={sidebarType}
|
|
|
|
sidebarProps={sidebar.props}
|
|
|
|
/>
|
|
|
|
<NetworkDropdown
|
|
|
|
provider={provider}
|
|
|
|
frequentRpcListDetail={frequentRpcListDetail}
|
|
|
|
/>
|
|
|
|
<AccountMenu />
|
|
|
|
<div className="main-container-wrapper">
|
2020-11-03 00:41:28 +01:00
|
|
|
{isLoading && <Loading loadingMessage={loadMessage} />}
|
|
|
|
{!isLoading && isLoadingNetwork && <LoadingNetwork />}
|
|
|
|
{this.renderRoutes()}
|
2020-03-26 17:18:50 +01:00
|
|
|
</div>
|
2020-11-03 00:41:28 +01:00
|
|
|
{isUnlocked ? <Alerts history={this.props.history} /> : null}
|
2020-03-26 17:18:50 +01:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
toggleMetamaskActive() {
|
2020-08-14 13:47:43 +02:00
|
|
|
if (this.props.isUnlocked) {
|
|
|
|
// currently active: deactivate
|
|
|
|
this.props.lockMetaMask()
|
|
|
|
} else {
|
2020-03-26 17:18:50 +01:00
|
|
|
// currently inactive: redirect to password box
|
|
|
|
const passwordBox = document.querySelector('input[type=password]')
|
|
|
|
if (!passwordBox) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
passwordBox.focus()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
getConnectingLabel(loadingMessage) {
|
2020-03-26 17:18:50 +01:00
|
|
|
if (loadingMessage) {
|
|
|
|
return loadingMessage
|
|
|
|
}
|
|
|
|
const { provider, providerId } = this.props
|
|
|
|
|
|
|
|
switch (provider.type) {
|
|
|
|
case 'mainnet':
|
|
|
|
return this.context.t('connectingToMainnet')
|
|
|
|
case 'ropsten':
|
|
|
|
return this.context.t('connectingToRopsten')
|
|
|
|
case 'kovan':
|
|
|
|
return this.context.t('connectingToKovan')
|
|
|
|
case 'rinkeby':
|
|
|
|
return this.context.t('connectingToRinkeby')
|
|
|
|
case 'goerli':
|
|
|
|
return this.context.t('connectingToGoerli')
|
|
|
|
default:
|
|
|
|
return this.context.t('connectingTo', [providerId])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
getNetworkName() {
|
2020-03-26 17:18:50 +01:00
|
|
|
switch (this.props.provider.type) {
|
|
|
|
case 'mainnet':
|
|
|
|
return this.context.t('mainnet')
|
|
|
|
case 'ropsten':
|
|
|
|
return this.context.t('ropsten')
|
|
|
|
case 'kovan':
|
|
|
|
return this.context.t('kovan')
|
|
|
|
case 'rinkeby':
|
|
|
|
return this.context.t('rinkeby')
|
|
|
|
case 'goerli':
|
|
|
|
return this.context.t('goerli')
|
|
|
|
default:
|
|
|
|
return this.context.t('unknownNetwork')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|