AccountRewritePhrase.js 2.16 KiB
Newer Older
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
// This file is part of Parity.
//
Amaury Martiny's avatar
Amaury Martiny committed
// SPDX-License-Identifier: BSD-3-Clause
import React, { Component } from 'react';
import { FormField } from 'fether-ui';
import { inject, observer } from 'mobx-react';

Amaury Martiny's avatar
Amaury Martiny committed
import CreateAccountContainer from '../CreateAccountContainer';
@inject('createAccountStore')
@observer
class AccountRewritePhrase extends Component {
  state = {
    value: ''
  };

  handleChange = ({ target: { value } }) => this.setState({ value });

  handleNextStep = () => {
    const {
      history,
      location: { pathname }
    } = this.props;
    const currentStep = pathname.slice(-1);
    history.push(`/accounts/new/${+currentStep + 1}`);
  };

Amaury Martiny's avatar
Amaury Martiny committed
  handleSavePhrase = () => {
    const {
      createAccountStore: { setPhrase }
    } = this.props;
Amaury Martiny's avatar
Amaury Martiny committed
    const { value } = this.state;
    setPhrase(value).then(this.handleNextStep);
Amaury Martiny's avatar
Amaury Martiny committed
  };

Amaury Martiny's avatar
Amaury Martiny committed
  render () {
    const { value } = this.state;

    return (
Amaury Martiny's avatar
Amaury Martiny committed
      <CreateAccountContainer>
        <div className='text'>
          <p>
            Type your secret phrase to confirm that you wrote it down correctly:
          </p>
        </div>
Amaury Martiny's avatar
Amaury Martiny committed
        <FormField
          input={
            <textarea onChange={this.handleChange} required value={value} />
          }
          label='Recovery phrase'
        />

        <nav className='form-nav'>{this.renderButton()}</nav>
      </CreateAccountContainer>
Amaury Martiny's avatar
Amaury Martiny committed

  renderButton = () => {
    const {
      createAccountStore: { isImport, phrase }
    } = this.props;
Amaury Martiny's avatar
Amaury Martiny committed
    const { value } = this.state;

    // If we are creating a new account, the button just checks the phrase has
    // been correctly written by the user.
    if (!isImport) {
      return (
        <button
          className='button'
          disabled={value !== phrase}
          onClick={this.handleNextStep}
        >
          Next
        </button>
      );
Amaury Martiny's avatar
Amaury Martiny committed
    }

    // If we are importing an existing account, the button sets the phrase
    return (
      <button
        className='button'
        onClick={this.handleSavePhrase}
        disabled={!value.length}
      >
Amaury Martiny's avatar
Amaury Martiny committed
        Next
      </button>
    );
  };
export default AccountRewritePhrase;