mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
31175625b4
* Remove ui/app/keychains/ * Remove ui/app/img/ (unused images) * Move conversion-util to helpers/utils/ * Move token-util to helpers/utils/ * Move /helpers/*.js inside /helpers/utils/ * Move util tests inside /helpers/utils/ * Renameand move confirm-transaction/util.js to helpers/utils/ * Move higher-order-components to helpers/higher-order-components/ * Move infura-conversion.json to helpers/constants/ * Move all utility functions to helpers/utils/ * Move pages directory to top-level * Move all constants to helpers/constants/ * Move metametrics inside helpers/ * Move app and root inside pages/ * Move routes inside helpers/ * Re-organize ducks/ * Move reducers to ducks/ * Move selectors inside selectors/ * Move test out of test folder * Move action, reducer, store inside store/ * Move ui components inside ui/ * Move UI components inside ui/ * Move connected components inside components/app/ * Move i18n-helper inside helpers/ * Fix unit tests * Fix unit test * Move pages components * Rename routes component * Move reducers to ducks/index * Fix bad path in unit test
94 lines
3.0 KiB
JavaScript
94 lines
3.0 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Button from '../../../components/ui/button'
|
|
import { DEFAULT_ROUTE } from '../../../helpers/constants/routes'
|
|
|
|
export default class EndOfFlowScreen extends PureComponent {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
metricsEvent: PropTypes.func,
|
|
}
|
|
|
|
static propTypes = {
|
|
history: PropTypes.object,
|
|
completeOnboarding: PropTypes.func,
|
|
completionMetaMetricsName: PropTypes.string,
|
|
}
|
|
|
|
render () {
|
|
const { t } = this.context
|
|
const { history, completeOnboarding, completionMetaMetricsName } = this.props
|
|
|
|
return (
|
|
<div className="end-of-flow">
|
|
<div className="app-header__logo-container">
|
|
<img
|
|
className="app-header__metafox-logo app-header__metafox-logo--horizontal"
|
|
src="/images/logo/metamask-logo-horizontal.svg"
|
|
height={30}
|
|
/>
|
|
<img
|
|
className="app-header__metafox-logo app-header__metafox-logo--icon"
|
|
src="/images/logo/metamask-fox.svg"
|
|
height={42}
|
|
width={42}
|
|
/>
|
|
</div>
|
|
<div className="end-of-flow__emoji">🎉</div>
|
|
<div className="first-time-flow__header">
|
|
{ t('congratulations') }
|
|
</div>
|
|
<div className="first-time-flow__text-block end-of-flow__text-1">
|
|
{ t('endOfFlowMessage1') }
|
|
</div>
|
|
<div className="first-time-flow__text-block end-of-flow__text-2">
|
|
{ t('endOfFlowMessage2') }
|
|
</div>
|
|
<div className="end-of-flow__text-3">
|
|
{ '• ' + t('endOfFlowMessage3') }
|
|
</div>
|
|
<div className="end-of-flow__text-3">
|
|
{ '• ' + t('endOfFlowMessage4') }
|
|
</div>
|
|
<div className="end-of-flow__text-3">
|
|
{ '• ' + t('endOfFlowMessage5') }
|
|
</div>
|
|
<div className="end-of-flow__text-3">
|
|
{ '• ' + t('endOfFlowMessage6') }
|
|
</div>
|
|
<div className="end-of-flow__text-3">
|
|
{ '• ' + t('endOfFlowMessage7') }
|
|
</div>
|
|
<div className="first-time-flow__text-block end-of-flow__text-4">
|
|
*MetaMask cannot recover your seedphrase. <a
|
|
href="https://metamask.zendesk.com/hc/en-us/articles/360015489591-Basic-Safety-Tips"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<span className="first-time-flow__link-text">
|
|
Learn More
|
|
</span>
|
|
</a>.
|
|
</div>
|
|
<Button
|
|
type="confirm"
|
|
className="first-time-flow__button"
|
|
onClick={async () => {
|
|
await completeOnboarding()
|
|
this.context.metricsEvent({
|
|
eventOpts: {
|
|
category: 'Onboarding',
|
|
action: 'Onboarding Complete',
|
|
name: completionMetaMetricsName,
|
|
},
|
|
})
|
|
history.push(DEFAULT_ROUTE)
|
|
}}
|
|
>
|
|
{ 'All Done' }
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
}
|