1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix gas values display in users primary currency inside inputs (#13830)

This commit is contained in:
Jyoti Puri 2022-03-07 23:22:14 +05:30 committed by GitHub
parent 658f0be63f
commit 0e421ece8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 45 additions and 10 deletions

View File

@ -6,7 +6,7 @@ import {
EDIT_GAS_MODES, EDIT_GAS_MODES,
PRIORITY_LEVELS, PRIORITY_LEVELS,
} from '../../../../../../shared/constants/gas'; } from '../../../../../../shared/constants/gas';
import { SECONDARY } from '../../../../../helpers/constants/common'; import { PRIMARY } from '../../../../../helpers/constants/common';
import { import {
bnGreaterThan, bnGreaterThan,
bnLessThan, bnLessThan,
@ -57,6 +57,7 @@ const BaseFeeInput = () => {
editGasMode, editGasMode,
} = useGasFeeContext(); } = useGasFeeContext();
const { const {
gasLimit,
maxPriorityFeePerGas, maxPriorityFeePerGas,
setErrorValue, setErrorValue,
setMaxFeePerGas, setMaxFeePerGas,
@ -69,7 +70,7 @@ const BaseFeeInput = () => {
baseFeeTrend, baseFeeTrend,
} = gasFeeEstimates; } = gasFeeEstimates;
const [baseFeeError, setBaseFeeError] = useState(); const [baseFeeError, setBaseFeeError] = useState();
const { currency, numberOfDecimals } = useUserPreferencedCurrency(SECONDARY); const { currency, numberOfDecimals } = useUserPreferencedCurrency(PRIMARY);
const advancedGasFeeValues = useSelector(getAdvancedGasFeeValues); const advancedGasFeeValues = useSelector(getAdvancedGasFeeValues);
@ -85,8 +86,8 @@ const BaseFeeInput = () => {
return maxFeePerGas; return maxFeePerGas;
}); });
const [, { value: baseFeeInFiat }] = useCurrencyDisplay( const [baseFeeInPrimaryCurrency] = useCurrencyDisplay(
decGWEIToHexWEI(baseFee), decGWEIToHexWEI(baseFee * gasLimit),
{ currency, numberOfDecimals }, { currency, numberOfDecimals },
); );
@ -128,7 +129,7 @@ const BaseFeeInput = () => {
titleUnit={`(${t('gwei')})`} titleUnit={`(${t('gwei')})`}
tooltipText={t('advancedBaseGasFeeToolTip')} tooltipText={t('advancedBaseGasFeeToolTip')}
value={baseFee} value={baseFee}
detailText={`${baseFeeInFiat}`} detailText={`${baseFeeInPrimaryCurrency}`}
numeric numeric
/> />
<AdvancedGasFeeInputSubtext <AdvancedGasFeeInputSubtext

View File

@ -12,6 +12,7 @@ import { GasFeeContextProvider } from '../../../../../contexts/gasFee';
import configureStore from '../../../../../store/store'; import configureStore from '../../../../../store/store';
import { AdvancedGasFeePopoverContextProvider } from '../../context'; import { AdvancedGasFeePopoverContextProvider } from '../../context';
import AdvancedGasFeeGasLimit from '../../advanced-gas-fee-gas-limit';
import BaseFeeInput from './base-fee-input'; import BaseFeeInput from './base-fee-input';
jest.mock('../../../../../store/actions', () => ({ jest.mock('../../../../../store/actions', () => ({
@ -50,6 +51,7 @@ const render = (txProps, contextProps) => {
> >
<AdvancedGasFeePopoverContextProvider> <AdvancedGasFeePopoverContextProvider>
<BaseFeeInput /> <BaseFeeInput />
<AdvancedGasFeeGasLimit />
</AdvancedGasFeePopoverContextProvider> </AdvancedGasFeePopoverContextProvider>
</GasFeeContextProvider>, </GasFeeContextProvider>,
store, store,
@ -88,14 +90,27 @@ describe('BaseFeeInput', () => {
}); });
expect(document.getElementsByTagName('input')[0]).toHaveValue(200); expect(document.getElementsByTagName('input')[0]).toHaveValue(200);
}); });
it('should show current value of estimatedBaseFee in users primary currency in right side of input box', () => {
render({
txParams: {
gas: '0x5208',
maxFeePerGas: '0x2E90EDD000',
},
});
expect(screen.queryByText('≈ 0.0042 ETH')).toBeInTheDocument();
});
it('should show current value of estimatedBaseFee in subtext', () => { it('should show current value of estimatedBaseFee in subtext', () => {
render(); render();
expect(screen.queryByText('50 GWEI')).toBeInTheDocument(); expect(screen.queryByText('50 GWEI')).toBeInTheDocument();
}); });
it('should show 12hr range value in subtext', () => { it('should show 12hr range value in subtext', () => {
render(); render();
expect(screen.queryByText('50 - 100 GWEI')).toBeInTheDocument(); expect(screen.queryByText('50 - 100 GWEI')).toBeInTheDocument();
}); });
it('should show error if base fee is less than suggested low value', () => { it('should show error if base fee is less than suggested low value', () => {
render({ render({
txParams: { txParams: {
@ -112,6 +127,7 @@ describe('BaseFeeInput', () => {
target: { value: 50 }, target: { value: 50 },
}); });
}); });
it('should show error if base if is more than suggested high value', () => { it('should show error if base if is more than suggested high value', () => {
render({ render({
txParams: { txParams: {

View File

@ -6,7 +6,7 @@ import {
EDIT_GAS_MODES, EDIT_GAS_MODES,
PRIORITY_LEVELS, PRIORITY_LEVELS,
} from '../../../../../../shared/constants/gas'; } from '../../../../../../shared/constants/gas';
import { SECONDARY } from '../../../../../helpers/constants/common'; import { PRIMARY } from '../../../../../helpers/constants/common';
import { decGWEIToHexWEI } from '../../../../../helpers/utils/conversions.util'; import { decGWEIToHexWEI } from '../../../../../helpers/utils/conversions.util';
import { getAdvancedGasFeeValues } from '../../../../../selectors'; import { getAdvancedGasFeeValues } from '../../../../../selectors';
import { useCurrencyDisplay } from '../../../../../hooks/useCurrencyDisplay'; import { useCurrencyDisplay } from '../../../../../hooks/useCurrencyDisplay';
@ -48,6 +48,7 @@ const PriorityFeeInput = () => {
const t = useI18nContext(); const t = useI18nContext();
const advancedGasFeeValues = useSelector(getAdvancedGasFeeValues); const advancedGasFeeValues = useSelector(getAdvancedGasFeeValues);
const { const {
gasLimit,
setErrorValue, setErrorValue,
setMaxPriorityFeePerGas, setMaxPriorityFeePerGas,
} = useAdvancedGasFeePopoverContext(); } = useAdvancedGasFeePopoverContext();
@ -75,10 +76,10 @@ const PriorityFeeInput = () => {
return maxPriorityFeePerGas; return maxPriorityFeePerGas;
}); });
const { currency, numberOfDecimals } = useUserPreferencedCurrency(SECONDARY); const { currency, numberOfDecimals } = useUserPreferencedCurrency(PRIMARY);
const [, { value: priorityFeeInFiat }] = useCurrencyDisplay( const [priorityFeeInPrimaryCurrency] = useCurrencyDisplay(
decGWEIToHexWEI(priorityFee), decGWEIToHexWEI(priorityFee * gasLimit),
{ currency, numberOfDecimals }, { currency, numberOfDecimals },
); );
@ -112,7 +113,7 @@ const PriorityFeeInput = () => {
titleUnit={`(${t('gwei')})`} titleUnit={`(${t('gwei')})`}
tooltipText={t('advancedPriorityFeeToolTip')} tooltipText={t('advancedPriorityFeeToolTip')}
value={priorityFee} value={priorityFee}
detailText={`${priorityFeeInFiat}`} detailText={`${priorityFeeInPrimaryCurrency}`}
numeric numeric
/> />
<AdvancedGasFeeInputSubtext <AdvancedGasFeeInputSubtext

View File

@ -12,6 +12,7 @@ import { GasFeeContextProvider } from '../../../../../contexts/gasFee';
import configureStore from '../../../../../store/store'; import configureStore from '../../../../../store/store';
import { AdvancedGasFeePopoverContextProvider } from '../../context'; import { AdvancedGasFeePopoverContextProvider } from '../../context';
import AdvancedGasFeeGasLimit from '../../advanced-gas-fee-gas-limit';
import PriorityfeeInput from './priority-fee-input'; import PriorityfeeInput from './priority-fee-input';
jest.mock('../../../../../store/actions', () => ({ jest.mock('../../../../../store/actions', () => ({
@ -50,6 +51,7 @@ const render = (txProps, contextProps) => {
> >
<AdvancedGasFeePopoverContextProvider> <AdvancedGasFeePopoverContextProvider>
<PriorityfeeInput /> <PriorityfeeInput />
<AdvancedGasFeeGasLimit />
</AdvancedGasFeePopoverContextProvider> </AdvancedGasFeePopoverContextProvider>
</GasFeeContextProvider>, </GasFeeContextProvider>,
store, store,
@ -63,6 +65,7 @@ describe('PriorityfeeInput', () => {
}); });
expect(document.getElementsByTagName('input')[0]).toHaveValue(100); expect(document.getElementsByTagName('input')[0]).toHaveValue(100);
}); });
it('should not use advancedGasFee.priorityfee value for swaps', () => { it('should not use advancedGasFee.priorityfee value for swaps', () => {
render( render(
{ {
@ -78,6 +81,7 @@ describe('PriorityfeeInput', () => {
), ),
); );
}); });
it('should renders priorityfee value from transaction if current estimate used is custom', () => { it('should renders priorityfee value from transaction if current estimate used is custom', () => {
render({ render({
txParams: { txParams: {
@ -86,14 +90,27 @@ describe('PriorityfeeInput', () => {
}); });
expect(document.getElementsByTagName('input')[0]).toHaveValue(2); expect(document.getElementsByTagName('input')[0]).toHaveValue(2);
}); });
it('should show current priority fee range in subtext', () => { it('should show current priority fee range in subtext', () => {
render(); render();
expect(screen.queryByText('1 - 20 GWEI')).toBeInTheDocument(); expect(screen.queryByText('1 - 20 GWEI')).toBeInTheDocument();
}); });
it('should show current value of priority fee in users primary currency in right side of input box', () => {
render({
txParams: {
gas: '0x5208',
maxPriorityFeePerGas: '0x77359400',
},
});
expect(screen.queryByText('≈ 0.000042 ETH')).toBeInTheDocument();
});
it('should show 12hr range value in subtext', () => { it('should show 12hr range value in subtext', () => {
render(); render();
expect(screen.queryByText('2 - 125 GWEI')).toBeInTheDocument(); expect(screen.queryByText('2 - 125 GWEI')).toBeInTheDocument();
}); });
it('should show error if value entered is 0', () => { it('should show error if value entered is 0', () => {
render({ render({
txParams: { txParams: {