mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 04:37:13 +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>
183 lines
5.0 KiB
JavaScript
183 lines
5.0 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 { Color, SEVERITIES } from '../../../helpers/constants/design-system';
|
|
import { INVALID_ASSET_TYPE } from '../../../helpers/constants/error-keys';
|
|
import { MetaMetricsEventCategory } from '../../../../shared/constants/metametrics';
|
|
import { AssetType } from '../../../../shared/constants/transaction';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import { Icon, ICON_NAMES, ICON_SIZES } from '../../component-library';
|
|
import Box from '../../ui/box/box';
|
|
|
|
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: MetaMetricsEventCategory.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 && (
|
|
<Box>
|
|
<Icon
|
|
name={ICON_NAMES.ARROW_RIGHT}
|
|
color={Color.iconDefault}
|
|
size={ICON_SIZES.SM}
|
|
style={{ verticalAlign: 'middle' }}
|
|
/>
|
|
{sendTokenButton}
|
|
</Box>
|
|
)
|
|
}
|
|
/>
|
|
);
|
|
};
|
|
|
|
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;
|