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

243 lines
7.2 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 { FormattedMessage } from 'react-intl';
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
fields: PropTypes.array.isRequired,
hasRequested: nullableProptype(PropTypes.bool.isRequired),
isServerRunning: nullableProptype(PropTypes.bool.isRequired),
isVerified: nullableProptype(PropTypes.bool.isRequired),
method: PropTypes.string.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 }
{ this.renderServerRunning() }
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 }
label={
<FormattedMessage
id='ui.verification.gatherData.termsOfService'
defaultMessage='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
renderServerRunning () {
const { isServerRunning } = this.props;
if (isServerRunning) {
return (
<div className={ styles.container }>
<SuccessIcon />
<p className={ styles.message }>
<FormattedMessage
id='ui.verification.gatherData.isServerRunning.true'
defaultMessage='The verification server is running.'
/>
</p>
</div>
);
} else if (isServerRunning === false) {
return (
<div className={ styles.container }>
<ErrorIcon />
<p className={ styles.message }>
<FormattedMessage
id='ui.verification.gatherData.isServerRunning.false'
defaultMessage='The verification server is not running.'
/>
</p>
</div>
);
}
return (
<p className={ styles.message }>
<FormattedMessage
id='ui.verification.gatherData.isServerRunning.pending'
defaultMessage='Checking if the verification server is running…'
/>
</p>
);
}
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 }>
<FormattedMessage
id='ui.verification.gatherData.fee'
defaultMessage='The fee is {amount} ETH.'
values={ {
amount: fromWei(fee).toFixed(3)
} }
/>
</p>
2016-11-09 19:04:13 +01:00
</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 }>
<FormattedMessage
id='ui.verification.gatherData.isVerified.true'
defaultMessage='Your account is already verified.'
/>
</p>
2016-11-09 17:57:30 +01:00
</div>
);
} else if (isVerified === false) {
2016-11-09 17:57:30 +01:00
return (
<div className={ styles.container }>
<SuccessIcon />
<p className={ styles.message }>
<FormattedMessage
id='ui.verification.gatherData.isVerified.false'
defaultMessage='Your account is not verified yet.'
/>
</p>
2016-11-09 17:57:30 +01:00
</div>
);
}
return (
<p className={ styles.message }>
<FormattedMessage
id='ui.verification.gatherData.isVerified.pending'
defaultMessage='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 }>
<FormattedMessage
id='ui.verification.gatherData.hasRequested.true'
defaultMessage='You already requested verification.'
/>
</p>
</div>
);
} else if (hasRequested === false) {
return (
<div className={ styles.container }>
<SuccessIcon />
<p className={ styles.message }>
<FormattedMessage
id='ui.verification.gatherData.hasRequested.false'
defaultMessage='You did not request verification yet.'
/>
</p>
</div>
);
}
return (
<p className={ styles.message }>
<FormattedMessage
id='ui.verification.gatherData.hasRequested.pending'
defaultMessage='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
}
}