// Copyright 2015-2017 Parity Technologies (UK) Ltd. // This file is part of Parity. // Parity is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Parity is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Parity. If not, see . import { observer } from 'mobx-react'; import React, { Component, PropTypes } from 'react'; import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import { createIdentityImg } from '~/api/util/identity'; import { newError } from '~/redux/actions'; import { Button, Modal } from '~/ui'; import { CancelIcon, CheckIcon, DoneIcon, NextIcon, PrevIcon, PrintIcon } from '~/ui/Icons'; import ParityLogo from '~/../assets/images/parity-logo-black-no-text.svg'; import AccountDetails from './AccountDetails'; import AccountDetailsGeth from './AccountDetailsGeth'; import CreationType from './CreationType'; import NewAccount from './NewAccount'; import NewGeth from './NewGeth'; import NewImport from './NewImport'; import RawKey from './RawKey'; import RecoveryPhrase from './RecoveryPhrase'; import Store, { STAGE_CREATE, STAGE_INFO, STAGE_SELECT_TYPE } from './store'; import print from './print'; import recoveryPage from './recoveryPage.ejs'; const TITLES = { type: ( ), create: ( ), info: ( ), import: ( ) }; const STAGE_NAMES = [TITLES.type, TITLES.create, TITLES.info]; const STAGE_IMPORT = [TITLES.type, TITLES.import, TITLES.info]; @observer class CreateAccount extends Component { static contextTypes = { api: PropTypes.object.isRequired } static propTypes = { accounts: PropTypes.object.isRequired, newError: PropTypes.func.isRequired, onClose: PropTypes.func, onUpdate: PropTypes.func } store = new Store(this.context.api, this.props.accounts); render () { const { createType, stage } = this.store; return ( { this.renderPage() } ); } renderPage () { const { createType, stage } = this.store; switch (stage) { case STAGE_SELECT_TYPE: return ( ); case STAGE_CREATE: if (createType === 'fromNew') { return ( ); } if (createType === 'fromGeth') { return ( ); } if (createType === 'fromPhrase') { return ( ); } if (createType === 'fromRaw') { return ( ); } return ( ); case STAGE_INFO: if (createType === 'fromGeth') { return ( ); } return ( ); } } renderDialogActions () { const { createType, canCreate, isBusy, stage } = this.store; const cancelBtn = (