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.
79 lines
2.4 KiB
79 lines
2.4 KiB
import React, { useState } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import Button from '../../../components/ui/button';
|
|
import Popover from '../../../components/ui/popover';
|
|
import Box from '../../../components/ui/box';
|
|
import Typography from '../../../components/ui/typography';
|
|
import {
|
|
ALIGN_ITEMS,
|
|
FLEX_DIRECTION,
|
|
FONT_WEIGHT,
|
|
JUSTIFY_CONTENT,
|
|
TYPOGRAPHY,
|
|
} from '../../../helpers/constants/design-system';
|
|
import Checkbox from '../../../components/ui/check-box';
|
|
import { ONBOARDING_COMPLETION_ROUTE } from '../../../helpers/constants/routes';
|
|
|
|
export default function SkipSRPBackup({ handleClose }) {
|
|
const [checked, setChecked] = useState(false);
|
|
const t = useI18nContext();
|
|
const history = useHistory();
|
|
return (
|
|
<Popover
|
|
className="skip-srp-backup-popover"
|
|
footer={
|
|
<Box
|
|
className="skip-srp-backup-popover__footer"
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
alignItems={ALIGN_ITEMS.CENTER}
|
|
>
|
|
<Button onClick={handleClose} type="secondary" rounded>
|
|
{t('goBack')}
|
|
</Button>
|
|
<Button
|
|
disabled={!checked}
|
|
type="primary"
|
|
rounded
|
|
onClick={() => history.push(ONBOARDING_COMPLETION_ROUTE)}
|
|
>
|
|
{t('skip')}
|
|
</Button>
|
|
</Box>
|
|
}
|
|
>
|
|
<Box
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
alignItems={ALIGN_ITEMS.CENTER}
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
margin={4}
|
|
>
|
|
<img src="./images/warning-icon.png" />
|
|
<Typography variant={TYPOGRAPHY.h3} fontWeight={FONT_WEIGHT.BOLD}>
|
|
{t('skipAccountSecurity')}
|
|
</Typography>
|
|
<Box justifyContent={JUSTIFY_CONTENT.CENTER} margin={3}>
|
|
<Checkbox
|
|
className="skip-srp-backup-popover__checkbox"
|
|
onClick={() => {
|
|
setChecked(!checked);
|
|
}}
|
|
checked={checked}
|
|
dataTestId="skip-srp-backup-popover-checkbox"
|
|
/>
|
|
<Typography
|
|
className="skip-srp-backup-popover__details"
|
|
variant={TYPOGRAPHY.h7}
|
|
>
|
|
{t('skipAccountSecurityDetails')}
|
|
</Typography>
|
|
</Box>
|
|
</Box>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
SkipSRPBackup.propTypes = {
|
|
handleClose: PropTypes.func,
|
|
};
|
|
|