2018-07-05 19:09:55 +02:00
|
|
|
import React, { Component } from 'react'
|
|
|
|
import PropTypes from 'prop-types'
|
2019-12-03 21:50:55 +01:00
|
|
|
import { connect } from 'react-redux'
|
2018-07-05 19:09:55 +02:00
|
|
|
import {
|
|
|
|
createNewVaultAndRestore,
|
|
|
|
unMarkPasswordForgotten,
|
2019-09-26 09:24:52 +02:00
|
|
|
initializeThreeBox,
|
2019-03-22 00:03:30 +01:00
|
|
|
} from '../../store/actions'
|
|
|
|
import { DEFAULT_ROUTE } from '../../helpers/constants/routes'
|
|
|
|
import TextField from '../../components/ui/text-field'
|
|
|
|
import Button from '../../components/ui/button'
|
2018-07-05 19:09:55 +02:00
|
|
|
|
|
|
|
class RestoreVaultPage extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
t: PropTypes.func,
|
2019-03-05 16:45:01 +01:00
|
|
|
metricsEvent: PropTypes.func,
|
2017-11-29 05:24:35 +01:00
|
|
|
}
|
|
|
|
|
2018-07-05 19:09:55 +02:00
|
|
|
static propTypes = {
|
|
|
|
createNewVaultAndRestore: PropTypes.func.isRequired,
|
|
|
|
leaveImportSeedScreenState: PropTypes.func,
|
|
|
|
history: PropTypes.object,
|
|
|
|
isLoading: PropTypes.bool,
|
2019-09-26 09:24:52 +02:00
|
|
|
initializeThreeBox: PropTypes.func,
|
2020-01-07 21:10:44 +01:00
|
|
|
}
|
2018-07-05 19:09:55 +02:00
|
|
|
|
|
|
|
state = {
|
|
|
|
seedPhrase: '',
|
2020-09-02 17:45:09 +02:00
|
|
|
showSeedPhrase: false,
|
2018-07-05 19:09:55 +02:00
|
|
|
password: '',
|
|
|
|
confirmPassword: '',
|
|
|
|
seedPhraseError: null,
|
|
|
|
passwordError: null,
|
|
|
|
confirmPasswordError: null,
|
2017-11-29 05:24:35 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
parseSeedPhrase = (seedPhrase) =>
|
|
|
|
(seedPhrase || '').trim().toLowerCase().match(/\w+/gu)?.join(' ') || ''
|
2018-03-30 23:51:11 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
handleSeedPhraseChange(seedPhrase) {
|
2018-07-05 19:09:55 +02:00
|
|
|
let seedPhraseError = null
|
|
|
|
|
2020-06-03 19:07:07 +02:00
|
|
|
const wordCount = this.parseSeedPhrase(seedPhrase).split(/\s/u).length
|
2020-11-03 00:41:28 +01:00
|
|
|
if (
|
|
|
|
seedPhrase &&
|
|
|
|
(wordCount % 3 !== 0 || wordCount < 12 || wordCount > 24)
|
|
|
|
) {
|
2018-07-05 19:09:55 +02:00
|
|
|
seedPhraseError = this.context.t('seedPhraseReq')
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ seedPhrase, seedPhraseError })
|
|
|
|
}
|
2017-11-29 05:24:35 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
handlePasswordChange(password) {
|
2018-07-05 19:09:55 +02:00
|
|
|
const { confirmPassword } = this.state
|
|
|
|
let confirmPasswordError = null
|
|
|
|
let passwordError = null
|
2017-11-29 05:24:35 +01:00
|
|
|
|
2018-07-05 19:09:55 +02:00
|
|
|
if (password && password.length < 8) {
|
|
|
|
passwordError = this.context.t('passwordNotLongEnough')
|
2017-11-29 05:24:35 +01:00
|
|
|
}
|
|
|
|
|
2018-07-05 19:09:55 +02:00
|
|
|
if (confirmPassword && password !== confirmPassword) {
|
|
|
|
confirmPasswordError = this.context.t('passwordsDontMatch')
|
2017-11-29 05:24:35 +01:00
|
|
|
}
|
|
|
|
|
2018-07-05 19:09:55 +02:00
|
|
|
this.setState({ password, passwordError, confirmPasswordError })
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
handleConfirmPasswordChange(confirmPassword) {
|
2018-07-05 19:09:55 +02:00
|
|
|
const { password } = this.state
|
|
|
|
let confirmPasswordError = null
|
|
|
|
|
|
|
|
if (password !== confirmPassword) {
|
|
|
|
confirmPasswordError = this.context.t('passwordsDontMatch')
|
2017-11-29 05:24:35 +01:00
|
|
|
}
|
|
|
|
|
2018-07-05 19:09:55 +02:00
|
|
|
this.setState({ confirmPassword, confirmPasswordError })
|
|
|
|
}
|
|
|
|
|
|
|
|
onClick = () => {
|
|
|
|
const { password, seedPhrase } = this.state
|
|
|
|
const {
|
2020-08-18 18:36:45 +02:00
|
|
|
// eslint-disable-next-line no-shadow
|
2018-07-05 19:09:55 +02:00
|
|
|
createNewVaultAndRestore,
|
|
|
|
leaveImportSeedScreenState,
|
|
|
|
history,
|
2020-08-18 18:36:45 +02:00
|
|
|
// eslint-disable-next-line no-shadow
|
2019-09-26 09:24:52 +02:00
|
|
|
initializeThreeBox,
|
2018-07-05 19:09:55 +02:00
|
|
|
} = this.props
|
|
|
|
|
|
|
|
leaveImportSeedScreenState()
|
2020-11-03 00:41:28 +01:00
|
|
|
createNewVaultAndRestore(password, this.parseSeedPhrase(seedPhrase)).then(
|
|
|
|
() => {
|
2019-03-05 16:45:01 +01:00
|
|
|
this.context.metricsEvent({
|
|
|
|
eventOpts: {
|
|
|
|
category: 'Retention',
|
|
|
|
action: 'userEntersSeedPhrase',
|
|
|
|
name: 'onboardingRestoredVault',
|
|
|
|
},
|
|
|
|
})
|
2019-09-26 09:24:52 +02:00
|
|
|
initializeThreeBox()
|
2019-03-05 16:45:01 +01:00
|
|
|
history.push(DEFAULT_ROUTE)
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
|
|
|
)
|
2018-07-05 19:09:55 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
hasError() {
|
2018-07-05 19:09:55 +02:00
|
|
|
const { passwordError, confirmPasswordError, seedPhraseError } = this.state
|
|
|
|
return passwordError || confirmPasswordError || seedPhraseError
|
2017-11-29 05:24:35 +01:00
|
|
|
}
|
|
|
|
|
2020-09-02 17:45:09 +02:00
|
|
|
toggleShowSeedPhrase = () => {
|
|
|
|
this.setState(({ showSeedPhrase }) => ({
|
|
|
|
showSeedPhrase: !showSeedPhrase,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
render() {
|
2018-07-05 19:09:55 +02:00
|
|
|
const {
|
|
|
|
seedPhrase,
|
2020-09-02 17:45:09 +02:00
|
|
|
showSeedPhrase,
|
2018-07-05 19:09:55 +02:00
|
|
|
password,
|
|
|
|
confirmPassword,
|
|
|
|
seedPhraseError,
|
|
|
|
passwordError,
|
|
|
|
confirmPasswordError,
|
|
|
|
} = this.state
|
|
|
|
const { t } = this.context
|
|
|
|
const { isLoading } = this.props
|
2020-11-03 00:41:28 +01:00
|
|
|
const disabled =
|
|
|
|
!seedPhrase ||
|
|
|
|
!password ||
|
|
|
|
!confirmPassword ||
|
|
|
|
isLoading ||
|
|
|
|
this.hasError()
|
2017-11-29 05:24:35 +01:00
|
|
|
|
|
|
|
return (
|
2018-07-05 19:09:55 +02:00
|
|
|
<div className="first-view-main-wrapper">
|
|
|
|
<div className="first-view-main">
|
|
|
|
<div className="import-account">
|
|
|
|
<a
|
|
|
|
className="import-account__back-button"
|
2020-02-15 21:34:12 +01:00
|
|
|
onClick={(e) => {
|
2018-07-05 19:09:55 +02:00
|
|
|
e.preventDefault()
|
2019-06-27 17:26:25 +02:00
|
|
|
this.props.leaveImportSeedScreenState()
|
2018-07-05 19:09:55 +02:00
|
|
|
this.props.history.goBack()
|
|
|
|
}}
|
|
|
|
href="#"
|
|
|
|
>
|
|
|
|
{`< Back`}
|
|
|
|
</a>
|
|
|
|
<div className="import-account__title">
|
2020-11-03 00:41:28 +01:00
|
|
|
{this.context.t('restoreAccountWithSeed')}
|
2018-07-05 19:09:55 +02:00
|
|
|
</div>
|
|
|
|
<div className="import-account__selector-label">
|
2020-11-03 00:41:28 +01:00
|
|
|
{this.context.t('secretPhrase')}
|
2018-07-05 19:09:55 +02:00
|
|
|
</div>
|
|
|
|
<div className="import-account__input-wrapper">
|
|
|
|
<label className="import-account__input-label">Wallet Seed</label>
|
2020-09-02 17:45:09 +02:00
|
|
|
{showSeedPhrase ? (
|
|
|
|
<textarea
|
|
|
|
className="import-account__secret-phrase"
|
|
|
|
onChange={(e) => this.handleSeedPhraseChange(e.target.value)}
|
|
|
|
value={seedPhrase}
|
2020-11-03 19:40:12 +01:00
|
|
|
autoFocus
|
2020-09-02 17:45:09 +02:00
|
|
|
placeholder={this.context.t('separateEachWord')}
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<TextField
|
|
|
|
className="import-account__textarea import-account__seedphrase"
|
|
|
|
type="password"
|
|
|
|
onChange={(e) => this.handleSeedPhraseChange(e.target.value)}
|
|
|
|
value={seedPhrase}
|
2020-11-03 19:40:12 +01:00
|
|
|
autoFocus
|
2020-09-02 17:45:09 +02:00
|
|
|
placeholder={t('seedPhrasePlaceholderPaste')}
|
|
|
|
/>
|
|
|
|
)}
|
2020-11-03 00:41:28 +01:00
|
|
|
<span className="error">{seedPhraseError}</span>
|
|
|
|
<div
|
|
|
|
className="import-account__checkbox-container"
|
|
|
|
onClick={this.toggleShowSeedPhrase}
|
|
|
|
>
|
2020-09-02 17:45:09 +02:00
|
|
|
<div
|
|
|
|
className="import-account__checkbox"
|
|
|
|
tabIndex="0"
|
2020-11-03 19:40:12 +01:00
|
|
|
id="seed-checkbox"
|
2020-09-02 17:45:09 +02:00
|
|
|
role="checkbox"
|
|
|
|
onKeyPress={this.toggleShowSeedPhrase}
|
|
|
|
aria-checked={showSeedPhrase}
|
|
|
|
aria-labelledby="ftf-chk1-label"
|
|
|
|
>
|
|
|
|
{showSeedPhrase ? <i className="fa fa-check fa-2x" /> : null}
|
|
|
|
</div>
|
2020-11-03 19:40:12 +01:00
|
|
|
<label
|
|
|
|
htmlFor="seed-checkbox"
|
2020-11-03 00:41:28 +01:00
|
|
|
id="ftf-chk1-label"
|
|
|
|
className="import-account__checkbox-label"
|
|
|
|
>
|
|
|
|
{t('showSeedPhrase')}
|
2020-11-03 19:40:12 +01:00
|
|
|
</label>
|
2020-09-02 17:45:09 +02:00
|
|
|
</div>
|
2018-07-05 19:09:55 +02:00
|
|
|
</div>
|
|
|
|
<TextField
|
|
|
|
id="password"
|
|
|
|
label={t('newPassword')}
|
|
|
|
type="password"
|
|
|
|
className="first-time-flow__input"
|
|
|
|
value={this.state.password}
|
2020-11-03 00:41:28 +01:00
|
|
|
onChange={(event) =>
|
|
|
|
this.handlePasswordChange(event.target.value)
|
|
|
|
}
|
2018-07-05 19:09:55 +02:00
|
|
|
error={passwordError}
|
|
|
|
autoComplete="new-password"
|
|
|
|
margin="normal"
|
|
|
|
largeLabel
|
|
|
|
/>
|
|
|
|
<TextField
|
|
|
|
id="confirm-password"
|
|
|
|
label={t('confirmPassword')}
|
|
|
|
type="password"
|
|
|
|
className="first-time-flow__input"
|
|
|
|
value={this.state.confirmPassword}
|
2020-11-03 00:41:28 +01:00
|
|
|
onChange={(event) =>
|
|
|
|
this.handleConfirmPasswordChange(event.target.value)
|
|
|
|
}
|
2018-07-05 19:09:55 +02:00
|
|
|
error={confirmPasswordError}
|
|
|
|
autoComplete="confirm-password"
|
|
|
|
margin="normal"
|
|
|
|
largeLabel
|
|
|
|
/>
|
2019-01-23 16:25:34 +01:00
|
|
|
<Button
|
|
|
|
type="first-time"
|
2018-07-05 19:09:55 +02:00
|
|
|
className="first-time-flow__button"
|
|
|
|
onClick={() => !disabled && this.onClick()}
|
|
|
|
disabled={disabled}
|
|
|
|
>
|
|
|
|
{this.context.t('restore')}
|
2019-01-23 16:25:34 +01:00
|
|
|
</Button>
|
2018-07-05 19:09:55 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-29 05:24:35 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-05 19:09:55 +02:00
|
|
|
export default connect(
|
2019-12-08 04:10:47 +01:00
|
|
|
({ appState: { isLoading } }) => ({ isLoading }),
|
2020-02-15 21:34:12 +01:00
|
|
|
(dispatch) => ({
|
2018-07-05 19:09:55 +02:00
|
|
|
leaveImportSeedScreenState: () => {
|
|
|
|
dispatch(unMarkPasswordForgotten())
|
2017-11-29 05:24:35 +01:00
|
|
|
},
|
2020-11-03 00:41:28 +01:00
|
|
|
createNewVaultAndRestore: (pw, seed) =>
|
|
|
|
dispatch(createNewVaultAndRestore(pw, seed)),
|
2019-09-26 09:24:52 +02:00
|
|
|
initializeThreeBox: () => dispatch(initializeThreeBox()),
|
2020-07-14 17:20:41 +02:00
|
|
|
}),
|
2017-11-29 05:24:35 +01:00
|
|
|
)(RestoreVaultPage)
|