import React, { useContext } from 'react'; import PropTypes from 'prop-types'; import { useHistory } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; import { getAccountLink } from '@metamask/etherscan-link'; import { showModal } from '../../../store/actions'; import { CONNECTED_ROUTE, NETWORKS_ROUTE, } from '../../../helpers/constants/routes'; import { getURLHostName } from '../../../helpers/utils/util'; import { Menu, MenuItem } from '../../ui/menu'; import { getBlockExplorerLinkText, getCurrentChainId, getCurrentKeyring, getRpcPrefsForCurrentProvider, getSelectedIdentity, } from '../../../selectors'; import { useI18nContext } from '../../../hooks/useI18nContext'; import { getEnvironmentType } from '../../../../app/scripts/lib/util'; import { ENVIRONMENT_TYPE_FULLSCREEN } from '../../../../shared/constants/app'; import { HardwareKeyringTypes } from '../../../../shared/constants/hardware-wallets'; import { EVENT, EVENT_NAMES } from '../../../../shared/constants/metametrics'; import { MetaMetricsContext } from '../../../contexts/metametrics'; import { ICON_NAMES } from '../../component-library'; export default function AccountOptionsMenu({ anchorElement, onClose }) { const t = useI18nContext(); const dispatch = useDispatch(); const history = useHistory(); const keyring = useSelector(getCurrentKeyring); const chainId = useSelector(getCurrentChainId); const rpcPrefs = useSelector(getRpcPrefsForCurrentProvider); const selectedIdentity = useSelector(getSelectedIdentity); const { address } = selectedIdentity; const addressLink = getAccountLink(address, chainId, rpcPrefs); const { blockExplorerUrl } = rpcPrefs; const blockExplorerUrlSubTitle = getURLHostName(blockExplorerUrl); const trackEvent = useContext(MetaMetricsContext); const blockExplorerLinkText = useSelector(getBlockExplorerLinkText); const isRemovable = keyring.type !== HardwareKeyringTypes.hdKeyTree; const routeToAddBlockExplorerUrl = () => { history.push(`${NETWORKS_ROUTE}#blockExplorerUrl`); }; const openBlockExplorer = () => { trackEvent({ event: EVENT_NAMES.EXTERNAL_LINK_CLICKED, category: EVENT.CATEGORIES.NAVIGATION, properties: { link_type: EVENT.EXTERNAL_LINK_TYPES.ACCOUNT_TRACKER, location: 'Account Options', url_domain: getURLHostName(addressLink), }, }); global.platform.openTab({ url: addressLink, }); onClose(); }; return ( {blockExplorerUrlSubTitle} ) : null } iconName={ICON_NAMES.EXPORT} > {t( blockExplorerLinkText.firstPart, blockExplorerLinkText.secondPart === '' ? null : [t(blockExplorerLinkText.secondPart)], )} {getEnvironmentType() === ENVIRONMENT_TYPE_FULLSCREEN ? null : ( { trackEvent({ event: EVENT_NAMES.APP_WINDOW_EXPANDED, category: EVENT.CATEGORIES.NAVIGATION, properties: { location: 'Account Options', }, }); global.platform.openExtensionInBrowser(); onClose(); }} iconName={ICON_NAMES.EXPAND} > {t('expandView')} )} { dispatch(showModal({ name: 'ACCOUNT_DETAILS' })); trackEvent({ event: EVENT_NAMES.NAV_ACCOUNT_DETAILS_OPENED, category: EVENT.CATEGORIES.NAVIGATION, properties: { location: 'Account Options', }, }); onClose(); }} iconName={ICON_NAMES.SCAN_BARCODE} > {t('accountDetails')} { trackEvent({ event: EVENT_NAMES.NAV_CONNECTED_SITES_OPENED, category: EVENT.CATEGORIES.NAVIGATION, properties: { location: 'Account Options', }, }); history.push(CONNECTED_ROUTE); onClose(); }} iconName={ICON_NAMES.CONNECT} > {t('connectedSites')} {isRemovable ? ( { dispatch( showModal({ name: 'CONFIRM_REMOVE_ACCOUNT', identity: selectedIdentity, }), ); onClose(); }} iconName={ICON_NAMES.TRASH} > {t('removeAccount')} ) : null} ); } AccountOptionsMenu.propTypes = { anchorElement: PropTypes.instanceOf(window.Element), onClose: PropTypes.func.isRequired, }; AccountOptionsMenu.defaultProps = { anchorElement: undefined, };