1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00
metamask-extension/ui/components/app/configure-snap-popup/configure-snap-popup.tsx
George Marshall bf61322ee1
Update Text import paths: /app (#20083)
* Updating import paths

* Updating snapshots

* Fixing lint issues

* Updating snapshots
2023-07-19 15:32:35 -07:00

100 lines
2.4 KiB
TypeScript

import React from 'react';
import PropTypes from 'prop-types';
import {
BUTTON_VARIANT,
Button,
Box,
Modal,
ModalOverlay,
ModalContent,
ModalHeader,
Text,
} from '../../component-library';
import { useI18nContext } from '../../../hooks/useI18nContext';
import {
AlignItems,
Display,
FlexDirection,
JustifyContent,
TextAlign,
TextVariant,
} from '../../../helpers/constants/design-system';
export enum ConfigureSnapPopupType {
CONFIGURE = 'configure',
INSTALL = 'install',
}
export default function ConfigureSnapPopup({
type,
isOpen,
onClose,
link,
}: {
type: ConfigureSnapPopupType;
isOpen: boolean;
onClose: () => void;
link: string;
}) {
const t = useI18nContext();
return (
<Modal isOpen={isOpen} onClose={onClose}>
<ModalOverlay />
<ModalContent>
<ModalHeader onClose={onClose} margin={[4, 4, 4, 4]}>
{type === ConfigureSnapPopupType.CONFIGURE
? t('configureSnapPopupTitle')
: t('configureSnapPopupInstallTitle')}
</ModalHeader>
<Box
display={Display.Flex}
flexDirection={FlexDirection.Column}
justifyContent={JustifyContent.flexStart}
alignItems={AlignItems.center}
>
<img
src="images/logo/metamask-fox.svg"
width="54x"
height="50px"
style={{ marginBottom: '16px' }}
/>
<Text
variant={TextVariant.bodyLgMedium}
textAlign={TextAlign.Center}
marginBottom={5}
>
{type === ConfigureSnapPopupType.CONFIGURE
? t('configureSnapPopupDescription')
: t('configureSnapPopupInstallDescription')}
</Text>
<Text variant={TextVariant.bodyLgMedium} marginBottom={4}>
{t('configureSnapPopupLink')}
</Text>
<Button
variant={BUTTON_VARIANT.LINK}
marginBottom={8}
onClick={() => {
global.platform.openTab({
url: link,
});
}}
>
{link}
</Button>
</Box>
</ModalContent>
</Modal>
);
}
ConfigureSnapPopup.propTypes = {
type: PropTypes.oneOf([
ConfigureSnapPopupType.CONFIGURE,
ConfigureSnapPopupType.INSTALL,
]).isRequired,
isOpen: PropTypes.bool.isRequired,
onClose: PropTypes.func.isRequired,
link: PropTypes.string.isRequired,
};