mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
0ca0f1784e
* add recovery-phrase views for new onboarding flow * black => ui-black * minor syntax improvement
125 lines
3.9 KiB
JavaScript
125 lines
3.9 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
import PropTypes from 'prop-types';
|
|
import Box from '../../../components/ui/box';
|
|
import Button from '../../../components/ui/button';
|
|
import Typography from '../../../components/ui/typography';
|
|
import Copy from '../../../components/ui/icon/copy-icon.component';
|
|
import { useCopyToClipboard } from '../../../hooks/useCopyToClipboard';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { INITIALIZE_CONFIRM_SEED_PHRASE_ROUTE } from '../../../helpers/constants/routes';
|
|
import {
|
|
TEXT_ALIGN,
|
|
TYPOGRAPHY,
|
|
JUSTIFY_CONTENT,
|
|
FONT_WEIGHT,
|
|
} from '../../../helpers/constants/design-system';
|
|
import ProgressBar from '../../../components/app/step-progress-bar';
|
|
import RecoveryPhraseChips from './recovery-phrase-chips';
|
|
|
|
export default function RecoveryPhrase({ seedPhrase }) {
|
|
const history = useHistory();
|
|
const t = useI18nContext();
|
|
const [copied, handleCopy] = useCopyToClipboard();
|
|
const [seedPhraseRevealed, setSeedPhraseRevealed] = useState(false);
|
|
return (
|
|
<div>
|
|
<ProgressBar stage="SEED_PHRASE_REVIEW" />
|
|
<Box
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
textAlign={TEXT_ALIGN.CENTER}
|
|
marginBottom={4}
|
|
>
|
|
<Typography variant={TYPOGRAPHY.H2} fontWeight={FONT_WEIGHT.BOLD}>
|
|
{t('seedPhraseWriteDownHeader')}
|
|
</Typography>
|
|
</Box>
|
|
<Box
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
textAlign={TEXT_ALIGN.CENTER}
|
|
marginBottom={4}
|
|
>
|
|
<Typography variant={TYPOGRAPHY.H4}>
|
|
{t('seedPhraseWriteDownDetails')}
|
|
</Typography>
|
|
</Box>
|
|
<Box
|
|
justifyContent={JUSTIFY_CONTENT.SPACE_EVENLY}
|
|
textAlign={TEXT_ALIGN.LEFT}
|
|
marginBottom={4}
|
|
className="recovery-phrase__tips"
|
|
>
|
|
<Typography variant={TYPOGRAPHY.H4} fontWeight={FONT_WEIGHT.BOLD}>
|
|
{t('tips')}:
|
|
</Typography>
|
|
<ul>
|
|
<li>
|
|
<Typography variant={TYPOGRAPHY.H4}>
|
|
{t('seedPhraseIntroSidebarBulletFour')}
|
|
</Typography>
|
|
</li>
|
|
<li>
|
|
<Typography variant={TYPOGRAPHY.H4}>
|
|
{t('seedPhraseIntroSidebarBulletTwo')}
|
|
</Typography>
|
|
</li>
|
|
<li>
|
|
<Typography variant={TYPOGRAPHY.H4}>
|
|
{t('seedPhraseIntroSidebarBulletThree')}
|
|
</Typography>
|
|
</li>
|
|
<li>
|
|
<Typography variant={TYPOGRAPHY.H4}>
|
|
{t('seedPhraseIntroSidebarBulletFour')}
|
|
</Typography>
|
|
</li>
|
|
</ul>
|
|
</Box>
|
|
<RecoveryPhraseChips
|
|
seedPhrase={seedPhrase.split(' ')}
|
|
seedPhraseRevealed={seedPhraseRevealed}
|
|
/>
|
|
<div className="recovery-phrase__footer">
|
|
{seedPhraseRevealed ? (
|
|
<div className="recovery-phrase__footer--copy">
|
|
<Button
|
|
onClick={() => {
|
|
handleCopy(seedPhrase);
|
|
}}
|
|
icon={copied ? null : <Copy size={20} color="#3098DC" />}
|
|
className="recovery-phrase__footer--copy--button"
|
|
>
|
|
{copied ? t('copiedExclamation') : t('copyToClipboard')}
|
|
</Button>
|
|
<Button
|
|
rounded
|
|
type="primary"
|
|
className="recovery-phrase__footer--button"
|
|
onClick={() => {
|
|
history.push(INITIALIZE_CONFIRM_SEED_PHRASE_ROUTE);
|
|
}}
|
|
>
|
|
{t('next')}
|
|
</Button>
|
|
</div>
|
|
) : (
|
|
<Button
|
|
rounded
|
|
type="primary"
|
|
className="recovery-phrase__footer--button"
|
|
onClick={() => {
|
|
setSeedPhraseRevealed(true);
|
|
}}
|
|
>
|
|
{t('revealSeedWords')}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
RecoveryPhrase.propTypes = {
|
|
seedPhrase: PropTypes.string,
|
|
};
|