mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
ceadfacb21
* Migrate AvatarNetwokr fixing error fix textAlign added AvatarNetworkSize NetworkProps extends BaseProps instead of Boxprops omitted children from base, made name required replace deprecated and fix lint * update AvatarNetwork TS * add AvatarNetworkSize test * remove unused size import * Update ui/components/component-library/avatar-network/avatar-network.types.ts Co-authored-by: George Marshall <georgewrmarshall@gmail.com> * fix readme * update to latest box component --------- Co-authored-by: garrettbear <gwhisten@gmail.com> Co-authored-by: George Marshall <georgewrmarshall@gmail.com>
191 lines
5.1 KiB
JavaScript
191 lines
5.1 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useSelector } from 'react-redux';
|
|
import classnames from 'classnames';
|
|
import {
|
|
BlockSize,
|
|
BorderColor,
|
|
Display,
|
|
FlexDirection,
|
|
FontWeight,
|
|
JustifyContent,
|
|
TextColor,
|
|
TextVariant,
|
|
TextAlign,
|
|
} from '../../../helpers/constants/design-system';
|
|
import {
|
|
AvatarNetwork,
|
|
AvatarNetworkSize,
|
|
AvatarToken,
|
|
BadgeWrapper,
|
|
Box,
|
|
Text,
|
|
} from '../../component-library';
|
|
import {
|
|
getCurrentChainId,
|
|
getCurrentNetwork,
|
|
getNativeCurrencyImage,
|
|
getTestNetworkBackgroundColor,
|
|
} from '../../../selectors';
|
|
import Tooltip from '../../ui/tooltip';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import {
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventName,
|
|
} from '../../../../shared/constants/metametrics';
|
|
|
|
export const TokenListItem = ({
|
|
className,
|
|
onClick,
|
|
tokenSymbol,
|
|
tokenImage,
|
|
primary,
|
|
secondary,
|
|
title,
|
|
}) => {
|
|
const t = useI18nContext();
|
|
const primaryTokenImage = useSelector(getNativeCurrencyImage);
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
const chainId = useSelector(getCurrentChainId);
|
|
|
|
// Used for badge icon
|
|
const currentNetwork = useSelector(getCurrentNetwork);
|
|
const testNetworkBackgroundColor = useSelector(getTestNetworkBackgroundColor);
|
|
|
|
return (
|
|
<Box
|
|
className={classnames('multichain-token-list-item', className)}
|
|
display={Display.Flex}
|
|
flexDirection={FlexDirection.Column}
|
|
gap={4}
|
|
data-testid="multichain-token-list-item"
|
|
>
|
|
<Box
|
|
className="multichain-token-list-item__container-cell"
|
|
display={Display.Flex}
|
|
flexDirection={FlexDirection.Row}
|
|
padding={4}
|
|
as="a"
|
|
data-testid="multichain-token-list-button"
|
|
href="#"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
onClick();
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Tokens,
|
|
event: MetaMetricsEventName.TokenDetailsOpened,
|
|
properties: {
|
|
location: 'Home',
|
|
chain_id: chainId,
|
|
token_symbol: tokenSymbol,
|
|
},
|
|
});
|
|
}}
|
|
>
|
|
<BadgeWrapper
|
|
badge={
|
|
<AvatarNetwork
|
|
size={AvatarNetworkSize.Xs}
|
|
name={currentNetwork?.nickname}
|
|
src={currentNetwork?.rpcPrefs?.imageUrl}
|
|
backgroundColor={testNetworkBackgroundColor}
|
|
borderColor={
|
|
primaryTokenImage
|
|
? BorderColor.borderMuted
|
|
: BorderColor.borderDefault
|
|
}
|
|
/>
|
|
}
|
|
marginRight={3}
|
|
>
|
|
<AvatarToken
|
|
name={tokenSymbol}
|
|
src={tokenImage}
|
|
showHalo
|
|
borderColor={
|
|
tokenImage ? BorderColor.transparent : BorderColor.borderDefault
|
|
}
|
|
/>
|
|
</BadgeWrapper>
|
|
<Box
|
|
className="multichain-token-list-item__container-cell--text-container"
|
|
display={Display.Flex}
|
|
flexDirection={FlexDirection.Column}
|
|
width={BlockSize.Full}
|
|
style={{ flexGrow: 1, overflow: 'hidden' }}
|
|
>
|
|
<Box
|
|
display={Display.Flex}
|
|
justifyContent={JustifyContent.spaceBetween}
|
|
gap={1}
|
|
>
|
|
<Box width={BlockSize.OneThird}>
|
|
<Tooltip
|
|
position="bottom"
|
|
interactive
|
|
html={title}
|
|
disabled={title?.length < 12}
|
|
tooltipInnerClassName="multichain-token-list-item__tooltip"
|
|
>
|
|
<Text
|
|
fontWeight={FontWeight.Medium}
|
|
variant={TextVariant.bodyMd}
|
|
ellipsis
|
|
>
|
|
{title === 'ETH' ? t('networkNameEthereum') : title}
|
|
</Text>
|
|
</Tooltip>
|
|
</Box>
|
|
<Text
|
|
fontWeight={FontWeight.Medium}
|
|
variant={TextVariant.bodyMd}
|
|
width={BlockSize.TwoThirds}
|
|
textAlign={TextAlign.End}
|
|
>
|
|
{secondary}
|
|
</Text>
|
|
</Box>
|
|
<Text
|
|
color={TextColor.textAlternative}
|
|
data-testid="multichain-token-list-item-value"
|
|
>
|
|
{primary} {tokenSymbol}{' '}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
TokenListItem.propTypes = {
|
|
/**
|
|
* An additional className to apply to the TokenList.
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* The onClick handler to be passed to the TokenListItem component
|
|
*/
|
|
onClick: PropTypes.func,
|
|
/**
|
|
* tokenSymbol represents the symbol of the Token
|
|
*/
|
|
tokenSymbol: PropTypes.string,
|
|
/**
|
|
* title represents the name of the token and if name is not available then Symbol
|
|
*/
|
|
title: PropTypes.string,
|
|
/**
|
|
* tokenImage represnts the image of the token icon
|
|
*/
|
|
tokenImage: PropTypes.string,
|
|
/**
|
|
* primary represents the balance
|
|
*/
|
|
primary: PropTypes.string,
|
|
/**
|
|
* secondary represents the balance in dollars
|
|
*/
|
|
secondary: PropTypes.string,
|
|
};
|