mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
203 lines
7.2 KiB
JavaScript
203 lines
7.2 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import InfoTooltip from '../../../components/ui/info-tooltip';
|
|
import { CHAIN_IDS } 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 {
|
|
TextColor,
|
|
TextVariant,
|
|
FontWeight,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import { MetaMetricsEventCategory } from '../../../../shared/constants/metametrics';
|
|
import { getUseCurrencyRateCheck } from '../../../selectors';
|
|
import { Text } from '../../../components/component-library';
|
|
|
|
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,
|
|
tokenApprovalSourceTokenSymbol,
|
|
onTokenApprovalClick,
|
|
metaMaskFee,
|
|
numberOfQuotes,
|
|
onQuotesClick,
|
|
chainId,
|
|
}) {
|
|
const t = useContext(I18nContext);
|
|
const useCurrencyRateCheck = useSelector(getUseCurrencyRateCheck);
|
|
|
|
/* istanbul ignore next */
|
|
const getTranslatedNetworkName = () => {
|
|
switch (chainId) {
|
|
case CHAIN_IDS.MAINNET:
|
|
return t('networkNameEthereum');
|
|
case CHAIN_IDS.BSC:
|
|
return t('networkNameBSC');
|
|
case CHAIN_IDS.POLYGON:
|
|
return t('networkNamePolygon');
|
|
case CHAIN_IDS.LOCALHOST:
|
|
return t('networkNameTestnet');
|
|
case CHAIN_IDS.GOERLI:
|
|
return t('networkNameGoerli');
|
|
case CHAIN_IDS.AVALANCHE:
|
|
return t('networkNameAvalanche');
|
|
case CHAIN_IDS.OPTIMISM:
|
|
return t('networkNameOptimism');
|
|
case CHAIN_IDS.ARBITRUM:
|
|
return t('networkNameArbitrum');
|
|
default:
|
|
throw new Error('This network is not supported for token swaps');
|
|
}
|
|
};
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
|
|
const tokenApprovalTextComponent = (
|
|
<span key="fee-card-approve-symbol" className="fee-card__bold">
|
|
{t('enableToken', [tokenApprovalSourceTokenSymbol])}
|
|
</span>
|
|
);
|
|
|
|
return (
|
|
<div className="fee-card">
|
|
<div className="fee-card__main">
|
|
<TransactionDetail
|
|
disableEditGasFeeButton
|
|
rows={[
|
|
<TransactionDetailItem
|
|
key="fee-card-gas-item"
|
|
detailTitle={
|
|
<>
|
|
{t('transactionDetailGasHeading')}
|
|
<InfoTooltip
|
|
position="top"
|
|
contentText={
|
|
<>
|
|
<p className="fee-card__info-tooltip-paragraph">
|
|
{t('swapGasFeesSummary', [
|
|
getTranslatedNetworkName(),
|
|
])}
|
|
</p>
|
|
<p className="fee-card__info-tooltip-paragraph">
|
|
{t('swapGasFeesDetails')}
|
|
</p>
|
|
<p className="fee-card__info-tooltip-paragraph">
|
|
<a
|
|
className="fee-card__link"
|
|
onClick={() => {
|
|
/* istanbul ignore next */
|
|
trackEvent({
|
|
event: 'Clicked "Gas Fees: Learn More" Link',
|
|
category: MetaMetricsEventCategory.Swaps,
|
|
});
|
|
global.platform.openTab({
|
|
url: GAS_FEES_LEARN_MORE_URL,
|
|
});
|
|
}}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('swapGasFeesLearnMore')}
|
|
</a>
|
|
</p>
|
|
</>
|
|
}
|
|
containerClassName="fee-card__info-tooltip-content-container"
|
|
wrapperClassName="fee-card__row-label fee-card__info-tooltip-container"
|
|
/>
|
|
</>
|
|
}
|
|
detailText={primaryFee.fee}
|
|
detailTotal={useCurrencyRateCheck && secondaryFee.fee}
|
|
subText={
|
|
(secondaryFee?.maxFee !== undefined ||
|
|
primaryFee?.maxFee !== undefined) && (
|
|
<>
|
|
<Text
|
|
as="span"
|
|
fontWeight={FontWeight.Bold}
|
|
color={TextColor.textAlternative}
|
|
variant={TextVariant.bodySm}
|
|
>
|
|
{t('maxFee')}
|
|
</Text>
|
|
{useCurrencyRateCheck
|
|
? `: ${secondaryFee.maxFee}`
|
|
: `: ${primaryFee.maxFee}`}
|
|
</>
|
|
)
|
|
}
|
|
/>,
|
|
]}
|
|
/>
|
|
{!hideTokenApprovalRow && (
|
|
<div className="fee-card__row-header">
|
|
<div className="fee-card__row-label">
|
|
<div className="fee-card__row-header-text">
|
|
{t('swapEnableTokenForSwapping', [tokenApprovalTextComponent])}
|
|
<InfoTooltip
|
|
position="top"
|
|
contentText={t('swapEnableDescription', [
|
|
tokenApprovalSourceTokenSymbol,
|
|
])}
|
|
containerClassName="fee-card__info-tooltip-container"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div
|
|
className="fee-card__link"
|
|
onClick={() => onTokenApprovalClick()}
|
|
>
|
|
{t('swapEditLimit')}
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div className="fee-card__row-header">
|
|
<div className="fee-card__row-label">
|
|
<div className="fee-card__row-header-text">
|
|
{numberOfQuotes > 1 && (
|
|
<span
|
|
onClick={onQuotesClick}
|
|
className="fee-card__quote-link-text"
|
|
>
|
|
{t('swapNQuotesWithDot', [numberOfQuotes])}
|
|
</span>
|
|
)}
|
|
{t('swapIncludesMMFee', [metaMaskFee])}
|
|
<InfoTooltip
|
|
position="top"
|
|
contentText={t('swapMetaMaskFeeDescription', [metaMaskFee])}
|
|
wrapperClassName="fee-card__info-tooltip-container"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
FeeCard.propTypes = {
|
|
primaryFee: PropTypes.shape({
|
|
fee: PropTypes.string.isRequired,
|
|
maxFee: PropTypes.string.isRequired,
|
|
}).isRequired,
|
|
secondaryFee: PropTypes.shape({
|
|
fee: PropTypes.string.isRequired,
|
|
maxFee: PropTypes.string.isRequired,
|
|
}),
|
|
hideTokenApprovalRow: PropTypes.bool.isRequired,
|
|
tokenApprovalSourceTokenSymbol: PropTypes.string,
|
|
onTokenApprovalClick: PropTypes.func,
|
|
metaMaskFee: PropTypes.string.isRequired,
|
|
onQuotesClick: PropTypes.func.isRequired,
|
|
numberOfQuotes: PropTypes.number.isRequired,
|
|
chainId: PropTypes.string.isRequired,
|
|
};
|