1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-26 05:13:37 +02:00
metamask-extension/ui/app/components/pages/first-time-flow/create-password/unique-image/unique-image.component.js
Alexander Tseung fba17d77de Refactor first time flow, remove seed phrase from state (#5994)
* Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state

* Fix linting and tests

* Fix translations, initialization notice routing

* Fix drizzle tests

* Fix e2e tests

* Fix integration tests

* Fix styling

* Fix migration naming from 030 to 031

* Open extension in browser when user has not completed onboarding
2019-01-23 11:55:34 -03:30

54 lines
1.4 KiB
JavaScript

import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import Identicon from '../../../../identicon'
import Breadcrumbs from '../../../../breadcrumbs'
import Button from '../../../../button'
import { INITIALIZE_NOTICE_ROUTE } from '../../../../../routes'
export default class UniqueImageScreen extends PureComponent {
static contextTypes = {
t: PropTypes.func,
}
static propTypes = {
address: PropTypes.string,
history: PropTypes.object,
}
render () {
const { t } = this.context
const { address, history } = this.props
return (
<div>
<Identicon
className="first-time-flow__unique-image"
address={address}
diameter={70}
/>
<div className="first-time-flow__header">
{ t('yourUniqueAccountImage') }
</div>
<div className="first-time-flow__text-block">
{ t('yourUniqueAccountImageDescription1') }
</div>
<div className="first-time-flow__text-block">
{ t('yourUniqueAccountImageDescription2') }
</div>
<Button
type="first-time"
className="first-time-flow__button"
onClick={() => history.push(INITIALIZE_NOTICE_ROUTE)}
>
{ t('next') }
</Button>
<Breadcrumbs
className="first-time-flow__breadcrumbs"
total={3}
currentIndex={0}
/>
</div>
)
}
}