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.
42 lines
1.3 KiB
42 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 { AdvanceGasFeePopoverContextProvider } from './context';
|
|
import AdvancedGasFeeInputs from './advanced-gas-fee-inputs';
|
|
import AdvancedGasFeeGasLimit from './advanced-gas-fee-gas-limit';
|
|
import AdvancedGasFeeSaveButton from './advanced-gas-fee-save';
|
|
|
|
const AdvancedGasFeePopover = () => {
|
|
const t = useI18nContext();
|
|
const {
|
|
closeModal,
|
|
closeAllModals,
|
|
currentModal,
|
|
} = useTransactionModalContext();
|
|
|
|
if (currentModal !== 'advancedGasFee') return null;
|
|
|
|
return (
|
|
<AdvanceGasFeePopoverContextProvider>
|
|
<Popover
|
|
className="advanced-gas-fee-popover"
|
|
title={t('advancedGasFeeModalTitle')}
|
|
onBack={() => closeModal('advancedGasFee')}
|
|
onClose={closeAllModals}
|
|
footer={<AdvancedGasFeeSaveButton />}
|
|
>
|
|
<Box className="advanced-gas-fee-popover__wrapper" margin={4}>
|
|
<AdvancedGasFeeInputs />
|
|
<div className="advanced-gas-fee-popover__separator" />
|
|
<AdvancedGasFeeGasLimit />
|
|
</Box>
|
|
</Popover>
|
|
</AdvanceGasFeePopoverContextProvider>
|
|
);
|
|
};
|
|
|
|
export default AdvancedGasFeePopover;
|
|
|