mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
176 lines
4.8 KiB
JavaScript
176 lines
4.8 KiB
JavaScript
import React, { useMemo, useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import { useDispatch } from 'react-redux';
|
|
import { useHistory } from 'react-router-dom';
|
|
import Identicon from '../../ui/identicon';
|
|
import ListItem from '../../ui/list-item';
|
|
import Tooltip from '../../ui/tooltip';
|
|
import InfoIcon from '../../ui/icon/info-icon.component';
|
|
import Button from '../../ui/button';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { startNewDraftTransaction } from '../../../ducks/send';
|
|
import { SEND_ROUTE } from '../../../helpers/constants/routes';
|
|
import { SEVERITIES } from '../../../helpers/constants/design-system';
|
|
import { INVALID_ASSET_TYPE } from '../../../helpers/constants/error-keys';
|
|
import { EVENT } from '../../../../shared/constants/metametrics';
|
|
import { AssetType } from '../../../../shared/constants/transaction';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
|
|
const AssetListItem = ({
|
|
className,
|
|
'data-testid': dataTestId,
|
|
iconClassName,
|
|
onClick,
|
|
tokenAddress,
|
|
tokenSymbol,
|
|
tokenDecimals,
|
|
tokenImage,
|
|
warning,
|
|
primary,
|
|
secondary,
|
|
identiconBorder,
|
|
isERC721,
|
|
}) => {
|
|
const t = useI18nContext();
|
|
const dispatch = useDispatch();
|
|
const history = useHistory();
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
const titleIcon = warning ? (
|
|
<Tooltip
|
|
wrapperClassName="asset-list-item__warning-tooltip"
|
|
interactive
|
|
position="bottom"
|
|
html={warning}
|
|
>
|
|
<InfoIcon severity={SEVERITIES.WARNING} />
|
|
</Tooltip>
|
|
) : null;
|
|
|
|
const midContent = warning ? (
|
|
<>
|
|
<InfoIcon severity={SEVERITIES.WARNING} />
|
|
<div className="asset-list-item__warning">{warning}</div>
|
|
</>
|
|
) : null;
|
|
|
|
const sendTokenButton = useMemo(() => {
|
|
if (tokenAddress === null || tokenAddress === undefined) {
|
|
return null;
|
|
}
|
|
return (
|
|
<Button
|
|
type="link"
|
|
className="asset-list-item__send-token-button"
|
|
onClick={async (e) => {
|
|
e.stopPropagation();
|
|
trackEvent({
|
|
event: 'Clicked Send: Token',
|
|
category: EVENT.CATEGORIES.NAVIGATION,
|
|
properties: {
|
|
action: 'Home',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
try {
|
|
await dispatch(
|
|
startNewDraftTransaction({
|
|
type: AssetType.token,
|
|
details: {
|
|
address: tokenAddress,
|
|
decimals: tokenDecimals,
|
|
symbol: tokenSymbol,
|
|
},
|
|
}),
|
|
);
|
|
history.push(SEND_ROUTE);
|
|
} catch (err) {
|
|
if (!err.message.includes(INVALID_ASSET_TYPE)) {
|
|
throw err;
|
|
}
|
|
}
|
|
}}
|
|
>
|
|
{t('sendSpecifiedTokens', [tokenSymbol])}
|
|
</Button>
|
|
);
|
|
}, [
|
|
tokenSymbol,
|
|
trackEvent,
|
|
tokenAddress,
|
|
tokenDecimals,
|
|
history,
|
|
t,
|
|
dispatch,
|
|
]);
|
|
|
|
return (
|
|
<ListItem
|
|
className={classnames('asset-list-item', className)}
|
|
data-testid={dataTestId}
|
|
title={
|
|
<button
|
|
className="asset-list-item__token-button"
|
|
data-testid="token-button"
|
|
onClick={onClick}
|
|
title={`${primary} ${tokenSymbol}`}
|
|
>
|
|
<h2>
|
|
<span className="asset-list-item__token-value">{primary}</span>
|
|
<span className="asset-list-item__token-symbol">{tokenSymbol}</span>
|
|
</h2>
|
|
</button>
|
|
}
|
|
titleIcon={titleIcon}
|
|
subtitle={secondary ? <h3 title={secondary}>{secondary}</h3> : null}
|
|
onClick={onClick}
|
|
icon={
|
|
<Identicon
|
|
className={iconClassName}
|
|
diameter={32}
|
|
address={tokenAddress}
|
|
image={tokenImage}
|
|
alt={`${primary} ${tokenSymbol}`}
|
|
imageBorder={identiconBorder}
|
|
/>
|
|
}
|
|
midContent={midContent}
|
|
rightContent={
|
|
!isERC721 && (
|
|
<>
|
|
<i className="fas fa-chevron-right asset-list-item__chevron-right" />
|
|
{sendTokenButton}
|
|
</>
|
|
)
|
|
}
|
|
/>
|
|
);
|
|
};
|
|
|
|
AssetListItem.propTypes = {
|
|
className: PropTypes.string,
|
|
'data-testid': PropTypes.string,
|
|
iconClassName: PropTypes.string,
|
|
onClick: PropTypes.func.isRequired,
|
|
tokenAddress: PropTypes.string,
|
|
tokenSymbol: PropTypes.string,
|
|
tokenDecimals: PropTypes.number,
|
|
tokenImage: PropTypes.string,
|
|
warning: PropTypes.node,
|
|
primary: PropTypes.string,
|
|
secondary: PropTypes.string,
|
|
identiconBorder: PropTypes.bool,
|
|
isERC721: PropTypes.bool,
|
|
};
|
|
|
|
AssetListItem.defaultProps = {
|
|
className: undefined,
|
|
'data-testid': undefined,
|
|
iconClassName: undefined,
|
|
tokenAddress: undefined,
|
|
tokenImage: undefined,
|
|
warning: undefined,
|
|
};
|
|
|
|
export default AssetListItem;
|