// 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 . import React, { Component, PropTypes } from 'react'; import { Checkbox } from 'material-ui'; import InfoIcon from 'material-ui/svg-icons/action/info-outline'; import SuccessIcon from 'material-ui/svg-icons/navigation/check'; import ErrorIcon from 'material-ui/svg-icons/navigation/close'; import phone from 'phoneformat.js'; import { fromWei } from '../../../api/util/wei'; import { Form, Input } from '../../../ui'; import styles from './gatherData.css'; export default class GatherData extends Component { static contextTypes = { api: PropTypes.object.isRequired } static propTypes = { account: PropTypes.string.isRequired, contract: PropTypes.object.isRequired, data: PropTypes.object.isRequired, onData: PropTypes.func.isRequired, onDataIsValid: PropTypes.func.isRequired, onDataIsInvalid: PropTypes.func.isRequired } state = { init: true, isCertified: null, hasRequested: null, numberIsValid: null, consentGiven: false }; componentWillMount () { const { init } = this.state; if (init) { this.setState({ init: false }); this.queryFee(); this.checkIfCertified(); this.checkIfRequested(); } } render () { const { numberIsValid } = this.state; // TODO: proper legal text return (
{ this.renderFee() } { this.renderCertified() } { this.renderRequested() } ); } renderFee () { const { fee } = this.props.data; if (!fee) { return (

Fetching the fee…

); } return (

The fee is { fromWei(fee).toFixed(3) } ETH.

); } renderCertified () { const { isCertified } = this.props.data; if (isCertified) { return (

Your account is already verified.

); } if (isCertified === false) { return (

Your account is not verified yet.

); } return (

Checking if your account is verified…

); } renderRequested () { const { hasRequested } = this.props.data; if (hasRequested) { return (

You already requested verification.

); } if (hasRequested === false) { return (

You did not request verification yet.

); } return (

Checking if you requested verification…

); } 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(); }); } checkIfCertified = () => { const { account, contract, onData } = this.props; contract.instance.certified.call({}, [account]) .then((isCertified) => { onData({ isCertified }); this.onChange(); }) .catch((err) => { console.error('error checking if certified', err); }); } checkIfRequested = () => { const { account, contract, onData } = this.props; contract.subscribe('Requested', { fromBlock: 0, toBlock: 'pending', // limit: 1 }, (err, logs) => { if (err) { return console.error('error checking if requested', err); } const hasRequested = logs.some((l) => { return l.type === 'mined' && l.params.who && l.params.who.value === account; }); onData({ hasRequested }); this.onChange(); }); } numberOnSubmit = (value) => { this.numberOnChange(null, value); this.props.onData({ number: value }); } numberOnChange = (_, value) => { this.setState({ numberIsValid: phone.isValidNumber(value) }, this.onChange); } consentOnChange = (_, consentGiven) => { this.setState({ consentGiven: !!consentGiven }, this.onChange); this.props.onData({ consent: consentGiven }); } onChange = () => { const { fee, isCertified, hasRequested } = this.props.data; const { numberIsValid, consentGiven } = this.state; if (fee && numberIsValid && consentGiven && isCertified === false) { this.props.onDataIsValid(); } else { this.props.onDataIsInvalid(); } } }