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.
101 lines
2.8 KiB
101 lines
2.8 KiB
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {
|
|
INITIALIZE_SELECT_ACTION_ROUTE,
|
|
INITIALIZE_END_OF_FLOW_ROUTE,
|
|
} from '../../../../helpers/constants/routes';
|
|
import CreateNewVault from '../../../../components/app/create-new-vault';
|
|
import { EVENT } from '../../../../../shared/constants/metametrics';
|
|
|
|
export default class ImportWithSeedPhrase extends PureComponent {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
trackEvent: PropTypes.func,
|
|
};
|
|
|
|
static propTypes = {
|
|
history: PropTypes.object,
|
|
onSubmit: PropTypes.func.isRequired,
|
|
setSeedPhraseBackedUp: PropTypes.func,
|
|
initializeThreeBox: PropTypes.func,
|
|
};
|
|
|
|
UNSAFE_componentWillMount() {
|
|
this._onBeforeUnload = () =>
|
|
this.context.trackEvent({
|
|
category: EVENT.CATEGORIES.ONBOARDING,
|
|
event: 'Close window on import screen',
|
|
properties: {
|
|
action: 'Import Seed Phrase',
|
|
legacy_event: true,
|
|
errorLabel: 'Seed Phrase Error',
|
|
errorMessage: this.state.seedPhraseError,
|
|
},
|
|
});
|
|
window.addEventListener('beforeunload', this._onBeforeUnload);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
window.removeEventListener('beforeunload', this._onBeforeUnload);
|
|
}
|
|
|
|
handleImport = async (password, seedPhrase) => {
|
|
const {
|
|
history,
|
|
onSubmit,
|
|
setSeedPhraseBackedUp,
|
|
initializeThreeBox,
|
|
} = this.props;
|
|
|
|
await onSubmit(password, seedPhrase);
|
|
this.context.trackEvent({
|
|
category: EVENT.CATEGORIES.ONBOARDING,
|
|
event: 'Import Complete',
|
|
properties: {
|
|
action: 'Import Seed Phrase',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
|
|
await setSeedPhraseBackedUp(true);
|
|
initializeThreeBox();
|
|
history.replace(INITIALIZE_END_OF_FLOW_ROUTE);
|
|
};
|
|
|
|
render() {
|
|
const { t } = this.context;
|
|
|
|
return (
|
|
<div className="first-time-flow__import">
|
|
<div className="first-time-flow__create-back">
|
|
<a
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
this.context.trackEvent({
|
|
category: EVENT.CATEGORIES.ONBOARDING,
|
|
event: 'Go Back from Onboarding Import',
|
|
properties: {
|
|
action: 'Import Seed Phrase',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
this.props.history.push(INITIALIZE_SELECT_ACTION_ROUTE);
|
|
}}
|
|
href="#"
|
|
>
|
|
{`< ${t('back')}`}
|
|
</a>
|
|
</div>
|
|
<div className="first-time-flow__header">
|
|
{t('importAccountSeedPhrase')}
|
|
</div>
|
|
<div className="first-time-flow__text-block">{t('secretPhrase')}</div>
|
|
<CreateNewVault
|
|
includeTerms
|
|
onSubmit={this.handleImport}
|
|
submitText={t('import')}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|