mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
7949ec9cd4
* Fix #18423 - Ensure token details stay within dropdown * Ellipsize the token id * Add tooltip, fix tests
291 lines
11 KiB
JavaScript
291 lines
11 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import { useSelector, useDispatch } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import { useGasFeeContext } from '../../../contexts/gasFee';
|
|
import { PRIMARY, SECONDARY } from '../../../helpers/constants/common';
|
|
import UserPreferencedCurrencyDisplay from '../../../components/app/user-preferenced-currency-display';
|
|
import Typography from '../../../components/ui/typography';
|
|
import Button from '../../../components/ui/button';
|
|
import Box from '../../../components/ui/box';
|
|
import {
|
|
TypographyVariant,
|
|
DISPLAY,
|
|
FLEX_DIRECTION,
|
|
BLOCK_SIZES,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { TokenStandard } from '../../../../shared/constants/transaction';
|
|
import LoadingHeartBeat from '../../../components/ui/loading-heartbeat';
|
|
import TransactionDetailItem from '../../../components/app/transaction-detail-item';
|
|
import { ConfirmGasDisplay } from '../../../components/app/confirm-gas-display';
|
|
import { NETWORK_TO_NAME_MAP } from '../../../../shared/constants/network';
|
|
import TransactionDetail from '../../../components/app/transaction-detail';
|
|
import ActionableMessage from '../../../components/ui/actionable-message';
|
|
import {
|
|
getPreferences,
|
|
getIsBuyableChain,
|
|
transactionFeeSelector,
|
|
getIsTestnet,
|
|
getUseCurrencyRateCheck,
|
|
} from '../../../selectors';
|
|
|
|
import { INSUFFICIENT_TOKENS_ERROR } from '../send.constants';
|
|
import { getCurrentDraftTransaction } from '../../../ducks/send';
|
|
import {
|
|
getNativeCurrency,
|
|
getProviderConfig,
|
|
} from '../../../ducks/metamask/metamask';
|
|
import { showModal } from '../../../store/actions';
|
|
import {
|
|
addHexes,
|
|
hexWEIToDecETH,
|
|
} from '../../../../shared/modules/conversion.utils';
|
|
import {
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventName,
|
|
} from '../../../../shared/constants/metametrics';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import useRamps from '../../../hooks/experiences/useRamps';
|
|
|
|
export default function GasDisplay({ gasError }) {
|
|
const t = useContext(I18nContext);
|
|
const dispatch = useDispatch();
|
|
const { estimateUsed } = useGasFeeContext();
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
|
|
const { openBuyCryptoInPdapp } = useRamps();
|
|
|
|
const providerConfig = useSelector(getProviderConfig);
|
|
const isTestnet = useSelector(getIsTestnet);
|
|
const isBuyableChain = useSelector(getIsBuyableChain);
|
|
const draftTransaction = useSelector(getCurrentDraftTransaction);
|
|
const useCurrencyRateCheck = useSelector(getUseCurrencyRateCheck);
|
|
const { showFiatInTestnets, useNativeCurrencyAsPrimaryCurrency } =
|
|
useSelector(getPreferences);
|
|
const { unapprovedTxs } = useSelector((state) => state.metamask);
|
|
const nativeCurrency = useSelector(getNativeCurrency);
|
|
const { chainId } = providerConfig;
|
|
const networkName = NETWORK_TO_NAME_MAP[chainId];
|
|
const isInsufficientTokenError =
|
|
draftTransaction?.amount?.error === INSUFFICIENT_TOKENS_ERROR;
|
|
const editingTransaction = unapprovedTxs[draftTransaction.id];
|
|
const currentNetworkName = networkName || providerConfig.nickname;
|
|
|
|
const transactionData = {
|
|
txParams: {
|
|
gasPrice: draftTransaction.gas?.gasPrice,
|
|
gas: editingTransaction?.userEditedGasLimit
|
|
? editingTransaction?.txParams?.gas
|
|
: draftTransaction.gas?.gasLimit,
|
|
maxFeePerGas: editingTransaction?.txParams?.maxFeePerGas
|
|
? editingTransaction?.txParams?.maxFeePerGas
|
|
: draftTransaction.gas?.maxFeePerGas,
|
|
maxPriorityFeePerGas: editingTransaction?.txParams?.maxPriorityFeePerGas
|
|
? editingTransaction?.txParams?.maxPriorityFeePerGas
|
|
: draftTransaction.gas?.maxPriorityFeePerGas,
|
|
value: draftTransaction.amount?.value,
|
|
type: draftTransaction.transactionType,
|
|
},
|
|
userFeeLevel: editingTransaction?.userFeeLevel,
|
|
};
|
|
|
|
const { hexMaximumTransactionFee, hexTransactionTotal } = useSelector(
|
|
(state) => transactionFeeSelector(state, transactionData),
|
|
);
|
|
|
|
let title;
|
|
if (
|
|
draftTransaction?.asset.details?.standard === TokenStandard.ERC721 ||
|
|
draftTransaction?.asset.details?.standard === TokenStandard.ERC1155
|
|
) {
|
|
title = draftTransaction?.asset.details?.name;
|
|
} else if (
|
|
draftTransaction?.asset.details?.standard === TokenStandard.ERC20
|
|
) {
|
|
title = `${hexWEIToDecETH(draftTransaction.amount.value)} ${
|
|
draftTransaction?.asset.details?.symbol
|
|
}`;
|
|
}
|
|
|
|
const ethTransactionTotalMaxAmount = Number(
|
|
hexWEIToDecETH(hexMaximumTransactionFee),
|
|
);
|
|
|
|
const primaryTotalTextOverrideMaxAmount = `${title} + ${ethTransactionTotalMaxAmount} ${nativeCurrency}`;
|
|
|
|
const showCurrencyRateCheck =
|
|
useCurrencyRateCheck && (!isTestnet || showFiatInTestnets);
|
|
|
|
let detailTotal, maxAmount;
|
|
|
|
if (draftTransaction?.asset.type === 'NATIVE') {
|
|
detailTotal = (
|
|
<Box
|
|
height={BLOCK_SIZES.MAX}
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
className="gas-display__total-value"
|
|
>
|
|
<LoadingHeartBeat estimateUsed={transactionData?.userFeeLevel} />
|
|
<UserPreferencedCurrencyDisplay
|
|
type={PRIMARY}
|
|
key="total-detail-value"
|
|
value={hexTransactionTotal}
|
|
hideLabel={!useNativeCurrencyAsPrimaryCurrency}
|
|
/>
|
|
</Box>
|
|
);
|
|
maxAmount = (
|
|
<UserPreferencedCurrencyDisplay
|
|
type={PRIMARY}
|
|
key="total-max-amount"
|
|
value={addHexes(
|
|
draftTransaction.amount.value,
|
|
hexMaximumTransactionFee,
|
|
)}
|
|
hideLabel={!useNativeCurrencyAsPrimaryCurrency}
|
|
/>
|
|
);
|
|
} else if (useNativeCurrencyAsPrimaryCurrency) {
|
|
detailTotal = primaryTotalTextOverrideMaxAmount;
|
|
maxAmount = primaryTotalTextOverrideMaxAmount;
|
|
}
|
|
return (
|
|
<>
|
|
<Box className="gas-display">
|
|
<TransactionDetail
|
|
userAcknowledgedGasMissing={false}
|
|
rows={[
|
|
<ConfirmGasDisplay key="gas-display" />,
|
|
(gasError || isInsufficientTokenError) && (
|
|
<TransactionDetailItem
|
|
key="gas-display-total-item"
|
|
detailTitle={t('total')}
|
|
detailText={
|
|
showCurrencyRateCheck && (
|
|
<Box
|
|
height={BLOCK_SIZES.MAX}
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
className="gas-display__total-value"
|
|
>
|
|
<LoadingHeartBeat
|
|
estimateUsed={transactionData?.userFeeLevel}
|
|
/>
|
|
<UserPreferencedCurrencyDisplay
|
|
type={SECONDARY}
|
|
key="total-detail-text"
|
|
value={hexTransactionTotal}
|
|
hideLabel={Boolean(useNativeCurrencyAsPrimaryCurrency)}
|
|
/>
|
|
</Box>
|
|
)
|
|
}
|
|
detailTotal={detailTotal}
|
|
subTitle={t('transactionDetailGasTotalSubtitle')}
|
|
subText={
|
|
<Box
|
|
height={BLOCK_SIZES.MAX}
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
className="gas-display__total-amount"
|
|
>
|
|
<LoadingHeartBeat
|
|
estimateUsed={
|
|
transactionData?.userFeeLevel ?? estimateUsed
|
|
}
|
|
/>
|
|
<strong key="editGasSubTextAmountLabel">
|
|
{t('editGasSubTextAmountLabel')}
|
|
</strong>{' '}
|
|
{maxAmount}
|
|
</Box>
|
|
}
|
|
/>
|
|
),
|
|
]}
|
|
/>
|
|
</Box>
|
|
{(gasError || isInsufficientTokenError) && currentNetworkName && (
|
|
<Box
|
|
className="gas-display__warning-message"
|
|
data-testid="gas-warning-message"
|
|
>
|
|
<Box
|
|
paddingTop={0}
|
|
paddingRight={4}
|
|
paddingBottom={4}
|
|
paddingLeft={4}
|
|
className="gas-display__confirm-approve-content__warning"
|
|
>
|
|
<ActionableMessage
|
|
message={
|
|
isBuyableChain && draftTransaction.asset.type === 'NATIVE' ? (
|
|
<Typography variant={TypographyVariant.H7} align="left">
|
|
{t('insufficientCurrencyBuyOrReceive', [
|
|
nativeCurrency,
|
|
currentNetworkName,
|
|
<Button
|
|
type="inline"
|
|
className="confirm-page-container-content__link"
|
|
onClick={() => {
|
|
openBuyCryptoInPdapp();
|
|
trackEvent({
|
|
event: MetaMetricsEventName.NavBuyButtonClicked,
|
|
category: MetaMetricsEventCategory.Navigation,
|
|
properties: {
|
|
location: 'Gas Warning Insufficient Funds',
|
|
text: 'Buy',
|
|
},
|
|
});
|
|
}}
|
|
key={`${nativeCurrency}-buy-button`}
|
|
>
|
|
{t('buyAsset', [nativeCurrency])}
|
|
</Button>,
|
|
<Button
|
|
type="inline"
|
|
className="gas-display__link"
|
|
onClick={() =>
|
|
dispatch(showModal({ name: 'ACCOUNT_DETAILS' }))
|
|
}
|
|
key="receive-button"
|
|
>
|
|
{t('deposit')}
|
|
</Button>,
|
|
])}
|
|
</Typography>
|
|
) : (
|
|
<Typography variant={TypographyVariant.H7} align="left">
|
|
{t('insufficientCurrencyBuyOrReceive', [
|
|
nativeCurrency,
|
|
currentNetworkName,
|
|
`${t('buyAsset', [nativeCurrency])}`,
|
|
<Button
|
|
type="inline"
|
|
className="gas-display__link"
|
|
onClick={() =>
|
|
dispatch(showModal({ name: 'ACCOUNT_DETAILS' }))
|
|
}
|
|
key="receive-button"
|
|
>
|
|
{t('deposit')}
|
|
</Button>,
|
|
])}
|
|
</Typography>
|
|
)
|
|
}
|
|
useIcon
|
|
iconFillColor="var(--color-error-default)"
|
|
type="danger"
|
|
/>
|
|
</Box>
|
|
</Box>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
GasDisplay.propTypes = {
|
|
gasError: PropTypes.string,
|
|
};
|