lbry-desktop/src/renderer/component/userFieldNew/view.jsx

125 lines
3.4 KiB
React
Raw Normal View History

import React from 'react';
import { Form, FormRow, Submit } from 'component/form.js';
2018-01-21 20:29:48 +01:00
import FormField from 'component/formField';
2018-01-11 07:16:03 +01:00
class UserFieldNew extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
2018-01-15 14:32:01 +01:00
phone: '',
email: '',
2018-01-18 06:09:08 +01:00
country_code: '+1',
};
2018-01-18 06:09:08 +01:00
this.formatPhone = this.formatPhone.bind(this);
}
formatPhone(value) {
const { country_code } = this.state;
value = value.replace(/\D/g, '');
if (country_code === '+1') {
if (!value) {
return '';
} else if (value.length < 4) {
return value;
} else if (value.length < 7) {
return `(${value.substring(0, 3)}) ${value.substring(3)}`;
}
const fullNumber = `(${value.substring(0, 3)}) ${value.substring(3, 6)}-${value.substring(
6
)}`;
return fullNumber.length <= 14 ? fullNumber : fullNumber.substring(0, 14);
}
return value;
}
formatCountryCode(value) {
if (value) {
return `+${value.replace(/\D/g, '')}`;
}
return '+1';
}
2018-01-15 14:32:01 +01:00
handleChanged(event, fieldType) {
2018-01-18 06:09:08 +01:00
const formatter = {
email: _ => _,
phone: this.formatPhone,
country_code: this.formatCountryCode,
};
this.setState({
2018-01-18 06:09:08 +01:00
[fieldType]: formatter[fieldType](event.target.value),
});
}
handleSubmit() {
2018-01-18 06:09:08 +01:00
const { email, phone, country_code } = this.state;
2018-01-15 14:32:01 +01:00
if (phone) {
2018-01-18 06:09:08 +01:00
this.props.addUserPhone(phone.replace(/\D/g, ''), country_code.replace(/\D/g, ''));
2018-01-15 14:32:01 +01:00
} else {
this.props.addUserEmail(email);
}
}
render() {
const { cancelButton, emailErrorMessage, phoneErrorMessage, isPending, fieldType } = this.props;
2018-01-15 14:32:01 +01:00
return fieldType === 'phone' ? (
<div>
<p>
{__(
'Enter your phone number and we will send you a verification code. We will not share your phone number with third parties.'
)}
</p>
<Form onSubmit={this.handleSubmit.bind(this)}>
2018-01-21 20:29:48 +01:00
<div className="form-row-phone">
<FormField type="select">
<option>(US) +1</option>
</FormField>
<FormRow
type="text"
placeholder={this.state.country_code === '+1' ? '(555) 555-5555' : '5555555555'}
name="phone"
value={this.state.phone}
errorMessage={phoneErrorMessage}
onChange={event => {
this.handleChanged(event, 'phone');
}}
/>
</div>
2018-01-15 14:32:01 +01:00
<div className="form-row-submit">
<Submit label="Submit" disabled={isPending} />
{cancelButton}
</div>
</Form>
</div>
) : (
<div>
2017-08-26 05:21:26 +02:00
<p>
{__("We'll let you know about LBRY updates, security issues, and great new content.")}
2017-08-26 05:21:26 +02:00
</p>
<p>{__("We'll never sell your email, and you can unsubscribe at any time.")}</p>
<Form onSubmit={this.handleSubmit.bind(this)}>
<FormRow
type="text"
label="Email"
placeholder="youremail@example.org"
name="email"
value={this.state.email}
errorMessage={emailErrorMessage}
onChange={event => {
2018-01-15 14:32:01 +01:00
this.handleChanged(event, 'email');
}}
/>
<div className="form-row-submit">
<Submit label="Submit" disabled={isPending} />
{cancelButton}
</div>
</Form>
</div>
2017-06-08 23:15:34 +02:00
);
}
}
2018-01-11 07:16:03 +01:00
export default UserFieldNew;