AccountImportOptions.js 6.87 KiB
Newer Older
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
YJ's avatar
YJ committed
// This file is part of Parity.
//
// SPDX-License-Identifier: BSD-3-Clause

YJ's avatar
YJ committed
import React, { Component } from 'react';
import { addressShort, Card, Form as FetherForm } from 'fether-ui';
YJ's avatar
YJ committed
import { inject, observer } from 'mobx-react';

import RequireHealthOverlay from '../../../RequireHealthOverlay';
import Scanner from '../../../Scanner';
Axel Chalon's avatar
Axel Chalon committed
import withAccountsInfo from '../../../utils/withAccountsInfo';
import i18n, { packageNS } from '../../../i18n';
Axel Chalon's avatar
Axel Chalon committed
@withAccountsInfo
YJ's avatar
YJ committed
@inject('createAccountStore')
@observer
class AccountImportOptions extends Component {
  state = {
YJ's avatar
YJ committed
    isLoading: false,
    phrase: '',
    importingFromSigner: false
YJ's avatar
YJ committed
  };

  handleNextStep = async () => {
    const {
      history,
YJ's avatar
YJ committed
    } = this.props;
    const currentStep = pathname.slice(-1);
    history.push(`/accounts/new/${+currentStep + 1}`);
  };

  handlePhraseChange = ({ target: { value: phrase } }) => {
    this.setState({ phrase });
YJ's avatar
YJ committed
  };

  handleSubmitPhrase = async () => {
    const phrase = this.state.phrase.trim();
YJ's avatar
YJ committed
    const {
      createAccountStore: { setPhrase }
YJ's avatar
YJ committed
    } = this.props;

    this.setState({ isLoading: true, phrase });
YJ's avatar
YJ committed
    try {
      if (this.hasExistingAddressForImport(createAccountStore.address)) {
        error: i18n.t(
          `${packageNS}:account.import.phrase.error_msg_submit_phrase`
        )
  handleChangeFile = async jsonString => {
    const {
      createAccountStore: { setJsonString }
    } = this.props;
YJ's avatar
YJ committed

    this.setState({ isLoading: true });
    try {
      await setJsonString(jsonString);
      if (this.hasExistingAddressForImport(createAccountStore.address)) {
YJ's avatar
YJ committed
    } catch (error) {
      this.setState({
        error: i18n.t(`${packageNS}:account.import.error_msg_change_json_file`)
      });
YJ's avatar
YJ committed
    }
  };

  handleSignerImported = async ({ address, chainId: chainIdString }) => {
      createAccountStore: { importFromSigner }
    } = this.props;

    if (!address || !chainIdString) {
      this.setState({
        error: i18n.t(
          `${packageNS}:account.import.signer.error_msg_signer_imported`
        )
      });
    const chainId = parseInt(chainIdString);

    if (this.hasExistingAddressForImport(address, chainId)) {
Axel Chalon's avatar
Axel Chalon committed
      return;
    }

Axel Chalon's avatar
Axel Chalon committed
    await importFromSigner({ address, chainId });

    this.handleNextStep();
  };

  handleSignerImport = () => {
    this.setState({
      importingFromSigner: true
    });
Axel Chalon's avatar
Axel Chalon committed

  hasExistingAddressForImport = (addressForImport, chainId) => {
Axel Chalon's avatar
Axel Chalon committed
    const { accountsInfo } = this.props;
    const isExistingAddress = Object.keys(accountsInfo).some(
Axel Chalon's avatar
Axel Chalon committed
      key =>
        key.toLowerCase() === addressForImport.toLowerCase() &&
        (!accountsInfo[key].chainId ||
          !chainId ||
          accountsInfo[key].chainId === chainId)
        error: i18n.t(
          `${packageNS}:account.import.error_msg_existing_address`,
          {
            address: addressShort(addressForImport)
          }
        )
YJ's avatar
YJ committed
  render () {
    const {
      history,
      location: { pathname }
    } = this.props;
    const { error, importingFromSigner, phrase } = this.state;
YJ's avatar
YJ committed
    const currentStep = pathname.slice(-1);

YJ's avatar
YJ committed
    const jsonCard = (
      <Card>
        <div key='createAccount'>
          <div className='text -centered'>
            <p>
              {i18n.t(
                `${packageNS}:account.import.json.label_msg_recover_json`
              )}
            </p>

            <FetherForm.InputFile
              i18n={i18n}
              label={i18n.t(
                `${packageNS}:account.import.json.label_recover_json`
              )}
              onChangeFile={this.handleChangeFile}
              required
            />
          </div>
YJ's avatar
YJ committed
        </div>
      </Card>
    );

    const signerCard = (
      <Card>
        <div key='createAccount'>
          <div className='text -centered'>
            <p>
              {i18n.t(
                `${packageNS}:account.import.signer.label_msg_recover_signer`
              )}
            </p>

            {importingFromSigner ? (
              <Scanner
                onScan={this.handleSignerImported}
                label={i18n.t(
                  `${packageNS}:account.import.signer.label_msg_recover_signer_scan`
                )}
              />
            ) : (
              <button
                className='button -footer'
                onClick={this.handleSignerImport}
              >
                {i18n.t(
                  `${packageNS}:account.import.signer.label_button_recover_signer_scan`
                )}
              </button>
            )}
          </div>
        </div>
      </Card>
YJ's avatar
YJ committed
    );
YJ's avatar
YJ committed

YJ's avatar
YJ committed
    const phraseCard = (
      <Card>
        <div key='importBackup'>
          <div className='text -centered'>
            <p>
              {i18n.t(
                `${packageNS}:account.import.phrase.label_msg_recover_phrase`
              )}
            </p>
            <FetherForm.Field
              as='textarea'
              label={i18n.t(
                `${packageNS}:account.import.phrase.label_recover_phrase`
              )}
              onChange={this.handlePhraseChange}
              required
              phrase={phrase}
            />

            {this.renderButton()}
          </div>
YJ's avatar
YJ committed
        </div>
YJ's avatar
YJ committed
    );
YJ's avatar
YJ committed

    const spacer = <div style={{ height: '0.5rem' }} />;

YJ's avatar
YJ committed
    return (
      <RequireHealthOverlay require='node'>
        <div className='center-md'>
          {!importingFromSigner && jsonCard}
          <p className='error-import-account'>{error}</p>
          {currentStep > 1 && (
            <nav className='form-nav -space-around'>
              <button className='button -back' onClick={history.goBack}>
                {i18n.t(`${packageNS}:navigation.back`)}
YJ's avatar
YJ committed
    );
  }

  renderButton = () => {
    const { isLoading, json, phrase } = this.state;

YJ's avatar
YJ committed
    // If we are importing an existing account, the button goes to the next step
    return (
      <button
        className='button'
        disabled={(!json && !phrase) || isLoading}
        onClick={this.handleSubmitPhrase}
YJ's avatar
YJ committed
      >
        {i18n.t(`${packageNS}:navigation.next`)}
YJ's avatar
YJ committed
      </button>
    );
  };
}

export default AccountImportOptions;