mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
df85ab6e10
A new page has been created for viewing assets. This replaces the old `selectedToken` state, which previously would augment the home page to show token-specific information. The new asset page shows the standard token overview as seen previously on the home page, plus a history filtered to show just transactions relevant to that token. The actions that were available in the old token list menu have been moved to a "Token Options" menu that mirrors the "Account Options" menu. The `selectedTokenAddress` state has been removed, as it is no longer being used for anything. `getMetaMetricState` has been renamed to `getBackgroundMetaMetricState` because its sole purpose is extracting data from the background state to send metrics from the background. It's not really a selector, but it was convenient for it to use the same selectors the UI uses to extract background data, so I left it there for now. A new Redux store has been added to track state related to browser history. The most recent "overview" page (i.e. the home page or the asset page) is currently being tracked, so that actions taken from the asset page can return the user back to the asset page when the action has finished.
256 lines
7.0 KiB
JavaScript
256 lines
7.0 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Switch, Route, matchPath } from 'react-router-dom'
|
|
import TabBar from '../../components/app/tab-bar'
|
|
import classnames from 'classnames'
|
|
import SettingsTab from './settings-tab'
|
|
import AlertsTab from './alerts-tab'
|
|
import NetworksTab from './networks-tab'
|
|
import AdvancedTab from './advanced-tab'
|
|
import InfoTab from './info-tab'
|
|
import SecurityTab from './security-tab'
|
|
import ContactListTab from './contact-list-tab'
|
|
import {
|
|
ALERTS_ROUTE,
|
|
ADVANCED_ROUTE,
|
|
SECURITY_ROUTE,
|
|
GENERAL_ROUTE,
|
|
ABOUT_US_ROUTE,
|
|
SETTINGS_ROUTE,
|
|
NETWORKS_ROUTE,
|
|
CONTACT_LIST_ROUTE,
|
|
CONTACT_ADD_ROUTE,
|
|
CONTACT_EDIT_ROUTE,
|
|
CONTACT_VIEW_ROUTE,
|
|
CONTACT_MY_ACCOUNTS_ROUTE,
|
|
CONTACT_MY_ACCOUNTS_VIEW_ROUTE,
|
|
CONTACT_MY_ACCOUNTS_EDIT_ROUTE,
|
|
} from '../../helpers/constants/routes'
|
|
|
|
class SettingsPage extends PureComponent {
|
|
static propTypes = {
|
|
addressName: PropTypes.string,
|
|
backRoute: PropTypes.string,
|
|
currentPath: PropTypes.string,
|
|
history: PropTypes.object,
|
|
isAddressEntryPage: PropTypes.bool,
|
|
isPopupView: PropTypes.bool,
|
|
pathnameI18nKey: PropTypes.string,
|
|
initialBreadCrumbRoute: PropTypes.string,
|
|
breadCrumbTextKey: PropTypes.string,
|
|
initialBreadCrumbKey: PropTypes.string,
|
|
mostRecentOverviewPage: PropTypes.string.isRequired,
|
|
}
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
render () {
|
|
const { history, backRoute, currentPath, mostRecentOverviewPage } = this.props
|
|
|
|
return (
|
|
<div
|
|
className={classnames('main-container settings-page', {
|
|
'settings-page--selected': currentPath !== SETTINGS_ROUTE,
|
|
})}
|
|
>
|
|
<div className="settings-page__header">
|
|
{
|
|
currentPath !== SETTINGS_ROUTE && currentPath !== NETWORKS_ROUTE && (
|
|
<div
|
|
className="settings-page__back-button"
|
|
onClick={() => history.push(backRoute)}
|
|
/>
|
|
)
|
|
}
|
|
{ this.renderTitle() }
|
|
<div
|
|
className="settings-page__close-button"
|
|
onClick={() => history.push(mostRecentOverviewPage)}
|
|
/>
|
|
</div>
|
|
<div className="settings-page__content">
|
|
<div className="settings-page__content__tabs">
|
|
{ this.renderTabs() }
|
|
</div>
|
|
<div className="settings-page__content__modules">
|
|
{ this.renderSubHeader() }
|
|
{ this.renderContent() }
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
renderTitle () {
|
|
const { t } = this.context
|
|
const { isPopupView, pathnameI18nKey, addressName } = this.props
|
|
|
|
let titleText
|
|
|
|
if (isPopupView && addressName) {
|
|
titleText = addressName
|
|
} else if (pathnameI18nKey && isPopupView) {
|
|
titleText = t(pathnameI18nKey)
|
|
} else {
|
|
titleText = t('settings')
|
|
}
|
|
|
|
return (
|
|
<div className="settings-page__header__title">
|
|
{titleText}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
renderSubHeader () {
|
|
const { t } = this.context
|
|
const {
|
|
currentPath,
|
|
isPopupView,
|
|
isAddressEntryPage,
|
|
pathnameI18nKey,
|
|
addressName,
|
|
initialBreadCrumbRoute,
|
|
breadCrumbTextKey,
|
|
history,
|
|
initialBreadCrumbKey,
|
|
} = this.props
|
|
|
|
let subheaderText
|
|
|
|
if (isPopupView && isAddressEntryPage) {
|
|
subheaderText = t('settings')
|
|
} else if (initialBreadCrumbKey) {
|
|
subheaderText = t(initialBreadCrumbKey)
|
|
} else {
|
|
subheaderText = t(pathnameI18nKey || 'general')
|
|
}
|
|
|
|
return currentPath !== NETWORKS_ROUTE && (
|
|
<div className="settings-page__subheader">
|
|
<div
|
|
className={classnames({ 'settings-page__subheader--link': initialBreadCrumbRoute })}
|
|
onClick={() => initialBreadCrumbRoute && history.push(initialBreadCrumbRoute)}
|
|
>
|
|
{subheaderText}
|
|
</div>
|
|
{breadCrumbTextKey && (
|
|
<div className="settings-page__subheader--break">
|
|
<span>{' > '}</span>{t(breadCrumbTextKey)}
|
|
</div>
|
|
)}
|
|
{isAddressEntryPage && (
|
|
<div className="settings-page__subheader--break">
|
|
<span>{' > '}</span>{addressName}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
renderTabs () {
|
|
const { history, currentPath } = this.props
|
|
const { t } = this.context
|
|
|
|
return (
|
|
<TabBar
|
|
tabs={[
|
|
{ content: t('general'), description: t('generalSettingsDescription'), key: GENERAL_ROUTE },
|
|
{ content: t('advanced'), description: t('advancedSettingsDescription'), key: ADVANCED_ROUTE },
|
|
{ content: t('contacts'), description: t('contactsSettingsDescription'), key: CONTACT_LIST_ROUTE },
|
|
{ content: t('securityAndPrivacy'), description: t('securitySettingsDescription'), key: SECURITY_ROUTE },
|
|
{ content: t('alerts'), description: t('alertsSettingsDescription'), key: ALERTS_ROUTE },
|
|
{ content: t('networks'), description: t('networkSettingsDescription'), key: NETWORKS_ROUTE },
|
|
{ content: t('about'), description: t('aboutSettingsDescription'), key: ABOUT_US_ROUTE },
|
|
]}
|
|
isActive={(key) => {
|
|
if (key === GENERAL_ROUTE && currentPath === SETTINGS_ROUTE) {
|
|
return true
|
|
}
|
|
return matchPath(currentPath, { path: key, exact: true })
|
|
}}
|
|
onSelect={(key) => history.push(key)}
|
|
/>
|
|
)
|
|
}
|
|
|
|
renderContent () {
|
|
return (
|
|
<Switch>
|
|
<Route
|
|
exact
|
|
path={GENERAL_ROUTE}
|
|
component={SettingsTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={ABOUT_US_ROUTE}
|
|
component={InfoTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={ADVANCED_ROUTE}
|
|
component={AdvancedTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={ALERTS_ROUTE}
|
|
component={AlertsTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={NETWORKS_ROUTE}
|
|
component={NetworksTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={SECURITY_ROUTE}
|
|
component={SecurityTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={CONTACT_LIST_ROUTE}
|
|
component={ContactListTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={CONTACT_ADD_ROUTE}
|
|
component={ContactListTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={CONTACT_MY_ACCOUNTS_ROUTE}
|
|
component={ContactListTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${CONTACT_EDIT_ROUTE}/:id`}
|
|
component={ContactListTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${CONTACT_VIEW_ROUTE}/:id`}
|
|
component={ContactListTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${CONTACT_MY_ACCOUNTS_VIEW_ROUTE}/:id`}
|
|
component={ContactListTab}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${CONTACT_MY_ACCOUNTS_EDIT_ROUTE}/:id`}
|
|
component={ContactListTab}
|
|
/>
|
|
<Route
|
|
component={SettingsTab}
|
|
/>
|
|
</Switch>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default SettingsPage
|