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

159 lines
4.8 KiB
JavaScript
Raw Normal View History

2016-12-11 19:31:31 +01:00
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
2016-11-03 19:21:38 +01:00
// 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 BigNumber from 'bignumber.js';
2016-11-03 19:21:38 +01:00
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
import { fromWei } from '~/api/util/wei';
import { Form, Input } from '~/ui';
import { nullableProptype } from '~/util/proptypes';
2016-11-03 19:21:38 +01:00
import smsTermsOfService from '~/3rdparty/sms-verification/terms-of-service';
import emailTermsOfService from '~/3rdparty/email-verification/terms-of-service';
import { howSMSVerificationWorks, howEmailVerificationWorks } from '../how-it-works';
2016-11-07 10:23:42 +01:00
import styles from './gatherData.css';
2016-11-03 19:21:38 +01:00
export default class GatherData extends Component {
2016-11-03 19:21:38 +01:00
static propTypes = {
fee: React.PropTypes.instanceOf(BigNumber),
2016-12-07 11:53:48 +01:00
method: PropTypes.string.isRequired,
fields: PropTypes.array.isRequired,
isVerified: nullableProptype(PropTypes.bool.isRequired),
hasRequested: nullableProptype(PropTypes.bool.isRequired),
setConsentGiven: PropTypes.func.isRequired
}
2016-11-03 19:21:38 +01:00
render () {
2016-12-07 11:53:48 +01:00
const { method, isVerified } = this.props;
const termsOfService = method === 'email' ? emailTermsOfService : smsTermsOfService;
const howItWorks = method === 'email' ? howEmailVerificationWorks : howSMSVerificationWorks;
2016-11-03 19:21:38 +01:00
return (
<Form>
2016-12-07 11:53:48 +01:00
{ howItWorks }
2016-11-09 19:04:13 +01:00
{ this.renderFee() }
2016-11-09 17:57:30 +01:00
{ this.renderCertified() }
{ this.renderRequested() }
2016-12-07 11:53:48 +01:00
{ this.renderFields() }
2016-11-03 19:21:38 +01:00
<Checkbox
className={ styles.spacing }
2016-11-14 12:31:26 +01:00
label={ 'I agree to the terms and conditions below.' }
disabled={ isVerified }
2016-11-03 19:21:38 +01:00
onCheck={ this.consentOnChange }
/>
<div className={ styles.terms }>{ termsOfService }</div>
2016-11-03 19:21:38 +01:00
</Form>
);
}
2016-11-09 19:04:13 +01:00
renderFee () {
const { fee } = this.props;
2016-11-09 19:04:13 +01:00
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;
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>
);
} else 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>
);
2016-11-09 17:57:30 +01:00
}
renderRequested () {
const { isVerified, hasRequested } = this.props;
// If the account is verified, don't show that it has requested verification.
if (isVerified) {
return null;
}
if (hasRequested) {
return (
<div className={ styles.container }>
<InfoIcon />
<p className={ styles.message }>You already requested verification.</p>
</div>
);
} else 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>
);
}
2016-12-07 11:53:48 +01:00
renderFields () {
const { isVerified, fields } = this.props;
const rendered = fields.map((field) => {
const onChange = (_, v) => {
field.onChange(v);
};
const onSubmit = field.onChange;
return (
<Input
key={ field.key }
label={ field.label }
hint={ field.hint }
error={ field.error }
disabled={ isVerified }
onChange={ onChange }
onSubmit={ onSubmit }
/>
);
});
2016-11-03 19:21:38 +01:00
2016-12-07 11:53:48 +01:00
return (<div>{rendered}</div>);
2016-11-03 19:21:38 +01:00
}
consentOnChange = (_, consentGiven) => {
this.props.setConsentGiven(consentGiven);
2016-11-03 19:21:38 +01:00
}
}