mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
e3380ba3ae
* UX: Icon: WIP: Remove fa-exclamation-triangle usages * Swap the rest of the icons * Fix color import * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.stories.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.stories.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.stories.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/components/app/add-network/add-network.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/components/ui/review-spending-cap/review-spending-cap.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Fix lint * Fix alignment and sizes * Use IconColor * Update ui/components/app/custom-spending-cap/custom-spending-cap-tooltip.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/confirmation-warning-modal/confirmation-warning-modal.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Update ui/components/app/signature-request-original/signature-request-original-warning/signature-request-original-warning.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Update ui/components/ui/review-spending-cap/review-spending-cap.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Update ui/pages/onboarding-flow/secure-your-wallet/skip-srp-backup-popover.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Fix imports * Use IconColor --------- Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Danica Shen <zhaodanica@gmail.com>
119 lines
3.7 KiB
JavaScript
119 lines
3.7 KiB
JavaScript
import React, { useState, useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { useDispatch } from 'react-redux';
|
|
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 {
|
|
AlignItems,
|
|
IconColor,
|
|
FLEX_DIRECTION,
|
|
FONT_WEIGHT,
|
|
JustifyContent,
|
|
TypographyVariant,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { setSeedPhraseBackedUp } from '../../../store/actions';
|
|
import Checkbox from '../../../components/ui/check-box';
|
|
import { ONBOARDING_COMPLETION_ROUTE } from '../../../helpers/constants/routes';
|
|
import { EVENT_NAMES, EVENT } from '../../../../shared/constants/metametrics';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import {
|
|
Icon,
|
|
ICON_NAMES,
|
|
ICON_SIZES,
|
|
} from '../../../components/component-library';
|
|
|
|
export default function SkipSRPBackup({ handleClose }) {
|
|
const [checked, setChecked] = useState(false);
|
|
const t = useI18nContext();
|
|
const history = useHistory();
|
|
const dispatch = useDispatch();
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
|
|
return (
|
|
<Popover
|
|
className="skip-srp-backup-popover"
|
|
footer={
|
|
<Box
|
|
className="skip-srp-backup-popover__footer"
|
|
justifyContent={JustifyContent.center}
|
|
alignItems={AlignItems.center}
|
|
>
|
|
<Button
|
|
onClick={() => {
|
|
trackEvent({
|
|
category: EVENT.CATEGORIES.ONBOARDING,
|
|
event: EVENT_NAMES.ONBOARDING_WALLET_SECURITY_SKIP_CANCELED,
|
|
});
|
|
handleClose();
|
|
}}
|
|
type="secondary"
|
|
rounded
|
|
>
|
|
{t('goBack')}
|
|
</Button>
|
|
<Button
|
|
data-testid="skip-srp-backup"
|
|
disabled={!checked}
|
|
type="primary"
|
|
rounded
|
|
onClick={async () => {
|
|
await dispatch(setSeedPhraseBackedUp(false));
|
|
trackEvent({
|
|
category: EVENT.CATEGORIES.ONBOARDING,
|
|
event: EVENT_NAMES.ONBOARDING_WALLET_SECURITY_SKIP_CONFIRMED,
|
|
});
|
|
history.push(ONBOARDING_COMPLETION_ROUTE);
|
|
}}
|
|
>
|
|
{t('skip')}
|
|
</Button>
|
|
</Box>
|
|
}
|
|
>
|
|
<Box
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
alignItems={AlignItems.center}
|
|
justifyContent={JustifyContent.center}
|
|
margin={4}
|
|
>
|
|
<Icon
|
|
name={ICON_NAMES.DANGER}
|
|
size={ICON_SIZES.XL}
|
|
className="skip-srp-backup-popover__icon"
|
|
color={IconColor.errorDefault}
|
|
/>
|
|
<Typography
|
|
variant={TypographyVariant.h3}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('skipAccountSecurity')}
|
|
</Typography>
|
|
<Box justifyContent={JustifyContent.center} margin={3}>
|
|
<label className="skip-srp-backup-popover__label">
|
|
<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={TypographyVariant.h7}
|
|
>
|
|
{t('skipAccountSecurityDetails')}
|
|
</Typography>
|
|
</label>
|
|
</Box>
|
|
</Box>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
SkipSRPBackup.propTypes = {
|
|
handleClose: PropTypes.func,
|
|
};
|