You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
74 lines
2.4 KiB
3 years ago
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
|
||
|
import { COLORS } 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 {
|
||
|
gasLimit,
|
||
|
hasSimulationError,
|
||
|
estimateUsed,
|
||
|
maxFeePerGas,
|
||
|
maxPriorityFeePerGas,
|
||
|
supportsEIP1559V2,
|
||
|
transaction,
|
||
|
} = useGasFeeContext();
|
||
|
const { openModal } = useTransactionModalContext();
|
||
|
const editEnabled =
|
||
|
!hasSimulationError || userAcknowledgedGasMissing === true;
|
||
|
|
||
|
if (!supportsEIP1559V2 || !estimateUsed || !editEnabled) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div className="edit-gas-fee-button">
|
||
|
<button onClick={() => openModal('editGasFee')}>
|
||
|
<span className="edit-gas-fee-button__icon">
|
||
|
{`${PRIORITY_LEVEL_ICON_MAP[estimateUsed]} `}
|
||
|
</span>
|
||
|
<span className="edit-gas-fee-button__label">{t(estimateUsed)}</span>
|
||
|
<i className="fas fa-chevron-right asset-list-item__chevron-right" />
|
||
|
</button>
|
||
|
{estimateUsed === 'custom' && (
|
||
|
<button onClick={() => openModal('advancedGasFee')}>{t('edit')}</button>
|
||
|
)}
|
||
|
{estimateUsed === 'dappSuggested' && (
|
||
|
<InfoTooltip
|
||
|
contentText={
|
||
|
<div className="edit-gas-fee-button__tooltip">
|
||
|
<Typography fontSize="12px" color={COLORS.GREY}>
|
||
|
{t('dappSuggestedTooltip', [transaction.origin])}
|
||
|
</Typography>
|
||
|
<Typography fontSize="12px">
|
||
|
<b>{t('maxBaseFee')}</b>
|
||
|
{maxFeePerGas}
|
||
|
</Typography>
|
||
|
<Typography fontSize="12px">
|
||
|
<b>{t('maxPriorityFee')}</b>
|
||
|
{maxPriorityFeePerGas}
|
||
|
</Typography>
|
||
|
<Typography fontSize="12px">
|
||
|
<b>{t('gasLimit')}</b>
|
||
|
{gasLimit}
|
||
|
</Typography>
|
||
|
</div>
|
||
|
}
|
||
|
position="top"
|
||
|
/>
|
||
|
)}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
EditGasFeeButton.propTypes = {
|
||
|
userAcknowledgedGasMissing: PropTypes.bool,
|
||
|
};
|