1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/components/app/edit-gas-fee-popover/edit-gas-fee-popover.js

114 lines
4.2 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { EditGasModes, PriorityLevels } from '../../../../shared/constants/gas';
import { useI18nContext } from '../../../hooks/useI18nContext';
import { useTransactionModalContext } from '../../../contexts/transaction-modal';
import Box from '../../ui/box';
2021-11-23 19:18:44 +01:00
import ErrorMessage from '../../ui/error-message';
import Popover from '../../ui/popover';
import Typography from '../../ui/typography/typography';
import {
TextColor,
TypographyVariant,
} from '../../../helpers/constants/design-system';
2021-11-23 19:18:44 +01:00
import { INSUFFICIENT_FUNDS_ERROR_KEY } from '../../../helpers/constants/error-keys';
import { useGasFeeContext } from '../../../contexts/gasFee';
import AppLoadingSpinner from '../app-loading-spinner';
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
import EditGasItem from './edit-gas-item';
import NetworkStatistics from './network-statistics';
const EditGasFeePopover = () => {
2021-12-12 00:26:28 +01:00
const { balanceError, editGasMode } = useGasFeeContext();
const t = useI18nContext();
2022-07-31 20:26:40 +02:00
const { closeAllModals, closeModal, currentModal, openModalCount } =
useTransactionModalContext();
if (currentModal !== 'editGasFee') {
return null;
}
let popupTitle = 'editGasFeeModalTitle';
if (editGasMode === EditGasModes.cancel) {
popupTitle = 'editCancellationGasFeeModalTitle';
} else if (editGasMode === EditGasModes.speedUp) {
popupTitle = 'editSpeedUpEditGasFeeModalTitle';
}
return (
<Popover
title={t(popupTitle)}
// below logic ensures that back button is visible only if there are other modals open before this.
onBack={
openModalCount === 1 ? undefined : () => closeModal(['editGasFee'])
}
onClose={closeAllModals}
className="edit-gas-fee-popover"
>
<>
<AppLoadingSpinner />
<div className="edit-gas-fee-popover__wrapper">
<div className="edit-gas-fee-popover__content">
<Box>
{balanceError && (
<ErrorMessage errorKey={INSUFFICIENT_FUNDS_ERROR_KEY} />
)}
<div className="edit-gas-fee-popover__content__header">
<span className="edit-gas-fee-popover__content__header-option">
{t('gasOption')}
</span>
<span className="edit-gas-fee-popover__content__header-time">
{editGasMode !== EditGasModes.swaps && t('time')}
</span>
<span className="edit-gas-fee-popover__content__header-max-fee">
{t('maxFee')}
</span>
</div>
{(editGasMode === EditGasModes.cancel ||
editGasMode === EditGasModes.speedUp) && (
<EditGasItem
priorityLevel={PriorityLevels.tenPercentIncreased}
/>
)}
{editGasMode === EditGasModes.modifyInPlace && (
<EditGasItem priorityLevel={PriorityLevels.low} />
)}
<EditGasItem priorityLevel={PriorityLevels.medium} />
<EditGasItem priorityLevel={PriorityLevels.high} />
<div className="edit-gas-fee-popover__content__separator" />
{editGasMode === EditGasModes.modifyInPlace && (
<EditGasItem priorityLevel={PriorityLevels.dAppSuggested} />
)}
<EditGasItem priorityLevel={PriorityLevels.custom} />
</Box>
<Box>
<NetworkStatistics />
<Typography
className="edit-gas-fee-popover__know-more"
align="center"
color={TextColor.textAlternative}
tag={TypographyVariant.paragraph}
variant={TypographyVariant.H7}
>
2022-09-22 16:50:05 +02:00
{t('learnMoreAboutGas', [
<a
key="learnMoreLink"
target="_blank"
rel="noopener noreferrer"
href={ZENDESK_URLS.USER_GUIDE_GAS}
>
{t('learnMore')}
</a>,
])}
</Typography>
</Box>
</div>
</div>
</>
</Popover>
);
};
export default EditGasFeePopover;