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

146 lines
3.4 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 = '0x7B3F58965439b22ef1dA4BB78f16191d11ab80B0';
2016-11-03 19:21:38 +01:00
import SendRequest from './SendRequest';
2016-11-03 18:01:24 +01:00
export default class SMSVerification extends Component {
static contextTypes = {
api: PropTypes.object.isRequired,
// store: PropTypes.object.isRequired
}
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-03 18:01:24 +01:00
number: null,
numberError: null
}
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 }
steps={ ['first step', 'second step'] }
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 }
/>
);
if (step === 1) {
return (
<div>
{ cancel }
<Button
key='done' label='Done'
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 () {
const { step } = this.state;
if (step === 1) {
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-03 18:13:45 +01:00
next = () => {
2016-11-03 19:21:38 +01:00
this.setState({ step: this.state.step + 1 });
2016-11-03 18:13:45 +01:00
}
renderFirstStep () {
return (
2016-11-03 19:21:38 +01:00
<SendRequest
onDataIsValid={ this.onDataIsValid }
onDataIsInvalid={ this.onDataIsInvalid }
/>
2016-11-03 18:13:45 +01:00
);
}
renderSecondStep () {
return (
<span>second step</span>
);
}
2016-11-03 18:01:24 +01:00
}