mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
1304ec7af5
We want to convert NetworkController to TypeScript in order to be able to compare differences in the controller between in this repo and the core repo. To do this, however, we need to convert the dependencies of the controller to TypeScript. As a part of this effort, this commit converts `shared/constants/metametrics` to TypeScript. Note that simple objects have been largely replaced with enums. There are some cases where I even split up some of these objects into multiple enums. Co-authored-by: Mark Stacey <markjstacey@gmail.com>
202 lines
6.6 KiB
JavaScript
202 lines
6.6 KiB
JavaScript
import React, { useState, useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useHistory } from 'react-router-dom';
|
|
import Fuse from 'fuse.js';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import Box from '../../ui/box/box';
|
|
import {
|
|
ButtonLink,
|
|
ICON_NAMES,
|
|
TextFieldSearch,
|
|
Text,
|
|
} from '../../component-library';
|
|
import { AccountListItem } from '..';
|
|
import {
|
|
BLOCK_SIZES,
|
|
Size,
|
|
TextColor,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import Popover from '../../ui/popover';
|
|
import {
|
|
getSelectedAccount,
|
|
getMetaMaskAccountsOrdered,
|
|
getConnectedSubjectsForAllAddresses,
|
|
getOriginOfCurrentTab,
|
|
} from '../../../selectors';
|
|
import { toggleAccountMenu, setSelectedAccount } from '../../../store/actions';
|
|
import {
|
|
MetaMetricsEventAccountType,
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventName,
|
|
} from '../../../../shared/constants/metametrics';
|
|
import {
|
|
IMPORT_ACCOUNT_ROUTE,
|
|
NEW_ACCOUNT_ROUTE,
|
|
CONNECT_HARDWARE_ROUTE,
|
|
} from '../../../helpers/constants/routes';
|
|
import { getEnvironmentType } from '../../../../app/scripts/lib/util';
|
|
import { ENVIRONMENT_TYPE_POPUP } from '../../../../shared/constants/app';
|
|
|
|
export const AccountListMenu = ({ onClose }) => {
|
|
const t = useI18nContext();
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
const accounts = useSelector(getMetaMaskAccountsOrdered);
|
|
const selectedAccount = useSelector(getSelectedAccount);
|
|
const connectedSites = useSelector(getConnectedSubjectsForAllAddresses);
|
|
const currentTabOrigin = useSelector(getOriginOfCurrentTab);
|
|
const history = useHistory();
|
|
const dispatch = useDispatch();
|
|
|
|
const [searchQuery, setSearchQuery] = useState('');
|
|
|
|
let searchResults = accounts;
|
|
if (searchQuery) {
|
|
const fuse = new Fuse(accounts, {
|
|
threshold: 0.2,
|
|
location: 0,
|
|
distance: 100,
|
|
maxPatternLength: 32,
|
|
minMatchCharLength: 1,
|
|
keys: ['name', 'address'],
|
|
});
|
|
fuse.setCollection(accounts);
|
|
searchResults = fuse.search(searchQuery);
|
|
}
|
|
|
|
return (
|
|
<Popover title={t('selectAnAccount')} centerTitle onClose={onClose}>
|
|
<Box className="multichain-account-menu">
|
|
{/* Search box */}
|
|
<Box paddingLeft={4} paddingRight={4} paddingBottom={4} paddingTop={0}>
|
|
<TextFieldSearch
|
|
size={Size.SM}
|
|
width={BLOCK_SIZES.FULL}
|
|
placeholder={t('searchAccounts')}
|
|
value={searchQuery}
|
|
onChange={(e) => setSearchQuery(e.target.value)}
|
|
/>
|
|
</Box>
|
|
{/* Account list block */}
|
|
<Box className="multichain-account-menu__list">
|
|
{searchResults.length === 0 && searchQuery !== '' ? (
|
|
<Text
|
|
paddingLeft={4}
|
|
paddingRight={4}
|
|
color={TextColor.textMuted}
|
|
data-testid="multichain-account-menu-no-results"
|
|
>
|
|
{t('noAccountsFound')}
|
|
</Text>
|
|
) : null}
|
|
{searchResults.map((account) => {
|
|
const connectedSite = connectedSites[account.address]?.find(
|
|
({ origin }) => origin === currentTabOrigin,
|
|
);
|
|
|
|
return (
|
|
<AccountListItem
|
|
onClick={() => {
|
|
dispatch(toggleAccountMenu());
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Navigation,
|
|
event: MetaMetricsEventName.NavAccountSwitched,
|
|
properties: {
|
|
location: 'Main Menu',
|
|
},
|
|
});
|
|
dispatch(setSelectedAccount(account.address));
|
|
onClose();
|
|
}}
|
|
identity={account}
|
|
key={account.address}
|
|
selected={selectedAccount.address === account.address}
|
|
closeMenu={onClose}
|
|
connectedAvatar={connectedSite?.iconUrl}
|
|
connectedAvatarName={connectedSite?.name}
|
|
/>
|
|
);
|
|
})}
|
|
</Box>
|
|
{/* Add / Import / Hardware */}
|
|
<Box padding={4}>
|
|
<Box marginBottom={4}>
|
|
<ButtonLink
|
|
size={Size.SM}
|
|
startIconName={ICON_NAMES.ADD}
|
|
onClick={() => {
|
|
dispatch(toggleAccountMenu());
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Navigation,
|
|
event: MetaMetricsEventName.AccountAddSelected,
|
|
properties: {
|
|
account_type: MetaMetricsEventAccountType.Default,
|
|
location: 'Main Menu',
|
|
},
|
|
});
|
|
history.push(NEW_ACCOUNT_ROUTE);
|
|
}}
|
|
>
|
|
{t('addAccount')}
|
|
</ButtonLink>
|
|
</Box>
|
|
<Box marginBottom={4}>
|
|
<ButtonLink
|
|
size={Size.SM}
|
|
startIconName={ICON_NAMES.IMPORT}
|
|
onClick={() => {
|
|
dispatch(toggleAccountMenu());
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Navigation,
|
|
event: MetaMetricsEventName.AccountAddSelected,
|
|
properties: {
|
|
account_type: MetaMetricsEventAccountType.Imported,
|
|
location: 'Main Menu',
|
|
},
|
|
});
|
|
history.push(IMPORT_ACCOUNT_ROUTE);
|
|
}}
|
|
>
|
|
{t('importAccount')}
|
|
</ButtonLink>
|
|
</Box>
|
|
<Box>
|
|
<ButtonLink
|
|
size={Size.SM}
|
|
startIconName={ICON_NAMES.HARDWARE}
|
|
onClick={() => {
|
|
dispatch(toggleAccountMenu());
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Navigation,
|
|
event: MetaMetricsEventName.AccountAddSelected,
|
|
properties: {
|
|
account_type: MetaMetricsEventAccountType.Hardware,
|
|
location: 'Main Menu',
|
|
},
|
|
});
|
|
if (getEnvironmentType() === ENVIRONMENT_TYPE_POPUP) {
|
|
global.platform.openExtensionInBrowser(
|
|
CONNECT_HARDWARE_ROUTE,
|
|
);
|
|
} else {
|
|
history.push(CONNECT_HARDWARE_ROUTE);
|
|
}
|
|
}}
|
|
>
|
|
{t('hardwareWallet')}
|
|
</ButtonLink>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</Popover>
|
|
);
|
|
};
|
|
|
|
AccountListMenu.propTypes = {
|
|
/**
|
|
* Function that executes when the menu closes
|
|
*/
|
|
onClose: PropTypes.func.isRequired,
|
|
};
|