openethereum/js/src/modals/SMSVerification/GatherData/gatherData.js

216 lines
5.7 KiB
JavaScript
Raw Normal View History

2016-11-03 19:21:38 +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 { Checkbox } from 'material-ui';
2016-11-09 19:04:13 +01:00
import InfoIcon from 'material-ui/svg-icons/action/info-outline';
2016-11-09 17:57:30 +01:00
import SuccessIcon from 'material-ui/svg-icons/navigation/check';
import ErrorIcon from 'material-ui/svg-icons/navigation/close';
2016-11-09 17:57:30 +01:00
2016-11-03 19:21:38 +01:00
import phone from 'phoneformat.js';
import { fromWei } from '../../../api/util/wei';
2016-11-03 19:21:38 +01:00
import { Form, Input } from '../../../ui';
import checkIfVerified from '../check-if-verified';
import checkIfRequested from '../check-if-requested';
2016-11-03 19:21:38 +01:00
2016-11-07 10:23:42 +01:00
import styles from './gatherData.css';
2016-11-03 19:21:38 +01:00
2016-11-07 10:23:42 +01:00
export default class GatherData extends Component {
2016-11-09 17:57:30 +01:00
static contextTypes = {
api: PropTypes.object.isRequired
}
2016-11-03 19:21:38 +01:00
static propTypes = {
2016-11-09 17:57:30 +01:00
account: PropTypes.string.isRequired,
contract: PropTypes.object.isRequired,
data: PropTypes.object.isRequired,
onData: PropTypes.func.isRequired,
2016-11-03 19:21:38 +01:00
onDataIsValid: PropTypes.func.isRequired,
onDataIsInvalid: PropTypes.func.isRequired
2016-11-03 19:21:38 +01:00
}
state = {
init: true,
isVerified: null,
hasRequested: null,
2016-11-03 19:21:38 +01:00
numberIsValid: null,
consentGiven: false
};
componentWillMount () {
const { init } = this.state;
if (init) {
this.setState({ init: false });
2016-11-09 17:57:30 +01:00
this.queryFee();
this.checkIfCertified();
this.checkIfRequested();
}
}
2016-11-03 19:21:38 +01:00
render () {
const { numberIsValid } = this.state;
2016-11-09 19:04:13 +01:00
// TODO: proper legal text
2016-11-03 19:21:38 +01:00
return (
<Form>
2016-11-09 19:04:13 +01:00
{ this.renderFee() }
2016-11-09 17:57:30 +01:00
{ this.renderCertified() }
{ this.renderRequested() }
2016-11-03 19:21:38 +01:00
<Input
label={ 'phone number' }
hint={ 'the sms will be sent to this number' }
error={ numberIsValid ? null : 'invalid number' }
onChange={ this.numberOnChange }
onSubmit={ this.numberOnSubmit }
/>
<Checkbox
className={ styles.spacing }
label={ 'I agree that my number will be stored.' }
onCheck={ this.consentOnChange }
/>
</Form>
);
}
2016-11-09 19:04:13 +01:00
renderFee () {
const { fee } = this.props.data;
if (!fee) {
return (<p>Fetching the fee</p>);
}
return (
<div className={ styles.container }>
<InfoIcon />
<p className={ styles.message }>The fee is { fromWei(fee).toFixed(3) } ETH.</p>
</div>
);
}
2016-11-03 19:21:38 +01:00
2016-11-09 17:57:30 +01:00
renderCertified () {
const { isVerified } = this.props.data;
2016-11-09 17:57:30 +01:00
if (isVerified) {
2016-11-09 17:57:30 +01:00
return (
<div className={ styles.container }>
<ErrorIcon />
<p className={ styles.message }>Your account is already verified.</p>
</div>
);
}
if (isVerified === false) {
2016-11-09 17:57:30 +01:00
return (
<div className={ styles.container }>
<SuccessIcon />
<p className={ styles.message }>Your account is not verified yet.</p>
</div>
);
}
return (<p className={ styles.message }>Checking if your account is verified</p>);
}
renderRequested () {
const { hasRequested } = this.props.data;
if (hasRequested) {
return (
<div className={ styles.container }>
<ErrorIcon />
<p className={ styles.message }>You already requested verification.</p>
</div>
);
}
if (hasRequested === false) {
return (
<div className={ styles.container }>
<SuccessIcon />
<p className={ styles.message }>You did not request verification yet.</p>
</div>
);
}
return (<p className={ styles.message }>Checking if you requested verification</p>);
}
queryFee = () => {
const { contract, onData } = this.props;
contract.instance.fee.call()
.then((fee) => {
onData({ fee });
this.onChange();
})
.catch((err) => {
console.error('error fetching fee', err);
this.onChange();
});
}
2016-11-09 17:57:30 +01:00
checkIfCertified = () => {
const { account, contract, onData } = this.props;
checkIfVerified(contract, account)
.then((isVerified) => {
onData({ isVerified });
2016-11-09 17:57:30 +01:00
this.onChange();
})
.catch((err) => {
console.error('error checking if certified', err);
});
}
checkIfRequested = () => {
const { account, contract, onData } = this.props;
checkIfRequested(contract, account)
.then((hasRequested) => {
onData({ hasRequested });
this.onChange();
})
.catch((err) => {
console.error('error checking if requested', err);
});
}
2016-11-03 19:21:38 +01:00
numberOnSubmit = (value) => {
this.numberOnChange(null, value);
2016-11-07 13:34:53 +01:00
this.props.onData({ number: value });
2016-11-03 19:21:38 +01:00
}
numberOnChange = (_, value) => {
this.setState({
numberIsValid: phone.isValidNumber(value)
}, this.onChange);
}
consentOnChange = (_, consentGiven) => {
this.setState({
consentGiven: !!consentGiven
}, this.onChange);
2016-11-07 13:34:53 +01:00
this.props.onData({ consent: consentGiven });
2016-11-03 19:21:38 +01:00
}
onChange = () => {
const { fee, isVerified, hasRequested } = this.props.data;
2016-11-03 19:21:38 +01:00
const { numberIsValid, consentGiven } = this.state;
if (fee && numberIsValid && consentGiven && isVerified === false) {
2016-11-03 19:21:38 +01:00
this.props.onDataIsValid();
} else {
this.props.onDataIsInvalid();
}
}
}