mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
e2c4e93ab0
* When gas fees suggested by dapp is too high, show warning color and icon Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> tests Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> Fix tests Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> set a default for high gas fees Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> Fix test cases where transaction is undefined. Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> Fix locale error Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> Fix error where dappSuggestedGasFees is null Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> Fix icon for site suggested Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> Fix unit tests snapshot Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> * Fix QA Comments Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> * lint:fix Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> * Fix unit tests Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> * Fix PR comments Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> * Lint fix Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> * Fix PR comment. - call setEstimateUsed only once. Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> * use constants for Priority levels. Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com> --------- Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com>
182 lines
5.7 KiB
JavaScript
182 lines
5.7 KiB
JavaScript
import classNames from 'classnames';
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
|
|
import {
|
|
EditGasModes,
|
|
PriorityLevels,
|
|
} 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 { useTransactionEventFragment } from '../../../../hooks/useTransactionEventFragment';
|
|
import { useTransactionModalContext } from '../../../../contexts/transaction-modal';
|
|
import InfoTooltip from '../../../ui/info-tooltip';
|
|
import LoadingHeartBeat from '../../../ui/loading-heartbeat';
|
|
import UserPreferencedCurrencyDisplay from '../../user-preferenced-currency-display';
|
|
import EditGasToolTip from '../edit-gas-tooltip/edit-gas-tooltip';
|
|
|
|
import { useGasItemFeeDetails } from './useGasItemFeeDetails';
|
|
|
|
const getTitleAndIcon = (priorityLevel, editGasMode) => {
|
|
let icon = priorityLevel;
|
|
let title = priorityLevel;
|
|
if (priorityLevel === PriorityLevels.dAppSuggested) {
|
|
title = 'dappSuggestedShortLabel';
|
|
} else if (priorityLevel === PriorityLevels.dappSuggestedHigh) {
|
|
title = 'dappSuggestedHighShortLabel';
|
|
} else if (priorityLevel === PriorityLevels.tenPercentIncreased) {
|
|
icon = null;
|
|
title = 'tenPercentIncreased';
|
|
} else if (
|
|
priorityLevel === PriorityLevels.high &&
|
|
editGasMode === EditGasModes.swaps
|
|
) {
|
|
icon = 'swapSuggested';
|
|
title = 'swapSuggested';
|
|
}
|
|
return { title, icon };
|
|
};
|
|
|
|
const EditGasItem = ({ priorityLevel }) => {
|
|
const {
|
|
editGasMode,
|
|
estimateUsed,
|
|
gasLimit,
|
|
updateTransactionToTenPercentIncreasedGasFee,
|
|
updateTransactionUsingDAPPSuggestedValues,
|
|
updateTransactionUsingEstimate,
|
|
transaction,
|
|
} = useGasFeeContext();
|
|
const { updateTransactionEventFragment } = useTransactionEventFragment();
|
|
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 === PriorityLevels.dAppSuggested &&
|
|
!dappSuggestedGasFees?.maxFeePerGas &&
|
|
!dappSuggestedGasFees?.gasPrice
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
const onOptionSelect = () => {
|
|
if (priorityLevel === PriorityLevels.custom) {
|
|
updateTransactionEventFragment({
|
|
properties: {
|
|
gas_edit_attempted: 'advanced',
|
|
},
|
|
});
|
|
openModal('advancedGasFee');
|
|
} else {
|
|
updateTransactionEventFragment({
|
|
properties: {
|
|
gas_edit_type: 'basic',
|
|
},
|
|
});
|
|
|
|
closeModal(['editGasFee']);
|
|
|
|
if (priorityLevel === PriorityLevels.tenPercentIncreased) {
|
|
updateTransactionToTenPercentIncreasedGasFee();
|
|
} else if (priorityLevel === PriorityLevels.dAppSuggested) {
|
|
updateTransactionUsingDAPPSuggestedValues();
|
|
} else {
|
|
updateTransactionUsingEstimate(priorityLevel);
|
|
}
|
|
}
|
|
};
|
|
|
|
const { title, icon } = getTitleAndIcon(priorityLevel, editGasMode);
|
|
|
|
return (
|
|
<button
|
|
className={classNames('edit-gas-item', {
|
|
'edit-gas-item--selected': priorityLevel === estimateUsed,
|
|
'edit-gas-item--disabled': estimateGreaterThanGasUse,
|
|
})}
|
|
onClick={onOptionSelect}
|
|
aria-label={priorityLevel}
|
|
autoFocus={priorityLevel === estimateUsed}
|
|
disabled={estimateGreaterThanGasUse}
|
|
data-testid={`edit-gas-fee-item-${priorityLevel}`}
|
|
>
|
|
<span className="edit-gas-item__name">
|
|
{icon && (
|
|
<span
|
|
className={`edit-gas-item__icon edit-gas-item__icon-${priorityLevel}`}
|
|
>
|
|
{PRIORITY_LEVEL_ICON_MAP[icon]}
|
|
</span>
|
|
)}
|
|
{t(title)}
|
|
</span>
|
|
<span
|
|
className={`edit-gas-item__time-estimate edit-gas-item__time-estimate-${priorityLevel}`}
|
|
>
|
|
{editGasMode !== EditGasModes.swaps &&
|
|
(minWaitTime ? toHumanReadableTime(t, minWaitTime) : '--')}
|
|
</span>
|
|
<span
|
|
className={`edit-gas-item__fee-estimate edit-gas-item__fee-estimate-${priorityLevel}`}
|
|
>
|
|
{hexMaximumTransactionFee ? (
|
|
<div className="edit-gas-item__maxfee">
|
|
<LoadingHeartBeat
|
|
backgroundColor={
|
|
priorityLevel === estimateUsed
|
|
? 'var(--color-background-alternative)'
|
|
: 'var(--color-background-default)'
|
|
}
|
|
estimateUsed={priorityLevel}
|
|
/>
|
|
<UserPreferencedCurrencyDisplay
|
|
key="editGasSubTextFeeAmount"
|
|
type={PRIMARY}
|
|
value={hexMaximumTransactionFee}
|
|
/>
|
|
</div>
|
|
) : (
|
|
'--'
|
|
)}
|
|
</span>
|
|
<span className="edit-gas-item__tooltip" data-testid="gas-tooltip">
|
|
<InfoTooltip
|
|
contentText={
|
|
<EditGasToolTip
|
|
t={t}
|
|
priorityLevel={priorityLevel}
|
|
maxFeePerGas={maxFeePerGas}
|
|
maxPriorityFeePerGas={maxPriorityFeePerGas}
|
|
editGasMode={editGasMode}
|
|
gasLimit={gasLimit}
|
|
transaction={transaction}
|
|
estimateGreaterThanGasUse={estimateGreaterThanGasUse}
|
|
/>
|
|
}
|
|
position="top"
|
|
/>
|
|
</span>
|
|
</button>
|
|
);
|
|
};
|
|
|
|
EditGasItem.propTypes = {
|
|
priorityLevel: PropTypes.string,
|
|
};
|
|
|
|
export default EditGasItem;
|