aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/wallet/wallet.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-07-02 05:34:50 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-07-02 05:51:02 +0800
commit5a7908984e118f2babf7c0680bf17afa148f5122 (patch)
treee1208cef885a84b7f19274a3092af18ed9f08d4c /packages/website/ts/components/wallet/wallet.tsx
parent955fdf5d13945fc7267e8ce0cc1f6016c57f3b72 (diff)
downloaddexon-sol-tools-5a7908984e118f2babf7c0680bf17afa148f5122.tar
dexon-sol-tools-5a7908984e118f2babf7c0680bf17afa148f5122.tar.gz
dexon-sol-tools-5a7908984e118f2babf7c0680bf17afa148f5122.tar.bz2
dexon-sol-tools-5a7908984e118f2babf7c0680bf17afa148f5122.tar.lz
dexon-sol-tools-5a7908984e118f2babf7c0680bf17afa148f5122.tar.xz
dexon-sol-tools-5a7908984e118f2babf7c0680bf17afa148f5122.tar.zst
dexon-sol-tools-5a7908984e118f2babf7c0680bf17afa148f5122.zip
Consolidate logic for common menu items
Diffstat (limited to 'packages/website/ts/components/wallet/wallet.tsx')
-rw-r--r--packages/website/ts/components/wallet/wallet.tsx22
1 files changed, 9 insertions, 13 deletions
diff --git a/packages/website/ts/components/wallet/wallet.tsx b/packages/website/ts/components/wallet/wallet.tsx
index ab234ae1b..b6ae79b74 100644
--- a/packages/website/ts/components/wallet/wallet.tsx
+++ b/packages/website/ts/components/wallet/wallet.tsx
@@ -16,7 +16,12 @@ import { DropDown } from 'ts/components/ui/drop_down';
import { IconButton } from 'ts/components/ui/icon_button';
import { Identicon } from 'ts/components/ui/identicon';
import { Island } from 'ts/components/ui/island';
-import { SimpleMenu, SimpleMenuItem } from 'ts/components/ui/simple_menu';
+import {
+ CopyAddressSimpleMenuItem,
+ DifferentWalletSimpleMenuItem,
+ GoToAccountManagementSimpleMenuItem,
+ SimpleMenu,
+} from 'ts/components/ui/simple_menu';
import { Text } from 'ts/components/ui/text';
import { TokenIcon } from 'ts/components/ui/token_icon';
import { BodyOverlay } from 'ts/components/wallet/body_overlay';
@@ -37,7 +42,6 @@ import {
TokenByAddress,
TokenState,
TokenStateByAddress,
- WebsitePaths,
} from 'ts/types';
import { analytics } from 'ts/utils/analytics';
import { constants } from 'ts/utils/constants';
@@ -88,7 +92,6 @@ const HEADER_ITEM_KEY = 'HEADER';
const ETHER_ITEM_KEY = 'ETHER';
const USD_DECIMAL_PLACES = 2;
const NO_ALLOWANCE_TOGGLE_SPACE_WIDTH = 56;
-const ACCOUNT_PATH = `${WebsitePaths.Portal}/account`;
const PLACEHOLDER_COLOR = colors.grey300;
const LOADING_ROWS_COUNT = 6;
@@ -223,16 +226,9 @@ export class Wallet extends React.Component<WalletProps, WalletState> {
}
popoverContent={
<SimpleMenu minWidth="150px">
- <CopyToClipboard text={this.props.userAddress}>
- <SimpleMenuItem text="Copy Address to Clipboard" onClick={_.noop} />
- </CopyToClipboard>
- <SimpleMenuItem
- text="Use a Different Wallet..."
- onClick={this.props.onToggleLedgerDialog}
- />
- <Link to={`${WebsitePaths.Portal}/account`} style={{ textDecoration: 'none' }}>
- <SimpleMenuItem text="Manage Account" onClick={_.noop} />
- </Link>
+ <CopyAddressSimpleMenuItem userAddress={this.props.userAddress} />
+ <DifferentWalletSimpleMenuItem onClick={this.props.onToggleLedgerDialog} />
+ <GoToAccountManagementSimpleMenuItem />
</SimpleMenu>
}
anchorOrigin={{ horizontal: 'right', vertical: 'bottom' }}