mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
247 lines
7.5 KiB
JavaScript
247 lines
7.5 KiB
JavaScript
import React, { useContext, useRef, useEffect } from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
///: 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 {
|
|
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 { MenuItem } from '../../ui/menu';
|
|
import {
|
|
IconName,
|
|
Popover,
|
|
PopoverPosition,
|
|
ModalFocus,
|
|
PopoverRole,
|
|
Text,
|
|
} from '../../component-library';
|
|
import {
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventName,
|
|
} from '../../../../shared/constants/metametrics';
|
|
import { showModal } from '../../../store/actions';
|
|
import { TextVariant } from '../../../helpers/constants/design-system';
|
|
import { formatAccountType } from '../../../helpers/utils/metrics';
|
|
import { AccountDetailsMenuItem, ViewExplorerMenuItem } from '..';
|
|
|
|
const METRICS_LOCATION = 'Account Options';
|
|
|
|
export const AccountListItemMenu = ({
|
|
anchorElement,
|
|
onClose,
|
|
closeMenu,
|
|
isRemovable,
|
|
identity,
|
|
isOpen,
|
|
}) => {
|
|
const t = useI18nContext();
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
const dispatch = useDispatch();
|
|
|
|
const chainId = useSelector(getCurrentChainId);
|
|
|
|
const deviceName = useSelector(getHardwareWalletType);
|
|
|
|
const keyring = useSelector((state) =>
|
|
findKeyringForAddress(state, identity.address),
|
|
);
|
|
const accountType = formatAccountType(getAccountTypeForKeyring(keyring));
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
|
|
const isCustodial = keyring?.type ? /Custody/u.test(keyring.type) : false;
|
|
const accounts = useSelector(getMetaMaskAccountsOrdered);
|
|
|
|
const mmiActions = mmiActionsFactory();
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
// Handle Tab key press for accessibility inside the popover and will close the popover on the last MenuItem
|
|
const lastItemRef = useRef(null);
|
|
const accountDetailsItemRef = useRef(null);
|
|
const removeAccountItemRef = useRef(null);
|
|
const removeJWTItemRef = useRef(null);
|
|
|
|
// Checks the MenuItems from the bottom to top to set lastItemRef on the last MenuItem that is not disabled
|
|
useEffect(() => {
|
|
if (removeJWTItemRef.current) {
|
|
lastItemRef.current = removeJWTItemRef.current;
|
|
} else if (removeAccountItemRef.current) {
|
|
lastItemRef.current = removeAccountItemRef.current;
|
|
} else {
|
|
lastItemRef.current = accountDetailsItemRef.current;
|
|
}
|
|
}, [
|
|
removeJWTItemRef.current,
|
|
removeAccountItemRef.current,
|
|
accountDetailsItemRef.current,
|
|
]);
|
|
|
|
const handleKeyDown = (event) => {
|
|
if (event.key === 'Tab' && event.target === lastItemRef.current) {
|
|
// If Tab is pressed at the last item to close popover and focus to next element in DOM
|
|
onClose();
|
|
}
|
|
};
|
|
|
|
// Handle click outside of the popover to close it
|
|
const popoverDialogRef = useRef(null);
|
|
|
|
const handleClickOutside = (event) => {
|
|
if (
|
|
popoverDialogRef?.current &&
|
|
!popoverDialogRef.current.contains(event.target)
|
|
) {
|
|
onClose();
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
document.addEventListener('mousedown', handleClickOutside);
|
|
|
|
return () => {
|
|
document.removeEventListener('mousedown', handleClickOutside);
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<Popover
|
|
className="multichain-account-list-item-menu__popover"
|
|
referenceElement={anchorElement}
|
|
role={PopoverRole.Dialog}
|
|
position={PopoverPosition.Bottom}
|
|
offset={[0, 0]}
|
|
padding={0}
|
|
isOpen={isOpen}
|
|
isPortal
|
|
preventOverflow
|
|
>
|
|
<ModalFocus restoreFocus initialFocusRef={anchorElement}>
|
|
<div onKeyDown={handleKeyDown} ref={popoverDialogRef}>
|
|
<AccountDetailsMenuItem
|
|
metricsLocation={METRICS_LOCATION}
|
|
closeMenu={closeMenu}
|
|
address={identity.address}
|
|
textProps={{ variant: TextVariant.bodySm }}
|
|
/>
|
|
<ViewExplorerMenuItem
|
|
metricsLocation={METRICS_LOCATION}
|
|
closeMenu={closeMenu}
|
|
textProps={{ variant: TextVariant.bodySm }}
|
|
address={identity.address}
|
|
/>
|
|
{isRemovable ? (
|
|
<MenuItem
|
|
ref={removeAccountItemRef}
|
|
data-testid="account-list-menu-remove"
|
|
onClick={() => {
|
|
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}
|
|
>
|
|
<Text variant={TextVariant.bodySm}>{t('removeAccount')}</Text>
|
|
</MenuItem>
|
|
) : null}
|
|
{
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
|
|
isCustodial ? (
|
|
<MenuItem
|
|
ref={removeJWTItemRef}
|
|
data-testid="account-options-menu__remove-jwt"
|
|
onClick={async () => {
|
|
const token = await dispatch(
|
|
mmiActions.getCustodianToken(identity.address),
|
|
);
|
|
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}
|
|
>
|
|
<Text variant={TextVariant.bodySm}>{t('removeJWT')}</Text>
|
|
</MenuItem>
|
|
) : null
|
|
///: END:ONLY_INCLUDE_IN
|
|
}
|
|
</div>
|
|
</ModalFocus>
|
|
</Popover>
|
|
);
|
|
};
|
|
|
|
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,
|
|
/**
|
|
* Represents if the menu is open or not
|
|
*
|
|
* @type {boolean}
|
|
*/
|
|
isOpen: PropTypes.bool.isRequired,
|
|
/**
|
|
* Function that closes the menu
|
|
*/
|
|
closeMenu: PropTypes.func,
|
|
/**
|
|
* 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,
|
|
};
|