import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { useSelector } from 'react-redux'; import { getMaximumGasTotalInHexWei } from '../../../../../shared/modules/gas.utils'; import { PRIORITY_LEVELS } from '../../../../../shared/constants/gas'; import { PRIORITY_LEVEL_ICON_MAP } from '../../../../helpers/constants/gas'; import { PRIMARY } from '../../../../helpers/constants/common'; import { decGWEIToHexWEI, decimalToHex, hexWEIToDecGWEI, } from '../../../../helpers/utils/conversions.util'; import { getAdvancedGasFeeValues } from '../../../../selectors'; import { toHumanReadableTime } from '../../../../helpers/utils/util'; import { useGasFeeContext } from '../../../../contexts/gasFee'; import { useI18nContext } from '../../../../hooks/useI18nContext'; import { useTransactionModalContext } from '../../../../contexts/transaction-modal'; import I18nValue from '../../../ui/i18n-value'; import InfoTooltip from '../../../ui/info-tooltip'; import UserPreferencedCurrencyDisplay from '../../user-preferenced-currency-display'; import { useCustomTimeEstimate } from './useCustomTimeEstimate'; const EditGasItem = ({ priorityLevel }) => { const { estimateUsed, gasFeeEstimates, gasLimit, maxFeePerGas: maxFeePerGasValue, maxPriorityFeePerGas: maxPriorityFeePerGasValue, updateTransactionUsingGasFeeEstimates, transaction: { dappSuggestedGasFees }, } = useGasFeeContext(); const t = useI18nContext(); const advancedGasFeeValues = useSelector(getAdvancedGasFeeValues); const { closeModal, openModal } = useTransactionModalContext(); let maxFeePerGas; let maxPriorityFeePerGas; let minWaitTime; if (gasFeeEstimates?.[priorityLevel]) { maxFeePerGas = gasFeeEstimates[priorityLevel].suggestedMaxFeePerGas; } else if ( priorityLevel === PRIORITY_LEVELS.DAPP_SUGGESTED && dappSuggestedGasFees ) { maxFeePerGas = hexWEIToDecGWEI(dappSuggestedGasFees.maxFeePerGas); maxPriorityFeePerGas = hexWEIToDecGWEI( dappSuggestedGasFees.maxPriorityFeePerGas, ); } else if (priorityLevel === PRIORITY_LEVELS.CUSTOM) { if (estimateUsed === PRIORITY_LEVELS.CUSTOM) { maxFeePerGas = maxFeePerGasValue; maxPriorityFeePerGas = maxPriorityFeePerGasValue; } else if (advancedGasFeeValues) { maxFeePerGas = gasFeeEstimates.estimatedBaseFee * parseFloat(advancedGasFeeValues.maxBaseFee); maxPriorityFeePerGas = advancedGasFeeValues.priorityFee; } } const { waitTimeEstimate } = useCustomTimeEstimate({ gasFeeEstimates, maxFeePerGas, maxPriorityFeePerGas, }); if (gasFeeEstimates[priorityLevel]) { minWaitTime = priorityLevel === PRIORITY_LEVELS.HIGH ? gasFeeEstimates?.high.minWaitTimeEstimate : gasFeeEstimates?.low.maxWaitTimeEstimate; } else { minWaitTime = waitTimeEstimate; } const hexMaximumTransactionFee = maxFeePerGas ? getMaximumGasTotalInHexWei({ gasLimit: decimalToHex(gasLimit), maxFeePerGas: decGWEIToHexWEI(maxFeePerGas), }) : null; const onOptionSelect = () => { if (priorityLevel === PRIORITY_LEVELS.CUSTOM) { openModal('advancedGasFee'); } else { updateTransactionUsingGasFeeEstimates(priorityLevel); closeModal('editGasFee'); } }; return ( ); }; EditGasItem.propTypes = { priorityLevel: PropTypes.string, }; export default EditGasItem;