mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 17:01:25 +00:00
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import Button from 'component/button';
|
|
import UserEmailResetButton from 'component/userEmailResetButton';
|
|
|
|
type Props = {
|
|
email: string,
|
|
resendVerificationEmail: string => void,
|
|
checkEmailVerified: () => void,
|
|
user: {
|
|
has_verified_email: boolean,
|
|
},
|
|
};
|
|
|
|
class UserEmailVerify extends React.PureComponent<Props> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
this.emailVerifyCheckInterval = null;
|
|
(this: any).handleResendVerificationEmail = this.handleResendVerificationEmail.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.emailVerifyCheckInterval = setInterval(() => this.checkIfVerified(), 5000);
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
const { user } = this.props;
|
|
if (this.emailVerifyCheckInterval && user && user.has_verified_email) {
|
|
clearInterval(this.emailVerifyCheckInterval);
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.emailVerifyCheckInterval) {
|
|
clearInterval(this.emailVerifyCheckInterval);
|
|
}
|
|
}
|
|
|
|
handleResendVerificationEmail() {
|
|
this.props.resendVerificationEmail(this.props.email);
|
|
}
|
|
|
|
checkIfVerified() {
|
|
const { checkEmailVerified } = this.props;
|
|
checkEmailVerified();
|
|
}
|
|
|
|
emailVerifyCheckInterval: ?IntervalID;
|
|
|
|
render() {
|
|
const { email } = this.props;
|
|
|
|
return (
|
|
<React.Fragment>
|
|
<p className="card__subtitle">
|
|
{__('An email was sent to')} {email}.{' '}
|
|
{__('Follow the link and you will be good to go. This will update automatically.')}
|
|
</p>
|
|
|
|
<div className="card__actions">
|
|
<Button
|
|
button="primary"
|
|
label={__('Resend Verification Email')}
|
|
onClick={this.handleResendVerificationEmail}
|
|
/>
|
|
<UserEmailResetButton />
|
|
</div>
|
|
|
|
<p className="help">
|
|
{__('Email')} <Button button="link" href="mailto:help@lbry.com" label="help@lbry.com" /> or join our{' '}
|
|
<Button button="link" href="https://chat.lbry.com" label="chat" />{' '}
|
|
{__('if you encounter any trouble verifying.')}
|
|
</p>
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default UserEmailVerify;
|