2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 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/>.
|
|
|
|
|
2017-07-17 18:37:33 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-01-13 09:51:25 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-11-15 13:26:14 +01:00
|
|
|
import BigNumber from 'bignumber.js';
|
2016-11-09 17:57:30 +01:00
|
|
|
|
2017-04-21 11:40:22 +02:00
|
|
|
import { fromWei } from '@parity/api/util/wei';
|
2017-05-12 12:06:16 +02:00
|
|
|
import { Checkbox, Form, Input } from '@parity/ui';
|
|
|
|
import { DoneIcon, ErrorIcon, InfoIcon } from '@parity/ui/Icons';
|
2017-05-09 12:01:44 +02:00
|
|
|
import { nullableProptype } from '@parity/shared/util/proptypes';
|
2016-11-03 19:21:38 +01:00
|
|
|
|
2017-07-21 15:46:53 +02:00
|
|
|
import smsTermsOfService from '../sms-verification/terms-of-service';
|
|
|
|
import emailTermsOfService from '../email-verification/terms-of-service';
|
2016-12-09 16:20:35 +01:00
|
|
|
import { howSMSVerificationWorks, howEmailVerificationWorks } from '../how-it-works';
|
2017-07-21 15:46:53 +02:00
|
|
|
|
2016-11-07 10:23:42 +01:00
|
|
|
import styles from './gatherData.css';
|
2016-11-03 19:21:38 +01:00
|
|
|
|
2017-02-02 16:01:37 +01:00
|
|
|
const boolOfError = PropTypes.oneOfType([ PropTypes.bool, PropTypes.instanceOf(Error) ]);
|
|
|
|
|
2016-11-15 13:26:14 +01:00
|
|
|
export default class GatherData extends Component {
|
2016-11-03 19:21:38 +01:00
|
|
|
static propTypes = {
|
2016-11-15 13:26:14 +01:00
|
|
|
fee: React.PropTypes.instanceOf(BigNumber),
|
2016-12-07 11:53:48 +01:00
|
|
|
fields: PropTypes.array.isRequired,
|
2017-02-02 16:01:37 +01:00
|
|
|
accountHasRequested: nullableProptype(PropTypes.bool.isRequired),
|
2017-01-13 09:51:25 +01:00
|
|
|
isServerRunning: nullableProptype(PropTypes.bool.isRequired),
|
2017-02-02 16:01:37 +01:00
|
|
|
isAbleToRequest: nullableProptype(boolOfError.isRequired),
|
|
|
|
accountIsVerified: nullableProptype(PropTypes.bool.isRequired),
|
2017-01-13 09:51:25 +01:00
|
|
|
method: PropTypes.string.isRequired,
|
2016-11-15 13:26:14 +01:00
|
|
|
setConsentGiven: PropTypes.func.isRequired
|
2016-11-09 13:23:07 +01:00
|
|
|
}
|
|
|
|
|
2016-11-03 19:21:38 +01:00
|
|
|
render () {
|
2017-02-02 16:01:37 +01:00
|
|
|
const { method, accountIsVerified } = this.props;
|
2016-12-09 16:20:35 +01:00
|
|
|
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 }
|
2017-01-13 09:51:25 +01:00
|
|
|
{ this.renderServerRunning() }
|
2016-11-09 19:04:13 +01:00
|
|
|
{ this.renderFee() }
|
2016-11-09 17:57:30 +01:00
|
|
|
{ this.renderCertified() }
|
2016-11-09 18:42:21 +01:00
|
|
|
{ this.renderRequested() }
|
2016-12-07 11:53:48 +01:00
|
|
|
{ this.renderFields() }
|
2017-02-02 16:01:37 +01:00
|
|
|
{ this.renderIfAbleToRequest() }
|
2016-11-03 19:21:38 +01:00
|
|
|
<Checkbox
|
|
|
|
className={ styles.spacing }
|
2017-01-13 09:51:25 +01:00
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.verification.gatherData.termsOfService'
|
|
|
|
defaultMessage='I agree to the terms and conditions below.'
|
|
|
|
/>
|
|
|
|
}
|
2017-02-02 16:01:37 +01:00
|
|
|
disabled={ accountIsVerified }
|
2017-05-03 12:25:16 +02:00
|
|
|
onClick={ this.consentOnChange }
|
2016-11-03 19:21:38 +01:00
|
|
|
/>
|
2016-11-21 20:45:47 +01:00
|
|
|
<div className={ styles.terms }>{ termsOfService }</div>
|
2016-11-03 19:21:38 +01:00
|
|
|
</Form>
|
|
|
|
);
|
|
|
|
}
|
2016-11-09 19:04:13 +01:00
|
|
|
|
2017-01-13 09:51:25 +01:00
|
|
|
renderServerRunning () {
|
|
|
|
const { isServerRunning } = this.props;
|
|
|
|
|
|
|
|
if (isServerRunning) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
2017-03-02 13:29:32 +01:00
|
|
|
<DoneIcon />
|
2017-01-13 09:51:25 +01:00
|
|
|
<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 () {
|
2016-11-15 13:26:14 +01:00
|
|
|
const { fee } = this.props;
|
2016-11-09 19:04:13 +01:00
|
|
|
|
|
|
|
if (!fee) {
|
|
|
|
return (<p>Fetching the fee…</p>);
|
|
|
|
}
|
2017-01-19 08:45:32 +01:00
|
|
|
if (fee.eq(0)) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<InfoIcon />
|
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.verification.gatherData.nofee'
|
|
|
|
defaultMessage='There is no additional fee.'
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-11-09 19:04:13 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<InfoIcon />
|
2017-01-13 09:51:25 +01:00
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.verification.gatherData.fee'
|
2017-01-19 08:45:32 +01:00
|
|
|
defaultMessage='The additional fee is {amount} ETH.'
|
2017-01-13 09:51:25 +01:00
|
|
|
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 () {
|
2017-02-02 16:01:37 +01:00
|
|
|
const { accountIsVerified } = this.props;
|
2016-11-09 17:57:30 +01:00
|
|
|
|
2017-02-02 16:01:37 +01:00
|
|
|
if (accountIsVerified) {
|
2016-11-09 17:57:30 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<ErrorIcon />
|
2017-01-13 09:51:25 +01:00
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
2017-02-02 16:01:37 +01:00
|
|
|
id='ui.verification.gatherData.accountIsVerified.true'
|
2017-01-13 09:51:25 +01:00
|
|
|
defaultMessage='Your account is already verified.'
|
|
|
|
/>
|
|
|
|
</p>
|
2016-11-09 17:57:30 +01:00
|
|
|
</div>
|
|
|
|
);
|
2017-02-02 16:01:37 +01:00
|
|
|
} else if (accountIsVerified === false) {
|
2016-11-09 17:57:30 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
2017-03-02 13:29:32 +01:00
|
|
|
<DoneIcon />
|
2017-01-13 09:51:25 +01:00
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
2017-02-02 16:01:37 +01:00
|
|
|
id='ui.verification.gatherData.accountIsVerified.false'
|
2017-01-13 09:51:25 +01:00
|
|
|
defaultMessage='Your account is not verified yet.'
|
|
|
|
/>
|
|
|
|
</p>
|
2016-11-09 17:57:30 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-11-17 12:26:59 +01:00
|
|
|
return (
|
2017-01-13 09:51:25 +01:00
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
2017-02-02 16:01:37 +01:00
|
|
|
id='ui.verification.gatherData.accountIsVerified.pending'
|
2017-01-13 09:51:25 +01:00
|
|
|
defaultMessage='Checking if your account is verified…'
|
|
|
|
/>
|
|
|
|
</p>
|
2016-11-17 12:26:59 +01:00
|
|
|
);
|
2016-11-09 17:57:30 +01:00
|
|
|
}
|
|
|
|
|
2016-11-09 18:42:21 +01:00
|
|
|
renderRequested () {
|
2017-02-02 16:01:37 +01:00
|
|
|
const { accountIsVerified, accountHasRequested } = this.props;
|
2016-11-10 13:54:09 +01:00
|
|
|
|
|
|
|
// If the account is verified, don't show that it has requested verification.
|
2017-02-02 16:01:37 +01:00
|
|
|
if (accountIsVerified) {
|
2016-11-10 13:54:09 +01:00
|
|
|
return null;
|
|
|
|
}
|
2016-11-09 18:42:21 +01:00
|
|
|
|
2017-02-02 16:01:37 +01:00
|
|
|
if (accountHasRequested) {
|
2016-11-09 18:42:21 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
2016-11-10 16:23:09 +01:00
|
|
|
<InfoIcon />
|
2017-01-13 09:51:25 +01:00
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
2017-02-02 16:01:37 +01:00
|
|
|
id='ui.verification.gatherData.accountHasRequested.true'
|
|
|
|
defaultMessage='You already requested verification from this account.'
|
2017-01-13 09:51:25 +01:00
|
|
|
/>
|
|
|
|
</p>
|
2016-11-09 18:42:21 +01:00
|
|
|
</div>
|
|
|
|
);
|
2017-02-02 16:01:37 +01:00
|
|
|
} else if (accountHasRequested === false) {
|
2016-11-09 18:42:21 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
2017-03-02 13:29:32 +01:00
|
|
|
<DoneIcon />
|
2017-01-13 09:51:25 +01:00
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
2017-02-02 16:01:37 +01:00
|
|
|
id='ui.verification.gatherData.accountHasRequested.false'
|
|
|
|
defaultMessage='You did not request verification from this account yet.'
|
2017-01-13 09:51:25 +01:00
|
|
|
/>
|
|
|
|
</p>
|
2016-11-09 18:42:21 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-11-17 12:26:59 +01:00
|
|
|
return (
|
2017-01-13 09:51:25 +01:00
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
2017-02-02 16:01:37 +01:00
|
|
|
id='ui.verification.gatherData.accountHasRequested.pending'
|
2017-01-13 09:51:25 +01:00
|
|
|
defaultMessage='Checking if you requested verification…'
|
|
|
|
/>
|
|
|
|
</p>
|
2016-11-17 12:26:59 +01:00
|
|
|
);
|
2016-11-09 18:42:21 +01:00
|
|
|
}
|
|
|
|
|
2016-12-07 11:53:48 +01:00
|
|
|
renderFields () {
|
2017-02-02 16:01:37 +01:00
|
|
|
const { accountIsVerified, fields } = this.props;
|
2016-12-07 11:53:48 +01:00
|
|
|
|
2017-02-24 12:26:30 +01:00
|
|
|
const rendered = fields.map((field, index) => {
|
2016-12-07 11:53:48 +01:00
|
|
|
const onChange = (_, v) => {
|
|
|
|
field.onChange(v);
|
|
|
|
};
|
|
|
|
const onSubmit = field.onChange;
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-07 11:53:48 +01:00
|
|
|
return (
|
|
|
|
<Input
|
2017-02-24 12:26:30 +01:00
|
|
|
autoFocus={ index === 0 }
|
2017-02-02 16:01:37 +01:00
|
|
|
className={ styles.field }
|
2016-12-07 11:53:48 +01:00
|
|
|
key={ field.key }
|
|
|
|
label={ field.label }
|
|
|
|
hint={ field.hint }
|
|
|
|
error={ field.error }
|
2017-02-02 16:01:37 +01:00
|
|
|
disabled={ accountIsVerified }
|
2016-12-07 11:53:48 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-02-02 16:01:37 +01:00
|
|
|
renderIfAbleToRequest () {
|
|
|
|
const { accountIsVerified, isAbleToRequest } = this.props;
|
|
|
|
|
|
|
|
// If the account is verified, don't show a warning.
|
|
|
|
// If the client is able to send the request, don't show a warning
|
|
|
|
if (accountIsVerified || isAbleToRequest === true) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isAbleToRequest === null) {
|
|
|
|
return (
|
|
|
|
<p className={ styles.message }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.verification.gatherData.isAbleToRequest.pending'
|
|
|
|
defaultMessage='Validating your input…'
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
);
|
|
|
|
} else if (isAbleToRequest) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<ErrorIcon />
|
|
|
|
<p className={ styles.message }>
|
|
|
|
{ isAbleToRequest.message }
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-03 19:21:38 +01:00
|
|
|
consentOnChange = (_, consentGiven) => {
|
2016-11-15 13:26:14 +01:00
|
|
|
this.props.setConsentGiven(consentGiven);
|
2016-11-03 19:21:38 +01:00
|
|
|
}
|
|
|
|
}
|