// 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 } from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import { createIdentityImg } from '@parity/api/util/identity'; import { newError } from '@parity/shared/redux/actions'; import Button from '@parity/ui/Button'; import Portal from '@parity/ui/Portal'; import { CheckIcon, DoneIcon, NextIcon, PrintIcon, ReplayIcon } from '@parity/ui/Icons'; import ParityLogo from '@parity/shared/assets/images/parity-logo-black-no-text.svg'; import { NewAccount, AccountDetails } from '@parity/dapp-accounts/src/CreateAccount'; import print from '@parity/dapp-accounts/src/CreateAccount/print'; import recoveryPage from '@parity/dapp-accounts/src/CreateAccount/recoveryPage.ejs'; import CreateStore from '@parity/dapp-accounts/src/CreateAccount/store'; import Completed from './Completed'; import TnC from './TnC'; import Welcome from './Welcome'; const STAGE_NAMES = [ , , , , , ]; const BUTTON_LABEL_NEXT = ( ); @observer class FirstRun extends Component { static contextTypes = { api: PropTypes.object.isRequired } static propTypes = { hasAccounts: PropTypes.bool.isRequired, newError: PropTypes.func.isRequired, onClose: PropTypes.func.isRequired, visible: PropTypes.bool.isRequired } createStore = new CreateStore(this.context.api, {}, true, false); state = { stage: 0, hasAcceptedTnc: false } render () { const { visible } = this.props; const { stage } = this.state; if (!visible) { return null; } return ( { this.renderStage() } ); } renderStage () { const { stage, hasAcceptedTnc } = this.state; switch (stage) { case 0: return ( ); case 1: return ( ); case 2: return ( ); case 3: return ( ); case 4: return ( ); case 5: return ( ); } } renderDialogActions () { const { hasAccounts } = this.props; const { stage, hasAcceptedTnc } = this.state; const { canCreate, phraseBackedUpError } = this.createStore; switch (stage) { case 0: return (