1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/app/detected-token/detected-token-ignored-popover/detected-token-ignored-popover.js

74 lines
2.0 KiB
JavaScript
Raw Normal View History

2022-05-09 19:47:06 +02:00
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
2022-05-09 19:47:06 +02:00
import { useI18nContext } from '../../../../hooks/useI18nContext';
import Popover from '../../../ui/popover';
import Button from '../../../ui/button';
import Typography from '../../../ui/typography/typography';
import { TypographyVariant } from '../../../../helpers/constants/design-system';
2022-05-09 19:47:06 +02:00
const DetectedTokenIgnoredPopover = ({
partiallyIgnoreDetectedTokens,
2022-05-09 19:47:06 +02:00
onCancelIgnore,
handleClearTokensSelection,
}) => {
const t = useI18nContext();
const footer = (
<>
<Button
className="detected-token-ignored-popover__ignore-button"
type="secondary"
onClick={onCancelIgnore}
>
{t('cancel')}
</Button>
<Button
className="detected-token-ignored-popover__import-button"
type="primary"
onClick={handleClearTokensSelection}
>
{t('confirm')}
</Button>
</>
);
return (
<Popover
title={
partiallyIgnoreDetectedTokens
? t('importSelectedTokens')
: t('areYouSure')
}
className={classNames('detected-token-ignored-popover', {
'detected-token-ignored-popover--import': partiallyIgnoreDetectedTokens,
'detected-token-ignored-popover--ignore':
!partiallyIgnoreDetectedTokens,
})}
2022-05-09 19:47:06 +02:00
footer={footer}
>
<Typography
variant={TypographyVariant.H6}
tag={TypographyVariant.H6}
marginTop={0}
marginRight={5}
marginBottom={7}
marginLeft={5}
2022-05-09 19:47:06 +02:00
>
{partiallyIgnoreDetectedTokens
? t('importSelectedTokensDescription')
: t('ignoreTokenWarning')}
2022-05-09 19:47:06 +02:00
</Typography>
</Popover>
);
};
DetectedTokenIgnoredPopover.propTypes = {
partiallyIgnoreDetectedTokens: PropTypes.bool.isRequired,
2022-05-09 19:47:06 +02:00
onCancelIgnore: PropTypes.func.isRequired,
handleClearTokensSelection: PropTypes.func.isRequired,
};
export default DetectedTokenIgnoredPopover;