mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* UX: Multichain: Account Menu List * Move to using stylesheet * Add hover state * Implement George's suggestions * Add connected site avatar * Add hardware tag * Create story for selected hardware item * Progress on the AccountListItemMenu * Add story for AccountListItemMenu * Better position the account menu * Fix AvatarFavicon missing name prop * Update menu options label to be account specific * Update text of 'View on Explorer' * Add AccountListMenu component * Move all items to multichain directory * Fix paths * Fix linting, use AvatarIcon * Add title and close button to account menu * Center the popover title * Add search functionality * Implementation WIP * Add MULTICHAIN feature flag * Add MULTICHAIN feature flag, add actions for menu items * Properly dispatch events * Fix search box padding * Fix sizing of menu item text * Fix isRequired * Fix alignment of the popover * Update label for hardware wallet items, add text for no search results * Update keyring retreival to remove account and add label * Fix storybook * Fix double link click issue, prevent wrapping of values * Use labelProps for tag variant * Restructure item menu story * Empower storybooks for all new components * Allow only 3 decimals for currencies * Avoid inline styles * Prefix classes with multichain, fix account-list-menu storybook * Close the accounts menu when account details is clicked * Restore tag.js * Create global file for multichain css * Add index file for multichain js * Update file paths * Ensure the block domain is present in menu * Add AccountListItem test * Add AccountListItemMenu tests * Show account connect to current dapp * Improve tests * Make avatar smaller * Add tooltip for account menu * Align icon better * Update snapshot * Rename files to DS standard * Add index files for export * Export all multichain components * Update snapshot * Remove embedded style in popover * Add comments for props, cleanup storybook * Improve test coverage * Improve test code quality * Remove border form avatar * Switch to using the ButtonLink iconName prop * Only show tooltip if character limit is reached * Restore prior search settings * Add test for tooltip
197 lines
6.5 KiB
JavaScript
197 lines
6.5 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 { EVENT_NAMES, EVENT } 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: EVENT.CATEGORIES.NAVIGATION,
|
|
event: EVENT_NAMES.NAV_ACCOUNT_SWITCHED,
|
|
properties: {
|
|
location: 'Main Menu',
|
|
},
|
|
});
|
|
dispatch(setSelectedAccount(account.address));
|
|
}}
|
|
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: EVENT.CATEGORIES.NAVIGATION,
|
|
event: EVENT_NAMES.ACCOUNT_ADD_SELECTED,
|
|
properties: {
|
|
account_type: EVENT.ACCOUNT_TYPES.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: EVENT.CATEGORIES.NAVIGATION,
|
|
event: EVENT_NAMES.ACCOUNT_ADD_SELECTED,
|
|
properties: {
|
|
account_type: EVENT.ACCOUNT_TYPES.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: EVENT.CATEGORIES.NAVIGATION,
|
|
event: EVENT_NAMES.ACCOUNT_ADD_SELECTED,
|
|
properties: {
|
|
account_type: EVENT.ACCOUNT_TYPES.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,
|
|
};
|