mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
a10fb75f35
Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
83 lines
1.7 KiB
JavaScript
83 lines
1.7 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
|
import {
|
|
Text,
|
|
Box,
|
|
Button,
|
|
Modal,
|
|
ModalContent,
|
|
ModalHeader,
|
|
ModalOverlay,
|
|
BUTTON_VARIANT,
|
|
BUTTON_SIZES,
|
|
} from '../../../component-library';
|
|
|
|
import {
|
|
BlockSize,
|
|
Display,
|
|
FlexDirection,
|
|
} from '../../../../helpers/constants/design-system';
|
|
|
|
export default function SnapRemoveWarning({
|
|
isOpen,
|
|
onCancel,
|
|
onSubmit,
|
|
snapName,
|
|
}) {
|
|
const t = useI18nContext();
|
|
return (
|
|
<Modal isOpen={isOpen} onClose={onCancel}>
|
|
<ModalOverlay />
|
|
<ModalContent
|
|
modalDialogProps={{
|
|
display: Display.Flex,
|
|
flexDirection: FlexDirection.Column,
|
|
gap: 4,
|
|
}}
|
|
>
|
|
<ModalHeader onClose={onCancel}>{t('pleaseConfirm')}</ModalHeader>
|
|
<Text>{t('removeSnapConfirmation', [snapName])}</Text>
|
|
<Box width={BlockSize.Full} display={Display.Flex} gap={4}>
|
|
<Button
|
|
block
|
|
variant={BUTTON_VARIANT.SECONDARY}
|
|
size={BUTTON_SIZES.LG}
|
|
onClick={onCancel}
|
|
>
|
|
{t('nevermind')}
|
|
</Button>
|
|
<Button
|
|
block
|
|
size={BUTTON_SIZES.LG}
|
|
id="popoverRemoveSnapButton"
|
|
danger
|
|
onClick={onSubmit}
|
|
>
|
|
{t('removeSnap')}
|
|
</Button>
|
|
</Box>
|
|
</ModalContent>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
SnapRemoveWarning.propTypes = {
|
|
/**
|
|
* onCancel handler
|
|
*/
|
|
onCancel: PropTypes.func,
|
|
/**
|
|
* onSubmit handler
|
|
*/
|
|
onSubmit: PropTypes.func,
|
|
/**
|
|
* Name of snap
|
|
*/
|
|
snapName: PropTypes.string,
|
|
/**
|
|
* Whether the modal is open
|
|
*/
|
|
isOpen: PropTypes.bool,
|
|
};
|