A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/components/app/advanced-gas-fee-popover/advanced-gas-fee-popover.js

40 lines
1.3 KiB

import React from 'react';
import { useI18nContext } from '../../../hooks/useI18nContext';
import { useTransactionModalContext } from '../../../contexts/transaction-modal';
import Box from '../../ui/box';
import Popover from '../../ui/popover';
import { AdvancedGasFeePopoverContextProvider } from './context';
import AdvancedGasFeeInputs from './advanced-gas-fee-inputs';
import AdvancedGasFeeGasLimit from './advanced-gas-fee-gas-limit';
import AdvancedGasFeeSaveButton from './advanced-gas-fee-save';
import AdvancedGasFeeDefaults from './advanced-gas-fee-defaults';
const AdvancedGasFeePopover = () => {
const t = useI18nContext();
const { closeAllModals, currentModal } = useTransactionModalContext();
if (currentModal !== 'advancedGasFee') {
return null;
}
return (
<AdvancedGasFeePopoverContextProvider>
<Popover
className="advanced-gas-fee-popover"
title={t('advancedGasFeeModalTitle')}
onClose={closeAllModals}
footer={<AdvancedGasFeeSaveButton />}
>
<Box margin={4}>
<AdvancedGasFeeInputs />
<AdvancedGasFeeDefaults />
<AdvancedGasFeeGasLimit />
</Box>
</Popover>
</AdvancedGasFeePopoverContextProvider>
);
};
export default AdvancedGasFeePopover;