import React, { useContext } from 'react'; import PropTypes from 'prop-types'; import { I18nContext } from '../../../contexts/i18n'; import InfoTooltip from '../../../components/ui/info-tooltip'; import { useNewMetricEvent } from '../../../hooks/useMetricEvent'; import { MAINNET_CHAIN_ID, BSC_CHAIN_ID, LOCALHOST_CHAIN_ID, POLYGON_CHAIN_ID, RINKEBY_CHAIN_ID, } from '../../../../shared/constants/network'; import TransactionDetail from '../../../components/app/transaction-detail/transaction-detail.component'; import TransactionDetailItem from '../../../components/app/transaction-detail-item/transaction-detail-item.component'; import GasTiming from '../../../components/app/gas-timing/gas-timing.component'; import Typography from '../../../components/ui/typography'; import { COLORS, TYPOGRAPHY, FONT_WEIGHT, } from '../../../helpers/constants/design-system'; const GAS_FEES_LEARN_MORE_URL = 'https://community.metamask.io/t/what-is-gas-why-do-transactions-take-so-long/3172'; export default function FeeCard({ primaryFee, secondaryFee, hideTokenApprovalRow, onFeeCardMaxRowClick, tokenApprovalTextComponent, tokenApprovalSourceTokenSymbol, onTokenApprovalClick, metaMaskFee, isBestQuote, numberOfQuotes, onQuotesClick, tokenConversionRate, chainId, networkAndAccountSupports1559, maxPriorityFeePerGasDecGWEI, maxFeePerGasDecGWEI, }) { const t = useContext(I18nContext); let bestQuoteText = ''; if (isBestQuote && tokenConversionRate) { bestQuoteText = t('swapUsingBestQuote'); } else if (tokenConversionRate) { bestQuoteText = t('swapBetterQuoteAvailable'); } const getTranslatedNetworkName = () => { switch (chainId) { case MAINNET_CHAIN_ID: return t('networkNameEthereum'); case BSC_CHAIN_ID: return t('networkNameBSC'); case POLYGON_CHAIN_ID: return t('networkNamePolygon'); case LOCALHOST_CHAIN_ID: return t('networkNameTestnet'); case RINKEBY_CHAIN_ID: return t('networkNameRinkeby'); default: throw new Error('This network is not supported for token swaps'); } }; const gasFeesLearnMoreLinkClickedEvent = useNewMetricEvent({ category: 'Swaps', event: 'Clicked "Gas Fees: Learn More" Link', }); return (
{bestQuoteText}
)} {numberOfQuotes > 1 && ({t('swapNQuotes', [numberOfQuotes])}
{t('swapGasFeesSummary', [ getTranslatedNetworkName(), ])}
{t('swapGasFeesDetails')}
> } containerClassName="fee-card__info-tooltip-content-container" wrapperClassName="fee-card__row-label fee-card__info-tooltip-container" wide /> > } detailText={primaryFee.fee} detailTotal={secondaryFee.fee} subTitle={{t('swapNetworkFeeSummary', [getTranslatedNetworkName()])}
{t('swapEstimatedNetworkFeeSummary', [ {t('swapEstimatedNetworkFee')} , ])}
{t('swapMaxNetworkFeeInfo', [ {t('swapMaxNetworkFees')} , ])}
> } containerClassName="fee-card__info-tooltip-content-container" wrapperClassName="fee-card__row-label fee-card__info-tooltip-container" wide />