import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import { EDIT_GAS_MODES, PRIORITY_LEVELS, } from '../../../../../shared/constants/gas'; import { PRIORITY_LEVEL_ICON_MAP } from '../../../../helpers/constants/gas'; import { PRIMARY } from '../../../../helpers/constants/common'; import { toHumanReadableTime } from '../../../../helpers/utils/util'; import { useGasFeeContext } from '../../../../contexts/gasFee'; import { useI18nContext } from '../../../../hooks/useI18nContext'; import { useTransactionModalContext } from '../../../../contexts/transaction-modal'; import EditGasToolTip from '../edit-gas-tooltip/edit-gas-tooltip'; import I18nValue from '../../../ui/i18n-value'; import InfoTooltip from '../../../ui/info-tooltip'; import LoadingHeartBeat from '../../../ui/loading-heartbeat'; import UserPreferencedCurrencyDisplay from '../../user-preferenced-currency-display'; import { useGasItemFeeDetails } from './useGasItemFeeDetails'; const getTitleAndIcon = (priorityLevel, editGasMode) => { let icon = priorityLevel; let title = priorityLevel; if (priorityLevel === PRIORITY_LEVELS.DAPP_SUGGESTED) { title = 'dappSuggestedShortLabel'; } else if (priorityLevel === PRIORITY_LEVELS.TEN_PERCENT_INCREASED) { icon = null; title = 'tenPercentIncreased'; } else if ( priorityLevel === PRIORITY_LEVELS.HIGH && editGasMode === EDIT_GAS_MODES.SWAPS ) { icon = 'swapSuggested'; title = 'swapSuggested'; } return { title, icon }; }; const EditGasItem = ({ priorityLevel }) => { const { editGasMode, estimateUsed, gasLimit, updateTransactionToTenPercentIncreasedGasFee, updateTransactionUsingDAPPSuggestedValues, updateTransactionUsingEstimate, transaction, } = useGasFeeContext(); const t = useI18nContext(); const { closeModal, openModal } = useTransactionModalContext(); const { dappSuggestedGasFees } = transaction; const { // for cancel or speedup estimateGreaterThaGasUse is true if previous gas used // was more than estimate for the priorityLevel estimateGreaterThanGasUse, hexMaximumTransactionFee, maxFeePerGas, maxPriorityFeePerGas, minWaitTime, } = useGasItemFeeDetails(priorityLevel); if ( priorityLevel === PRIORITY_LEVELS.DAPP_SUGGESTED && !dappSuggestedGasFees?.maxFeePerGas && !dappSuggestedGasFees?.gasPrice ) { return null; } const onOptionSelect = () => { if (priorityLevel === PRIORITY_LEVELS.CUSTOM) { openModal('advancedGasFee'); } else { closeModal('editGasFee'); if (priorityLevel === PRIORITY_LEVELS.TEN_PERCENT_INCREASED) { updateTransactionToTenPercentIncreasedGasFee(); } else if (priorityLevel === PRIORITY_LEVELS.DAPP_SUGGESTED) { updateTransactionUsingDAPPSuggestedValues(); } else { updateTransactionUsingEstimate(priorityLevel); } } }; const { title, icon } = getTitleAndIcon(priorityLevel, editGasMode); return ( ); }; EditGasItem.propTypes = { priorityLevel: PropTypes.string, }; export default EditGasItem;