// Copyright 2015, 2016 Ethcore (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 React, { Component, PropTypes } from 'react'; import { observer } from 'mobx-react'; import DoneIcon from 'material-ui/svg-icons/action/done-all'; import CancelIcon from 'material-ui/svg-icons/content/clear'; import { Button, IdentityIcon, Modal } from '~/ui'; import RadioButtons from '~/ui/Form/RadioButtons'; import { nullableProptype } from '~/util/proptypes'; const methods = { sms: { label: 'SMS Verification', key: 0, value: 'sms' }, email: { label: 'E-mail Verification', key: 1, value: 'email' } }; import { LOADING, QUERY_DATA, POSTING_REQUEST, POSTED_REQUEST, REQUESTING_CODE, QUERY_CODE, POSTING_CONFIRMATION, POSTED_CONFIRMATION, DONE } from './store'; import GatherData from './GatherData'; import SendRequest from './SendRequest'; import QueryCode from './QueryCode'; import SendConfirmation from './SendConfirmation'; import Done from './Done'; @observer export default class Verification extends Component { static propTypes = { store: nullableProptype(PropTypes.object.isRequired), account: PropTypes.string.isRequired, onSelectMethod: PropTypes.func.isRequired, onClose: PropTypes.func.isRequired } static phases = { // mapping (store steps -> steps) [LOADING]: 1, [QUERY_DATA]: 2, [POSTING_REQUEST]: 3, [POSTED_REQUEST]: 3, [REQUESTING_CODE]: 3, [QUERY_CODE]: 4, [POSTING_CONFIRMATION]: 5, [POSTED_CONFIRMATION]: 5, [DONE]: 6 } state = { method: 'sms' }; render () { const { store } = this.props; let phase = 0; let error = false; let isStepValid = true; if (store) { phase = Verification.phases[store.step]; error = store.error; isStepValid = store.isStepValid; } return ( { this.renderStep(phase, error) } ); } renderDialogActions (phase, error, isStepValid) { const { store, account, onClose } = this.props; const cancel = (