mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
9932c40651
* Adding recurring recovery phrase reminder modal * Refactoring per PR feedback
92 lines
2.8 KiB
JavaScript
92 lines
2.8 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
// Components
|
|
import Box from '../../ui/box';
|
|
import Button from '../../ui/button';
|
|
import Popover from '../../ui/popover';
|
|
import Typography from '../../ui/typography';
|
|
// Helpers
|
|
import {
|
|
COLORS,
|
|
DISPLAY,
|
|
TEXT_ALIGN,
|
|
TYPOGRAPHY,
|
|
BLOCK_SIZES,
|
|
FONT_WEIGHT,
|
|
JUSTIFY_CONTENT,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { INITIALIZE_BACKUP_SEED_PHRASE_ROUTE } from '../../../helpers/constants/routes';
|
|
|
|
export default function RecoveryPhraseReminder({ onConfirm, hasBackedUp }) {
|
|
const t = useI18nContext();
|
|
const history = useHistory();
|
|
|
|
const handleBackUp = () => {
|
|
history.push(INITIALIZE_BACKUP_SEED_PHRASE_ROUTE);
|
|
};
|
|
|
|
return (
|
|
<Popover centerTitle title={t('recoveryPhraseReminderTitle')}>
|
|
<Box padding={[0, 4, 6, 4]} className="recovery-phrase-reminder">
|
|
<Typography
|
|
color={COLORS.BLACK}
|
|
align={TEXT_ALIGN.CENTER}
|
|
variant={TYPOGRAPHY.Paragraph}
|
|
boxProps={{ marginTop: 0, marginBottom: 4 }}
|
|
>
|
|
{t('recoveryPhraseReminderSubText')}
|
|
</Typography>
|
|
<Box margin={[4, 0, 8, 0]}>
|
|
<ul className="recovery-phrase-reminder__list">
|
|
<li>
|
|
<Typography
|
|
tag="span"
|
|
color={COLORS.BLACK}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('recoveryPhraseReminderItemOne')}
|
|
</Typography>
|
|
</li>
|
|
<li>{t('recoveryPhraseReminderItemTwo')}</li>
|
|
<li>
|
|
{hasBackedUp ? (
|
|
t('recoveryPhraseReminderHasBackedUp')
|
|
) : (
|
|
<>
|
|
{t('recoveryPhraseReminderHasNotBackedUp')}
|
|
<Box display={DISPLAY.INLINE_BLOCK} marginLeft={1}>
|
|
<Button
|
|
type="link"
|
|
onClick={handleBackUp}
|
|
style={{
|
|
fontSize: 'inherit',
|
|
padding: 0,
|
|
}}
|
|
>
|
|
{t('recoveryPhraseReminderBackupStart')}
|
|
</Button>
|
|
</Box>
|
|
</>
|
|
)}
|
|
</li>
|
|
</ul>
|
|
</Box>
|
|
<Box justifyContent={JUSTIFY_CONTENT.CENTER}>
|
|
<Box width={BLOCK_SIZES.TWO_FIFTHS}>
|
|
<Button rounded type="primary" onClick={onConfirm}>
|
|
{t('recoveryPhraseReminderConfirm')}
|
|
</Button>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
RecoveryPhraseReminder.propTypes = {
|
|
hasBackedUp: PropTypes.bool.isRequired,
|
|
onConfirm: PropTypes.func.isRequired,
|
|
};
|