import React from 'react'; import PropTypes from 'prop-types'; import { EDIT_GAS_MODES, PRIORITY_LEVELS, } from '../../../../shared/constants/gas'; import { COLORS, TYPOGRAPHY } from '../../../helpers/constants/design-system'; import { PRIORITY_LEVEL_ICON_MAP } from '../../../helpers/constants/gas'; import { useGasFeeContext } from '../../../contexts/gasFee'; import { useI18nContext } from '../../../hooks/useI18nContext'; import { useTransactionModalContext } from '../../../contexts/transaction-modal'; import InfoTooltip from '../../ui/info-tooltip/info-tooltip'; import Typography from '../../ui/typography/typography'; export default function EditGasFeeButton({ userAcknowledgedGasMissing }) { const t = useI18nContext(); const { editGasMode, gasLimit, hasSimulationError, estimateUsed, maxFeePerGas, maxPriorityFeePerGas, supportsEIP1559V2, transaction, } = useGasFeeContext(); const { openModal } = useTransactionModalContext(); const editEnabled = !hasSimulationError || userAcknowledgedGasMissing === true; if (!supportsEIP1559V2 || !estimateUsed || !editEnabled) { return null; } let icon = estimateUsed; let title = estimateUsed; if ( estimateUsed === PRIORITY_LEVELS.HIGH && editGasMode === EDIT_GAS_MODES.SWAPS ) { icon = 'swapSuggested'; title = 'swapSuggested'; } return (
{estimateUsed === 'custom' && ( )} {estimateUsed === 'dappSuggested' && ( {t('dappSuggestedTooltip', [transaction.origin])} {t('maxBaseFee')} {maxFeePerGas} {t('maxPriorityFee')} {maxPriorityFeePerGas} {t('gasLimit')} {gasLimit}
} position="top" /> )} ); } EditGasFeeButton.propTypes = { userAcknowledgedGasMissing: PropTypes.bool, };