2019-03-18 06:09:50 +01:00
|
|
|
// @flow
|
|
|
|
import * as React from 'react';
|
2018-03-26 23:32:43 +02:00
|
|
|
import Button from 'component/button';
|
2019-02-13 17:27:20 +01:00
|
|
|
import { Form, FormField, Submit } from 'component/common/form';
|
2017-06-03 01:09:52 +02:00
|
|
|
|
2019-03-18 06:09:50 +01:00
|
|
|
type Props = {
|
|
|
|
verifyUserPhone: string => void,
|
|
|
|
resetPhone: () => void,
|
|
|
|
cancelButton: React.Node,
|
|
|
|
phoneErrorMessage: string,
|
|
|
|
phone: string,
|
|
|
|
countryCode: string,
|
|
|
|
};
|
|
|
|
|
|
|
|
type State = {
|
|
|
|
code: string,
|
|
|
|
};
|
|
|
|
|
|
|
|
class UserPhoneVerify extends React.PureComponent<Props, State> {
|
|
|
|
constructor(props: Props) {
|
2017-06-03 01:09:52 +02:00
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2017-12-21 22:08:54 +01:00
|
|
|
code: '',
|
2017-06-03 01:09:52 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-03-18 06:09:50 +01:00
|
|
|
handleCodeChanged(event: SyntheticInputEvent<*>) {
|
2017-06-03 01:09:52 +02:00
|
|
|
this.setState({
|
2017-07-19 01:00:13 +02:00
|
|
|
code: String(event.target.value).trim(),
|
2017-06-03 01:09:52 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-11 03:25:24 +02:00
|
|
|
handleSubmit() {
|
|
|
|
const { code } = this.state;
|
2018-01-22 08:09:11 +01:00
|
|
|
this.props.verifyUserPhone(code);
|
2017-06-03 01:09:52 +02:00
|
|
|
}
|
|
|
|
|
2018-01-23 00:26:34 +01:00
|
|
|
reset() {
|
|
|
|
const { resetPhone } = this.props;
|
|
|
|
resetPhone();
|
|
|
|
}
|
|
|
|
|
2017-06-03 01:09:52 +02:00
|
|
|
render() {
|
2018-01-22 08:09:11 +01:00
|
|
|
const { cancelButton, phoneErrorMessage, phone, countryCode } = this.props;
|
2017-06-08 23:15:34 +02:00
|
|
|
return (
|
2019-01-08 19:48:09 +01:00
|
|
|
<React.Fragment>
|
2019-03-18 06:09:50 +01:00
|
|
|
<section className='card__content'>
|
2019-01-14 19:40:06 +01:00
|
|
|
<p>
|
2019-01-08 19:48:09 +01:00
|
|
|
{' '}
|
|
|
|
{__(
|
|
|
|
`Please enter the verification code sent to +${countryCode}${phone}. Didn't receive it? `
|
|
|
|
)}
|
2019-03-18 06:09:50 +01:00
|
|
|
<Button button='link' onClick={this.reset.bind(this)} label='Go back.' />
|
2019-01-08 19:48:09 +01:00
|
|
|
</p>
|
2019-01-14 19:40:06 +01:00
|
|
|
</section>
|
2019-03-18 06:09:50 +01:00
|
|
|
<Form className='card__content' onSubmit={this.handleSubmit.bind(this)}>
|
2019-02-13 17:27:20 +01:00
|
|
|
<FormField
|
2019-03-18 06:09:50 +01:00
|
|
|
type='text'
|
|
|
|
name='code'
|
|
|
|
placeholder='1234'
|
2019-02-13 17:27:20 +01:00
|
|
|
value={this.state.code}
|
|
|
|
onChange={event => {
|
|
|
|
this.handleCodeChanged(event);
|
|
|
|
}}
|
|
|
|
label={__('Verification Code')}
|
|
|
|
error={phoneErrorMessage}
|
|
|
|
inputButton={<Submit label={__('Verify')} />}
|
|
|
|
/>
|
2019-01-08 19:48:09 +01:00
|
|
|
|
2019-03-18 06:09:50 +01:00
|
|
|
<div className='card__actions'>{cancelButton}</div>
|
2019-01-08 19:48:09 +01:00
|
|
|
</Form>
|
2018-12-19 06:44:53 +01:00
|
|
|
|
2019-03-18 06:09:50 +01:00
|
|
|
<p className='help'>
|
|
|
|
{__('Email')} <Button button='link' href='mailto:help@lbry.io' label='help@lbry.io' /> or
|
|
|
|
join our <Button button='link' href='https://chat.lbry.io' label='chat' />{' '}
|
2018-12-19 06:44:53 +01:00
|
|
|
{__('if you encounter any trouble with your code.')}
|
|
|
|
</p>
|
2019-01-08 19:48:09 +01:00
|
|
|
</React.Fragment>
|
2017-06-08 23:15:34 +02:00
|
|
|
);
|
2017-06-03 01:09:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-22 08:09:11 +01:00
|
|
|
export default UserPhoneVerify;
|