2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-11-03 18:01:24 +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';
|
2017-02-02 16:01:37 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-12-23 15:40:04 +01:00
|
|
|
import { connect } from 'react-redux';
|
2016-11-15 16:21:53 +01:00
|
|
|
import { observer } from 'mobx-react';
|
2016-12-23 15:40:04 +01:00
|
|
|
import { observable } from 'mobx';
|
2016-11-03 18:01:24 +01:00
|
|
|
|
2017-05-12 12:06:16 +02:00
|
|
|
import { Button, IdentityIcon, Portal, RadioButtons } from '@parity/ui';
|
|
|
|
import { CancelIcon, DoneIcon } from '@parity/ui/Icons';
|
2016-12-23 15:40:04 +01:00
|
|
|
|
|
|
|
import SMSVerificationStore from './sms-store';
|
|
|
|
import EmailVerificationStore from './email-store';
|
2016-12-06 17:16:54 +01:00
|
|
|
|
2016-12-09 12:37:36 +01:00
|
|
|
import styles from './verification.css';
|
|
|
|
|
2017-02-22 15:26:58 +01:00
|
|
|
const METHODS = {
|
2016-12-09 12:37:36 +01:00
|
|
|
sms: {
|
2017-02-22 15:26:58 +01:00
|
|
|
label: (
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.types.sms.label'
|
|
|
|
defaultMessage='SMS Verification'
|
|
|
|
/>
|
|
|
|
),
|
2017-05-12 12:06:16 +02:00
|
|
|
key: 'sms',
|
2017-02-22 15:26:58 +01:00
|
|
|
value: 'sms',
|
|
|
|
description: (
|
|
|
|
<p className={ styles.noSpacing }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.types.sms.description'
|
|
|
|
defaultMessage='It will be stored on the blockchain that you control a phone number (not <em>which</em>).'
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
)
|
2016-12-09 12:37:36 +01:00
|
|
|
},
|
|
|
|
email: {
|
2017-02-22 15:26:58 +01:00
|
|
|
label: (
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.types.email.label'
|
|
|
|
defaultMessage='E-mail Verification'
|
|
|
|
/>
|
|
|
|
),
|
2017-05-12 12:06:16 +02:00
|
|
|
key: 'email',
|
2017-02-22 15:26:58 +01:00
|
|
|
value: 'email',
|
|
|
|
description: (
|
|
|
|
<p className={ styles.noSpacing }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.types.email.description'
|
|
|
|
defaultMessage='The hash of the e-mail address you prove control over will be stored on the blockchain.'
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
)
|
2016-12-09 12:37:36 +01:00
|
|
|
}
|
2016-12-06 17:16:54 +01:00
|
|
|
};
|
2016-11-03 18:01:24 +01:00
|
|
|
|
2017-02-22 15:26:58 +01:00
|
|
|
const STEPS = [
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.steps.method'
|
|
|
|
defaultMessage='Method'
|
|
|
|
/>,
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.steps.data'
|
|
|
|
defaultMessage='Enter Data'
|
|
|
|
/>,
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.steps.request'
|
|
|
|
defaultMessage='Request'
|
|
|
|
/>,
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.steps.code'
|
|
|
|
defaultMessage='Enter Code'
|
|
|
|
/>,
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.steps.confirm'
|
|
|
|
defaultMessage='Confirm'
|
|
|
|
/>,
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.steps.completed'
|
|
|
|
defaultMessage='Completed'
|
|
|
|
/>
|
|
|
|
];
|
|
|
|
|
2016-11-15 16:59:10 +01:00
|
|
|
import {
|
2016-11-17 14:21:44 +01:00
|
|
|
LOADING,
|
|
|
|
QUERY_DATA,
|
2016-11-15 16:21:53 +01:00
|
|
|
POSTING_REQUEST, POSTED_REQUEST,
|
2016-12-06 16:09:02 +01:00
|
|
|
REQUESTING_CODE, QUERY_CODE,
|
2016-11-15 16:21:53 +01:00
|
|
|
POSTING_CONFIRMATION, POSTED_CONFIRMATION,
|
|
|
|
DONE
|
2016-11-15 16:59:10 +01:00
|
|
|
} from './store';
|
2016-11-03 18:01:24 +01:00
|
|
|
|
2016-11-07 10:23:42 +01:00
|
|
|
import GatherData from './GatherData';
|
2016-11-07 15:13:22 +01:00
|
|
|
import SendRequest from './SendRequest';
|
2016-11-09 16:54:38 +01:00
|
|
|
import QueryCode from './QueryCode';
|
2016-11-09 17:34:21 +01:00
|
|
|
import SendConfirmation from './SendConfirmation';
|
2016-11-10 14:31:30 +01:00
|
|
|
import Done from './Done';
|
2016-11-03 18:01:24 +01:00
|
|
|
|
2016-11-15 16:21:53 +01:00
|
|
|
@observer
|
2016-12-23 15:40:04 +01:00
|
|
|
class Verification extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
api: PropTypes.object.isRequired
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:01:24 +01:00
|
|
|
static propTypes = {
|
2016-11-15 16:59:10 +01:00
|
|
|
account: PropTypes.string.isRequired,
|
2016-12-23 15:40:04 +01:00
|
|
|
isTest: PropTypes.bool.isRequired,
|
2016-11-03 18:01:24 +01:00
|
|
|
onClose: PropTypes.func.isRequired
|
|
|
|
}
|
|
|
|
|
2016-11-15 19:05:16 +01:00
|
|
|
static phases = { // mapping (store steps -> steps)
|
2016-12-08 12:11:17 +01:00
|
|
|
[LOADING]: 1, [QUERY_DATA]: 1,
|
|
|
|
[POSTING_REQUEST]: 2, [POSTED_REQUEST]: 2, [REQUESTING_CODE]: 2,
|
|
|
|
[QUERY_CODE]: 3,
|
|
|
|
[POSTING_CONFIRMATION]: 4, [POSTED_CONFIRMATION]: 4,
|
|
|
|
[DONE]: 5
|
2016-11-03 18:01:24 +01:00
|
|
|
}
|
|
|
|
|
2016-12-06 17:16:54 +01:00
|
|
|
state = {
|
|
|
|
method: 'sms'
|
|
|
|
};
|
|
|
|
|
2016-12-23 15:40:04 +01:00
|
|
|
@observable store = null;
|
|
|
|
|
2016-11-03 18:01:24 +01:00
|
|
|
render () {
|
2017-02-22 15:26:58 +01:00
|
|
|
const { onClose } = this.props;
|
2016-12-23 15:40:04 +01:00
|
|
|
const store = this.store;
|
2017-01-23 13:39:52 +01:00
|
|
|
let phase = 0;
|
|
|
|
let error = false;
|
|
|
|
let isStepValid = true;
|
2016-12-06 17:16:54 +01:00
|
|
|
|
|
|
|
if (store) {
|
|
|
|
phase = Verification.phases[store.step];
|
|
|
|
error = store.error;
|
|
|
|
isStepValid = store.isStepValid;
|
|
|
|
}
|
2016-11-03 18:13:45 +01:00
|
|
|
|
2016-11-03 18:01:24 +01:00
|
|
|
return (
|
2017-02-22 15:26:58 +01:00
|
|
|
<Portal
|
|
|
|
activeStep={ phase }
|
|
|
|
busySteps={
|
|
|
|
error
|
|
|
|
? []
|
|
|
|
: [ 2, 4 ]
|
|
|
|
}
|
|
|
|
buttons={ this.renderDialogActions(phase, error, isStepValid) }
|
|
|
|
onClose={ onClose }
|
|
|
|
open
|
|
|
|
steps={ STEPS }
|
|
|
|
title={
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.title'
|
|
|
|
defaultMessage='verify your account'
|
|
|
|
/>
|
|
|
|
}
|
2016-11-03 18:01:24 +01:00
|
|
|
>
|
2016-11-15 19:05:16 +01:00
|
|
|
{ this.renderStep(phase, error) }
|
2017-02-22 15:26:58 +01:00
|
|
|
</Portal>
|
2016-11-03 18:01:24 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-15 19:05:16 +01:00
|
|
|
renderDialogActions (phase, error, isStepValid) {
|
2016-12-23 15:40:04 +01:00
|
|
|
const { account, onClose } = this.props;
|
|
|
|
const store = this.store;
|
2016-11-03 18:13:45 +01:00
|
|
|
|
2017-02-22 15:26:58 +01:00
|
|
|
const cancelButton = (
|
2016-11-03 18:13:45 +01:00
|
|
|
<Button
|
2016-11-21 20:45:47 +01:00
|
|
|
icon={ <CancelIcon /> }
|
2017-01-13 09:51:25 +01:00
|
|
|
key='cancel'
|
2017-02-22 15:26:58 +01:00
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.button.cancel'
|
|
|
|
defaultMessage='Cancel'
|
|
|
|
/>
|
|
|
|
}
|
2016-11-03 18:13:45 +01:00
|
|
|
onClick={ onClose }
|
|
|
|
/>
|
|
|
|
);
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-11-17 12:26:59 +01:00
|
|
|
if (error) {
|
2017-02-22 15:26:58 +01:00
|
|
|
return cancelButton;
|
2016-11-17 12:26:59 +01:00
|
|
|
}
|
2016-11-03 18:13:45 +01:00
|
|
|
|
2016-12-08 12:11:17 +01:00
|
|
|
if (phase === 5) {
|
2017-02-22 15:26:58 +01:00
|
|
|
return [
|
|
|
|
cancelButton,
|
|
|
|
<Button
|
|
|
|
disabled={ !isStepValid }
|
|
|
|
icon={ <DoneIcon /> }
|
|
|
|
key='done'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.button.done'
|
|
|
|
defaultMessage='Done'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
onClick={ onClose }
|
|
|
|
/>
|
|
|
|
];
|
2016-11-03 18:13:45 +01:00
|
|
|
}
|
2016-11-03 18:01:24 +01:00
|
|
|
|
2016-11-17 14:21:44 +01:00
|
|
|
let action = () => {};
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-11-17 12:26:59 +01:00
|
|
|
switch (phase) {
|
2016-12-06 17:16:54 +01:00
|
|
|
case 0:
|
|
|
|
action = () => {
|
|
|
|
const { method } = this.state;
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-23 15:40:04 +01:00
|
|
|
this.onSelectMethod(method);
|
2016-12-06 17:16:54 +01:00
|
|
|
};
|
2016-11-17 12:26:59 +01:00
|
|
|
break;
|
2016-12-08 12:11:17 +01:00
|
|
|
case 1:
|
2016-12-06 17:16:54 +01:00
|
|
|
action = store.sendRequest;
|
2016-11-17 12:26:59 +01:00
|
|
|
break;
|
2016-12-08 12:11:17 +01:00
|
|
|
case 2:
|
2016-12-06 17:16:54 +01:00
|
|
|
action = store.queryCode;
|
2016-11-17 12:26:59 +01:00
|
|
|
break;
|
2016-12-08 12:11:17 +01:00
|
|
|
case 3:
|
2016-12-06 17:16:54 +01:00
|
|
|
action = store.sendConfirmation;
|
|
|
|
break;
|
2016-12-08 12:11:17 +01:00
|
|
|
case 4:
|
2016-11-17 12:26:59 +01:00
|
|
|
action = store.done;
|
|
|
|
break;
|
2016-11-15 16:21:53 +01:00
|
|
|
}
|
|
|
|
|
2017-02-22 15:26:58 +01:00
|
|
|
return [
|
|
|
|
cancelButton,
|
|
|
|
<Button
|
|
|
|
disabled={ !isStepValid }
|
|
|
|
icon={
|
|
|
|
<IdentityIcon
|
|
|
|
address={ account }
|
|
|
|
button
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
key='next'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.button.next'
|
|
|
|
defaultMessage='Next'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
onClick={ action }
|
|
|
|
/>
|
|
|
|
];
|
2016-11-03 18:01:24 +01:00
|
|
|
}
|
2016-11-03 18:13:45 +01:00
|
|
|
|
2016-11-15 19:05:16 +01:00
|
|
|
renderStep (phase, error) {
|
2016-11-17 12:26:59 +01:00
|
|
|
if (error) {
|
2017-01-23 13:39:52 +01:00
|
|
|
return (
|
|
|
|
<p>{ error }</p>
|
|
|
|
);
|
2016-11-17 12:26:59 +01:00
|
|
|
}
|
2016-11-15 16:21:53 +01:00
|
|
|
|
2016-12-07 19:21:29 +01:00
|
|
|
const { method } = this.state;
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-06 17:16:54 +01:00
|
|
|
if (phase === 0) {
|
|
|
|
return (
|
|
|
|
<RadioButtons
|
2017-05-12 12:06:16 +02:00
|
|
|
name='verificationType'
|
2017-01-13 09:51:25 +01:00
|
|
|
onChange={ this.selectMethod }
|
2017-05-12 12:06:16 +02:00
|
|
|
value={ method || 'sms' }
|
|
|
|
values={ Object.values(METHODS) }
|
2016-12-06 17:16:54 +01:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-15 16:21:53 +01:00
|
|
|
const {
|
2016-11-15 19:05:16 +01:00
|
|
|
step,
|
2017-02-02 16:01:37 +01:00
|
|
|
isServerRunning, isAbleToRequest, fee, accountIsVerified, accountHasRequested,
|
2016-11-15 16:21:53 +01:00
|
|
|
requestTx, isCodeValid, confirmationTx,
|
2016-11-25 19:48:06 +01:00
|
|
|
setCode
|
2016-12-23 15:40:04 +01:00
|
|
|
} = this.store;
|
2016-11-07 15:13:22 +01:00
|
|
|
|
2016-11-21 20:45:47 +01:00
|
|
|
switch (phase) {
|
2016-12-06 17:16:54 +01:00
|
|
|
case 1:
|
2016-12-08 12:11:17 +01:00
|
|
|
if (step === LOADING) {
|
2017-02-22 15:26:58 +01:00
|
|
|
return (
|
|
|
|
<p>
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.loading'
|
|
|
|
defaultMessage='Loading verification data.'
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
);
|
2016-12-08 12:11:17 +01:00
|
|
|
}
|
2016-11-21 20:45:47 +01:00
|
|
|
|
2016-12-23 15:40:04 +01:00
|
|
|
const { setConsentGiven } = this.store;
|
2016-12-08 11:55:51 +01:00
|
|
|
const fields = [];
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-06 17:16:54 +01:00
|
|
|
if (method === 'sms') {
|
|
|
|
fields.push({
|
|
|
|
key: 'number',
|
2017-02-02 16:01:37 +01:00
|
|
|
label: (
|
|
|
|
<FormattedMessage
|
2017-02-22 15:26:58 +01:00
|
|
|
id='verification.gatherData.phoneNumber.label'
|
2017-02-02 16:01:37 +01:00
|
|
|
defaultMessage='phone number in international format'
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
hint: (
|
|
|
|
<FormattedMessage
|
2017-02-22 15:26:58 +01:00
|
|
|
id='verification.gatherData.phoneNumber.hint'
|
2017-02-02 16:01:37 +01:00
|
|
|
defaultMessage='the SMS will be sent to this number'
|
|
|
|
/>
|
|
|
|
),
|
2017-02-22 15:26:58 +01:00
|
|
|
error: this.store.isNumberValid
|
|
|
|
? null
|
|
|
|
: (
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.gatherDate.phoneNumber.error'
|
|
|
|
defaultMessage='invalid number'
|
|
|
|
/>
|
|
|
|
),
|
2016-12-23 15:40:04 +01:00
|
|
|
onChange: this.store.setNumber
|
2016-12-06 17:16:54 +01:00
|
|
|
});
|
|
|
|
} else if (method === 'email') {
|
|
|
|
fields.push({
|
|
|
|
key: 'email',
|
2017-02-02 16:01:37 +01:00
|
|
|
label: (
|
|
|
|
<FormattedMessage
|
2017-02-22 15:26:58 +01:00
|
|
|
id='verification.gatherData.email.label'
|
2017-02-02 16:01:37 +01:00
|
|
|
defaultMessage='e-mail address'
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
hint: (
|
|
|
|
<FormattedMessage
|
2017-02-22 15:26:58 +01:00
|
|
|
id='verification.gatherData.email.hint'
|
2017-02-02 16:01:37 +01:00
|
|
|
defaultMessage='the code will be sent to this address'
|
|
|
|
/>
|
|
|
|
),
|
2017-02-22 15:26:58 +01:00
|
|
|
error: this.store.isEmailValid
|
|
|
|
? null
|
|
|
|
: (
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.gatherDate.email.error'
|
|
|
|
defaultMessage='invalid e-mail'
|
|
|
|
/>
|
|
|
|
),
|
2016-12-23 15:40:04 +01:00
|
|
|
onChange: this.store.setEmail
|
2016-12-06 17:16:54 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-21 20:45:47 +01:00
|
|
|
return (
|
|
|
|
<GatherData
|
2017-01-13 09:51:25 +01:00
|
|
|
fee={ fee }
|
2017-02-02 16:01:37 +01:00
|
|
|
accountHasRequested={ accountHasRequested }
|
2017-01-13 09:51:25 +01:00
|
|
|
isServerRunning={ isServerRunning }
|
2017-02-02 16:01:37 +01:00
|
|
|
isAbleToRequest={ isAbleToRequest }
|
|
|
|
accountIsVerified={ accountIsVerified }
|
|
|
|
method={ method }
|
|
|
|
fields={ fields }
|
2016-12-07 11:53:48 +01:00
|
|
|
setConsentGiven={ setConsentGiven }
|
2016-11-21 20:45:47 +01:00
|
|
|
/>
|
|
|
|
);
|
2016-11-10 14:31:30 +01:00
|
|
|
|
2016-12-08 12:11:17 +01:00
|
|
|
case 2:
|
2016-11-21 20:45:47 +01:00
|
|
|
return (
|
2017-01-13 09:51:25 +01:00
|
|
|
<SendRequest
|
|
|
|
step={ step }
|
|
|
|
tx={ requestTx }
|
|
|
|
/>
|
2016-11-21 20:45:47 +01:00
|
|
|
);
|
|
|
|
|
2016-12-08 12:11:17 +01:00
|
|
|
case 3:
|
2017-01-23 13:39:52 +01:00
|
|
|
let receiver;
|
|
|
|
let hint;
|
|
|
|
|
2016-12-07 19:21:29 +01:00
|
|
|
if (method === 'sms') {
|
2016-12-23 15:40:04 +01:00
|
|
|
receiver = this.store.number;
|
2017-02-22 15:26:58 +01:00
|
|
|
hint = (
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.sms.enterCode'
|
|
|
|
defaultMessage='Enter the code you received via SMS.'
|
|
|
|
/>
|
|
|
|
);
|
2016-12-07 19:21:29 +01:00
|
|
|
} else if (method === 'email') {
|
2016-12-23 15:40:04 +01:00
|
|
|
receiver = this.store.email;
|
2017-02-22 15:26:58 +01:00
|
|
|
hint = (
|
|
|
|
<FormattedMessage
|
|
|
|
id='verification.email.enterCode'
|
|
|
|
defaultMessage='Enter the code you received via e-mail.'
|
|
|
|
/>
|
|
|
|
);
|
2016-12-07 19:21:29 +01:00
|
|
|
}
|
2016-11-21 20:45:47 +01:00
|
|
|
return (
|
|
|
|
<QueryCode
|
2016-12-07 19:21:29 +01:00
|
|
|
hint={ hint }
|
|
|
|
isCodeValid={ isCodeValid }
|
2017-01-13 09:51:25 +01:00
|
|
|
receiver={ receiver }
|
2016-11-21 20:45:47 +01:00
|
|
|
setCode={ setCode }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2016-12-08 12:11:17 +01:00
|
|
|
case 4:
|
2016-11-21 20:45:47 +01:00
|
|
|
return (
|
2017-01-13 09:51:25 +01:00
|
|
|
<SendConfirmation
|
|
|
|
step={ step }
|
|
|
|
tx={ confirmationTx }
|
|
|
|
/>
|
2016-11-21 20:45:47 +01:00
|
|
|
);
|
|
|
|
|
2016-12-08 12:11:17 +01:00
|
|
|
case 5:
|
2016-11-21 20:45:47 +01:00
|
|
|
return (
|
|
|
|
<Done />
|
|
|
|
);
|
|
|
|
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
2016-11-10 14:31:30 +01:00
|
|
|
}
|
2016-12-06 17:16:54 +01:00
|
|
|
|
2016-12-23 15:40:04 +01:00
|
|
|
onSelectMethod = (name) => {
|
|
|
|
const { api } = this.context;
|
|
|
|
const { account, isTest } = this.props;
|
|
|
|
|
|
|
|
if (name === 'sms') {
|
|
|
|
this.store = new SMSVerificationStore(api, account, isTest);
|
|
|
|
} else if (name === 'email') {
|
|
|
|
this.store = new EmailVerificationStore(api, account, isTest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:06:16 +02:00
|
|
|
selectMethod = (event, method) => {
|
|
|
|
this.setState({ method });
|
2016-12-06 17:16:54 +01:00
|
|
|
}
|
2016-11-03 18:01:24 +01:00
|
|
|
}
|
2016-12-23 15:40:04 +01:00
|
|
|
|
|
|
|
const mapStateToProps = (state) => ({
|
|
|
|
isTest: state.nodeStatus.isTest
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
2017-01-23 13:39:52 +01:00
|
|
|
null
|
2016-12-23 15:40:04 +01:00
|
|
|
)(Verification);
|