mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
bf61322ee1
* Updating import paths * Updating snapshots * Fixing lint issues * Updating snapshots
95 lines
2.8 KiB
JavaScript
95 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';
|
|
// Helpers
|
|
import {
|
|
DISPLAY,
|
|
TextAlign,
|
|
TextVariant,
|
|
BLOCK_SIZES,
|
|
FontWeight,
|
|
JustifyContent,
|
|
TextColor,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { ONBOARDING_UNLOCK_ROUTE } from '../../../helpers/constants/routes';
|
|
import { Text } from '../../component-library';
|
|
|
|
export default function RecoveryPhraseReminder({ onConfirm, hasBackedUp }) {
|
|
const t = useI18nContext();
|
|
const history = useHistory();
|
|
|
|
const handleBackUp = () => {
|
|
history.push(ONBOARDING_UNLOCK_ROUTE);
|
|
};
|
|
|
|
return (
|
|
<Popover centerTitle title={t('recoveryPhraseReminderTitle')}>
|
|
<Box
|
|
paddingRight={4}
|
|
paddingBottom={6}
|
|
paddingLeft={4}
|
|
className="recovery-phrase-reminder"
|
|
>
|
|
<Text
|
|
color={TextColor.textDefault}
|
|
align={TextAlign.Center}
|
|
variant={TextVariant.bodyMd}
|
|
marginBottom={4}
|
|
>
|
|
{t('recoveryPhraseReminderSubText')}
|
|
</Text>
|
|
<Box marginTop={4} marginBottom={8}>
|
|
<ul className="recovery-phrase-reminder__list">
|
|
<Text
|
|
as="li"
|
|
color={TextColor.textDefault}
|
|
fontWeight={FontWeight.Bold}
|
|
>
|
|
{t('recoveryPhraseReminderItemOne')}
|
|
</Text>
|
|
<Text as="li">{t('recoveryPhraseReminderItemTwo')}</Text>
|
|
<Text as="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>
|
|
</>
|
|
)}
|
|
</Text>
|
|
</ul>
|
|
</Box>
|
|
<Box justifyContent={JustifyContent.center}>
|
|
<Box width={BLOCK_SIZES.TWO_FIFTHS}>
|
|
<Button type="primary" onClick={onConfirm}>
|
|
{t('recoveryPhraseReminderConfirm')}
|
|
</Button>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
RecoveryPhraseReminder.propTypes = {
|
|
hasBackedUp: PropTypes.bool.isRequired,
|
|
onConfirm: PropTypes.func.isRequired,
|
|
};
|