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

201 lines
4.8 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';
import ActionDoneAll from 'material-ui/svg-icons/action/done-all';
import ContentClear from 'material-ui/svg-icons/content/clear';
import { BusyStep, CompletedStep, Button, IdentityIcon, Modal } from '../../ui';
import { validateAddress, validateUint } from '../../util/validation';
import ABI from '../../contracts/abi/sms-verification.json';
const contract = '0xcE381B876A85A72303f7cA7b3a012f58F4CEEEeB';
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';
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
}
state = {
contract: null,
step: 0,
2016-11-03 19:21:38 +01:00
stepIsValid: false,
2016-11-07 13:34:53 +01:00
data: {}
2016-11-03 18:01:24 +01:00
}
componentDidMount () {
const { api } = this.context;
this.setState({
contract: api.newContract(ABI, contract)
});
}
render () {
2016-11-03 18:13:45 +01:00
const { step } = this.state;
2016-11-03 18:01:24 +01:00
return (
<Modal
actions={ this.renderDialogActions() }
title='verify your account via SMS'
visible scroll
2016-11-03 18:13:45 +01:00
current={ step }
2016-11-09 17:57:30 +01:00
steps={ ['Enter Data', 'Request', 'Enter Code', 'Confirm'] }
2016-11-03 18:01:24 +01:00
>
2016-11-03 18:13:45 +01:00
{ this.renderStep() }
2016-11-03 18:01:24 +01:00
</Modal>
);
}
renderDialogActions () {
const { onClose, account } = this.props;
2016-11-03 19:21:38 +01:00
const { step, stepIsValid } = this.state;
2016-11-03 18:13:45 +01:00
const cancel = (
<Button
key='cancel' label='Cancel'
icon={ <ContentClear /> }
onClick={ onClose }
/>
);
2016-11-09 17:57:30 +01:00
if (step === 3) {
2016-11-03 18:13:45 +01:00
return (
<div>
{ cancel }
<Button
key='done' label='Done'
disabled={ !stepIsValid }
2016-11-03 18:13:45 +01:00
icon={ <ActionDoneAll /> }
onClick={ onClose }
/>
</div>
);
}
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-03 19:21:38 +01:00
disabled={ !stepIsValid }
2016-11-03 18:13:45 +01:00
icon={ <IdentityIcon address={ account } button /> }
onClick={ this.next }
2016-11-03 18:01:24 +01:00
/>
</div>
);
}
2016-11-03 18:13:45 +01:00
renderStep () {
2016-11-07 15:13:22 +01:00
const { contract } = this.state;
if (!contract) {
return null;
}
2016-11-03 18:13:45 +01:00
const { step } = this.state;
2016-11-09 17:57:30 +01:00
if (step === 3) {
2016-11-09 16:54:38 +01:00
return this.renderFourthStep();
} else if (step === 2) {
2016-11-07 15:13:22 +01:00
return this.renderThirdStep();
} else if (step === 1) {
2016-11-03 18:13:45 +01:00
return this.renderSecondStep();
} else {
return this.renderFirstStep();
}
}
2016-11-03 19:21:38 +01:00
onDataIsValid = () => {
this.setState({ stepIsValid: true });
}
onDataIsInvalid = () => {
this.setState({ stepIsValid: false });
}
2016-11-07 13:34:53 +01:00
onData = (data) => {
this.setState({
data: Object.assign({}, this.state.data, data)
});
}
2016-11-03 19:21:38 +01:00
2016-11-03 18:13:45 +01:00
next = () => {
2016-11-07 13:18:36 +01:00
this.setState({ step: this.state.step + 1, stepIsValid: false });
2016-11-03 18:13:45 +01:00
}
renderFirstStep () {
2016-11-07 13:18:36 +01:00
const { account } = this.props;
const { contract, data } = this.state;
2016-11-03 18:13:45 +01:00
return (
2016-11-07 10:23:42 +01:00
<GatherData
2016-11-09 17:57:30 +01:00
account={ account } contract={ contract } data={ data }
2016-11-07 15:13:22 +01:00
onData={ this.onData }
2016-11-03 19:21:38 +01:00
onDataIsValid={ this.onDataIsValid }
onDataIsInvalid={ this.onDataIsInvalid }
/>
2016-11-03 18:13:45 +01:00
);
}
2016-11-09 17:57:30 +01:00
renderSecondStep () {
2016-11-07 15:13:22 +01:00
const { account } = this.props;
const { contract, data } = this.state;
2016-11-03 18:13:45 +01:00
return (
2016-11-07 15:13:22 +01:00
<SendRequest
account={ account } contract={ contract } data={ data }
onData={ this.onData }
onSuccess={ this.onDataIsValid }
onError={ this.onDataIsInvalid }
/>
2016-11-03 18:13:45 +01:00
);
}
2016-11-09 16:54:38 +01:00
2016-11-09 17:57:30 +01:00
renderThirdStep () {
2016-11-09 16:54:38 +01:00
const { data } = this.state;
return (
<QueryCode
data={ data }
onData={ this.onData }
onDataIsValid={ this.onDataIsValid }
onDataIsInvalid={ this.onDataIsInvalid }
/>
);
}
2016-11-09 17:34:21 +01:00
2016-11-09 17:57:30 +01:00
renderFourthStep () {
2016-11-09 17:34:21 +01:00
const { account } = this.props;
const { contract, data } = this.state;
return (
<SendConfirmation
account={ account } contract={ contract } data={ data }
onData={ this.onData }
onSuccess={ this.onDataIsValid }
onError={ this.onDataIsInvalid }
/>
);
}
2016-11-03 18:01:24 +01:00
}