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.
144 lines
4.1 KiB
144 lines
4.1 KiB
6 years ago
|
import React, { PureComponent } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
import classnames from 'classnames'
|
||
6 years ago
|
import LockIcon from '../../../../components/ui/lock-icon'
|
||
|
import Button from '../../../../components/ui/button'
|
||
|
import { INITIALIZE_CONFIRM_SEED_PHRASE_ROUTE } from '../../../../helpers/constants/routes'
|
||
|
import { exportAsFile } from '../../../../helpers/utils/util'
|
||
6 years ago
|
|
||
|
export default class RevealSeedPhrase extends PureComponent {
|
||
|
static contextTypes = {
|
||
|
t: PropTypes.func,
|
||
6 years ago
|
metricsEvent: PropTypes.func,
|
||
6 years ago
|
}
|
||
|
|
||
|
static propTypes = {
|
||
|
history: PropTypes.object,
|
||
|
seedPhrase: PropTypes.string,
|
||
|
}
|
||
|
|
||
|
state = {
|
||
|
isShowingSeedPhrase: false,
|
||
|
}
|
||
|
|
||
|
handleExport = () => {
|
||
|
exportAsFile('MetaMask Secret Backup Phrase', this.props.seedPhrase, 'text/plain')
|
||
|
}
|
||
|
|
||
|
handleNext = event => {
|
||
|
event.preventDefault()
|
||
|
const { isShowingSeedPhrase } = this.state
|
||
|
const { history } = this.props
|
||
|
|
||
6 years ago
|
this.context.metricsEvent({
|
||
|
eventOpts: {
|
||
|
category: 'Onboarding',
|
||
|
action: 'Seed Phrase Setup',
|
||
|
name: 'Advance to Verify',
|
||
|
},
|
||
|
})
|
||
|
|
||
6 years ago
|
if (!isShowingSeedPhrase) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
history.push(INITIALIZE_CONFIRM_SEED_PHRASE_ROUTE)
|
||
|
}
|
||
|
|
||
|
renderSecretWordsContainer () {
|
||
|
const { t } = this.context
|
||
|
const { seedPhrase } = this.props
|
||
|
const { isShowingSeedPhrase } = this.state
|
||
|
|
||
|
return (
|
||
|
<div className="reveal-seed-phrase__secret">
|
||
|
<div className={classnames(
|
||
|
'reveal-seed-phrase__secret-words',
|
||
|
{ 'reveal-seed-phrase__secret-words--hidden': !isShowingSeedPhrase }
|
||
|
)}>
|
||
|
{ seedPhrase }
|
||
|
</div>
|
||
|
{
|
||
|
!isShowingSeedPhrase && (
|
||
|
<div
|
||
|
className="reveal-seed-phrase__secret-blocker"
|
||
6 years ago
|
onClick={() => {
|
||
|
this.context.metricsEvent({
|
||
|
eventOpts: {
|
||
|
category: 'Onboarding',
|
||
|
action: 'Seed Phrase Setup',
|
||
|
name: 'Revealed Words',
|
||
|
},
|
||
|
})
|
||
|
this.setState({ isShowingSeedPhrase: true })
|
||
|
}}
|
||
6 years ago
|
>
|
||
|
<LockIcon
|
||
|
width="28px"
|
||
|
height="35px"
|
||
|
fill="#FFFFFF"
|
||
|
/>
|
||
|
<div className="reveal-seed-phrase__reveal-button">
|
||
|
{ t('clickToRevealSeed') }
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { t } = this.context
|
||
|
const { isShowingSeedPhrase } = this.state
|
||
|
|
||
|
return (
|
||
6 years ago
|
<div className="reveal-seed-phrase">
|
||
6 years ago
|
<div className="seed-phrase__sections">
|
||
|
<div className="seed-phrase__main">
|
||
|
<div className="first-time-flow__header">
|
||
|
{ t('secretBackupPhrase') }
|
||
|
</div>
|
||
|
<div className="first-time-flow__text-block">
|
||
|
{ t('secretBackupPhraseDescription') }
|
||
|
</div>
|
||
|
<div className="first-time-flow__text-block">
|
||
|
{ t('secretBackupPhraseWarning') }
|
||
|
</div>
|
||
|
{ this.renderSecretWordsContainer() }
|
||
|
</div>
|
||
|
<div className="seed-phrase__side">
|
||
|
<div className="first-time-flow__text-block">
|
||
|
{ `${t('tips')}:` }
|
||
|
</div>
|
||
|
<div className="first-time-flow__text-block">
|
||
|
{ t('storePhrase') }
|
||
|
</div>
|
||
|
<div className="first-time-flow__text-block">
|
||
|
{ t('writePhrase') }
|
||
|
</div>
|
||
|
<div className="first-time-flow__text-block">
|
||
|
{ t('memorizePhrase') }
|
||
|
</div>
|
||
|
<div className="first-time-flow__text-block">
|
||
|
<a
|
||
|
className="reveal-seed-phrase__export-text"
|
||
|
onClick={this.handleExport}>
|
||
|
{ t('downloadSecretBackup') }
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<Button
|
||
6 years ago
|
type="confirm"
|
||
6 years ago
|
className="first-time-flow__button"
|
||
|
onClick={this.handleNext}
|
||
|
disabled={!isShowingSeedPhrase}
|
||
|
>
|
||
|
{ t('next') }
|
||
|
</Button>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|