openethereum/js/src/modals/SMSVerification/SMSVerification.js

178 lines
4.7 KiB
JavaScript
Raw Normal View History

2016-11-03 18:01:24 +01:00
// 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 <http://www.gnu.org/licenses/>.
import React, { Component, PropTypes } from 'react';
2016-11-15 16:21:53 +01:00
import { observer } from 'mobx-react';
2016-11-03 18:01:24 +01:00
import ActionDoneAll from 'material-ui/svg-icons/action/done-all';
import ContentClear from 'material-ui/svg-icons/content/clear';
import { Button, IdentityIcon, Modal } from '../../ui';
2016-11-03 18:01:24 +01:00
2016-11-15 16:21:53 +01:00
import VerificationStore from './store';
const {
GATHERING_DATA, GATHERED_DATA,
POSTING_REQUEST, POSTED_REQUEST,
REQUESTING_SMS, REQUESTED_SMS,
POSTING_CONFIRMATION, POSTED_CONFIRMATION,
DONE
} = VerificationStore;
2016-11-03 18:01:24 +01:00
2016-11-07 10:23:42 +01:00
import GatherData from './GatherData';
2016-11-07 15:13:22 +01:00
import SendRequest from './SendRequest';
2016-11-09 16:54:38 +01:00
import QueryCode from './QueryCode';
2016-11-09 17:34:21 +01:00
import SendConfirmation from './SendConfirmation';
import Done from './Done';
2016-11-03 18:01:24 +01:00
2016-11-15 16:21:53 +01:00
@observer
2016-11-03 18:01:24 +01:00
export default class SMSVerification extends Component {
static contextTypes = {
api: PropTypes.object.isRequired
2016-11-03 18:01:24 +01:00
}
static propTypes = {
account: PropTypes.string,
onClose: PropTypes.func.isRequired
}
2016-11-15 16:21:53 +01:00
static uiSteps = { // mapping (store steps -> steps)
[GATHERING_DATA]: 0, [GATHERED_DATA]: 0,
[POSTING_REQUEST]: 1, [POSTED_REQUEST]: 1, [REQUESTING_SMS]: 1,
[REQUESTED_SMS]: 2,
[POSTING_CONFIRMATION]: 3, [POSTED_CONFIRMATION]: 3,
[DONE]: 4
}
2016-11-03 18:01:24 +01:00
state = {
2016-11-15 16:21:53 +01:00
store: null
2016-11-03 18:01:24 +01:00
}
componentDidMount () {
const { api } = this.context;
2016-11-15 16:21:53 +01:00
const { account } = this.props;
2016-11-03 18:01:24 +01:00
2016-11-15 16:21:53 +01:00
const store = new VerificationStore(api, account);
this.setState({ store }, () => {
store.gatherData();
2016-11-03 18:01:24 +01:00
});
}
render () {
2016-11-15 16:21:53 +01:00
const { store } = this.state;
if (!store) return null;
const step = SMSVerification.uiSteps[store.step];
const { error, isStepValid } = store;
2016-11-03 18:13:45 +01:00
2016-11-03 18:01:24 +01:00
return (
<Modal
2016-11-15 16:21:53 +01:00
actions={ this.renderDialogActions(step, error, isStepValid) }
2016-11-03 18:01:24 +01:00
title='verify your account via SMS'
visible scroll
2016-11-03 18:13:45 +01:00
current={ step }
steps={ ['Enter Data', 'Request', 'Enter Code', 'Confirm', 'Done!'] }
waiting={ [ 1, 3 ] }
2016-11-03 18:01:24 +01:00
>
2016-11-15 16:21:53 +01:00
{ this.renderStep(step, error) }
2016-11-03 18:01:24 +01:00
</Modal>
);
}
2016-11-15 16:21:53 +01:00
renderDialogActions (step, error, isStepValid) {
2016-11-03 18:01:24 +01:00
const { onClose, account } = this.props;
2016-11-15 16:21:53 +01:00
const { store } = this.state;
2016-11-03 18:13:45 +01:00
const cancel = (
<Button
key='cancel' label='Cancel'
icon={ <ContentClear /> }
onClick={ onClose }
/>
);
2016-11-15 16:21:53 +01:00
if (error) return (<div>{ cancel }</div>);
2016-11-03 18:13:45 +01:00
if (step === 4) {
2016-11-03 18:13:45 +01:00
return (
<div>
{ cancel }
<Button
key='done' label='Done'
2016-11-15 16:21:53 +01:00
disabled={ !isStepValid }
2016-11-03 18:13:45 +01:00
icon={ <ActionDoneAll /> }
onClick={ onClose }
/>
</div>
);
}
2016-11-03 18:01:24 +01:00
2016-11-15 16:21:53 +01:00
let action;
if (step === 3) {
action = store.done;
} else if (step === 2) {
action = store.sendConfirmation;
} else if (step === 1) {
action = store.queryCode;
} else if (step === 0) {
action = store.sendRequest;
}
2016-11-03 18:01:24 +01:00
return (
<div>
2016-11-03 18:13:45 +01:00
{ cancel }
2016-11-03 18:01:24 +01:00
<Button
2016-11-03 18:13:45 +01:00
key='next' label='Next'
2016-11-15 16:21:53 +01:00
disabled={ !isStepValid }
2016-11-03 18:13:45 +01:00
icon={ <IdentityIcon address={ account } button /> }
2016-11-15 16:21:53 +01:00
onClick={ action }
2016-11-03 18:01:24 +01:00
/>
</div>
);
}
2016-11-03 18:13:45 +01:00
2016-11-15 16:21:53 +01:00
renderStep (step, error) {
if (error) return (<p>{ error }</p>);
const {
fee, isNumberValid, isVerified, hasRequested,
requestTx, isCodeValid, confirmationTx,
setNumber, setConsentGiven, setCode
} = this.state.store;
2016-11-07 15:13:22 +01:00
if (step === 4) {
2016-11-15 16:21:53 +01:00
return (<Done />);
2016-11-03 18:13:45 +01:00
}
2016-11-15 16:21:53 +01:00
if (step === 3) {
return (<SendConfirmation step={ step } tx={ confirmationTx } />);
}
if (step === 2) {
return (<QueryCode fee={ fee } isCodeValid={ isCodeValid } setCode={ setCode } />);
}
if (step === 1) {
return (<SendRequest step={ step } tx={ requestTx } />);
}
if (step === 0) {
const { setNumber, setConsentGiven } = this.state.store;
return (
<GatherData
fee={ fee } isNumberValid={ isNumberValid }
isVerified={ isVerified } hasRequested={ hasRequested }
setNumber={ setNumber } setConsentGiven={ setConsentGiven }
/>
);
}
2016-11-15 16:21:53 +01:00
return null;
}
2016-11-03 18:01:24 +01:00
}