import React, { useContext } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { useHistory } from 'react-router-dom'; import PropTypes from 'prop-types'; import { getAccountLink } from '@metamask/etherscan-link'; ///: BEGIN:ONLY_INCLUDE_IN(build-mmi) import { mmiActionsFactory } from '../../../store/institutional/institution-background'; ///: END:ONLY_INCLUDE_IN import { MetaMetricsContext } from '../../../contexts/metametrics'; import { useI18nContext } from '../../../hooks/useI18nContext'; import { getRpcPrefsForCurrentProvider, getBlockExplorerLinkText, getCurrentChainId, getHardwareWalletType, getAccountTypeForKeyring, ///: BEGIN:ONLY_INCLUDE_IN(build-mmi) getMetaMaskAccountsOrdered, ///: END:ONLY_INCLUDE_IN } from '../../../selectors'; ///: BEGIN:ONLY_INCLUDE_IN(build-mmi) import { toChecksumHexAddress } from '../../../../shared/modules/hexstring-utils'; ///: END:ONLY_INCLUDE_IN import { findKeyringForAddress } from '../../../ducks/metamask/metamask'; import { NETWORKS_ROUTE } from '../../../helpers/constants/routes'; import { Menu, MenuItem } from '../../ui/menu'; import { Text, IconName } from '../../component-library'; import { MetaMetricsEventCategory, MetaMetricsEventLinkType, MetaMetricsEventName, } from '../../../../shared/constants/metametrics'; import { getURLHostName } from '../../../helpers/utils/util'; import { setAccountDetailsAddress, showModal } from '../../../store/actions'; import { TextVariant } from '../../../helpers/constants/design-system'; import { formatAccountType } from '../../../helpers/utils/metrics'; export const AccountListItemMenu = ({ anchorElement, blockExplorerUrlSubTitle, onClose, closeMenu, isRemovable, identity, }) => { const t = useI18nContext(); const trackEvent = useContext(MetaMetricsContext); const dispatch = useDispatch(); const history = useHistory(); const chainId = useSelector(getCurrentChainId); const rpcPrefs = useSelector(getRpcPrefsForCurrentProvider); const addressLink = getAccountLink(identity.address, chainId, rpcPrefs); const deviceName = useSelector(getHardwareWalletType); const keyring = useSelector((state) => findKeyringForAddress(state, identity.address), ); const accountType = formatAccountType(getAccountTypeForKeyring(keyring)); const blockExplorerLinkText = useSelector(getBlockExplorerLinkText); const openBlockExplorer = () => { trackEvent({ event: MetaMetricsEventName.ExternalLinkClicked, category: MetaMetricsEventCategory.Navigation, properties: { link_type: MetaMetricsEventLinkType.AccountTracker, location: 'Account Options', url_domain: getURLHostName(addressLink), }, }); global.platform.openTab({ url: addressLink, }); onClose(); }; const routeToAddBlockExplorerUrl = () => { history.push(`${NETWORKS_ROUTE}#blockExplorerUrl`); }; ///: BEGIN:ONLY_INCLUDE_IN(build-mmi) const accounts = useSelector(getMetaMaskAccountsOrdered); const isCustodial = /Custody/u.test(keyring.type); const mmiActions = mmiActionsFactory(); ///: END:ONLY_INCLUDE_IN return ( { blockExplorerLinkText.firstPart === 'addBlockExplorer' ? routeToAddBlockExplorerUrl() : openBlockExplorer(); trackEvent({ event: MetaMetricsEventName.BlockExplorerLinkClicked, category: MetaMetricsEventCategory.Accounts, properties: { location: 'Account Options', chain_id: chainId, }, }); }} subtitle={blockExplorerUrlSubTitle || null} iconName={IconName.Export} data-testid="account-list-menu-open-explorer" > {t('viewOnExplorer')} { dispatch(setAccountDetailsAddress(identity.address)); trackEvent({ event: MetaMetricsEventName.NavAccountDetailsOpened, category: MetaMetricsEventCategory.Navigation, properties: { location: 'Account Options', }, }); onClose(); closeMenu?.(); }} iconName={IconName.ScanBarcode} data-testid="account-list-menu-details" > {t('accountDetails')} {isRemovable ? ( { dispatch( showModal({ name: 'CONFIRM_REMOVE_ACCOUNT', identity, }), ); trackEvent({ event: MetaMetricsEventName.AccountRemoved, category: MetaMetricsEventCategory.Accounts, properties: { account_hardware_type: deviceName, chain_id: chainId, account_type: accountType, }, }); onClose(); closeMenu?.(); }} iconName={IconName.Trash} > {t('removeAccount')} ) : null} { ///: BEGIN:ONLY_INCLUDE_IN(build-mmi) isCustodial ? ( { const token = await dispatch(mmiActions.getCustodianToken()); const custodyAccountDetails = await dispatch( mmiActions.getAllCustodianAccountsWithToken( keyring.type.split(' - ')[1], token, ), ); dispatch( showModal({ name: 'CONFIRM_REMOVE_JWT', token, custodyAccountDetails, accounts, selectedAddress: toChecksumHexAddress(identity.address), }), ); onClose(); closeMenu?.(); }} iconName={IconName.Trash} > {t('removeJWT')} ) : null ///: END:ONLY_INCLUDE_IN } ); }; AccountListItemMenu.propTypes = { /** * Element that the menu should display next to */ anchorElement: PropTypes.instanceOf(window.Element), /** * Function that executes when the menu is closed */ onClose: PropTypes.func.isRequired, /** * Function that closes the menu */ closeMenu: PropTypes.func, /** * Domain of the block explorer */ blockExplorerUrlSubTitle: PropTypes.string, /** * Represents if the account should be removable */ isRemovable: PropTypes.bool.isRequired, /** * Identity of the account */ /** * Identity of the account */ identity: PropTypes.shape({ name: PropTypes.string.isRequired, address: PropTypes.string.isRequired, balance: PropTypes.string.isRequired, }).isRequired, };