lbry-desktop/ui/page/signInVerify/view.jsx

130 lines
3.9 KiB
React
Raw Normal View History

2019-11-14 01:33:36 +01:00
// @flow
import React, { useState } from 'react';
import { withRouter } from 'react-router';
import Page from 'component/page';
2019-11-14 15:34:55 +01:00
import ReCAPTCHA from 'react-google-recaptcha';
import Button from 'component/button';
2019-11-14 01:33:36 +01:00
import { Lbryio } from 'lbryinc';
import I18nMessage from 'component/i18nMessage';
2019-11-14 01:33:36 +01:00
import * as PAGES from 'constants/pages';
type Props = {
2019-11-14 15:34:55 +01:00
history: { push: string => void, location: { search: string } },
doToast: ({}) => void,
2019-11-14 01:33:36 +01:00
};
function SignInVerifyPage(props: Props) {
2019-11-14 15:34:55 +01:00
const {
history: { push, location },
doToast,
} = props;
2019-11-19 17:55:56 +01:00
const [isAuthenticationSuccess, setIsAuthenticationSuccess] = useState(false);
const [showCaptchaMessage, setShowCaptchaMessage] = useState(false);
const [captchaLoaded, setCaptchaLoaded] = useState(false);
2019-11-14 01:33:36 +01:00
const urlParams = new URLSearchParams(location.search);
const authToken = urlParams.get('auth_token');
const userSubmittedEmail = urlParams.get('email');
const verificationToken = urlParams.get('verification_token');
2019-11-19 17:55:56 +01:00
const needsRecaptcha = urlParams.get('needs_recaptcha') === 'true';
2019-11-14 01:33:36 +01:00
function onAuthError(message) {
doToast({
message: message || __('Authentication failure.'),
isError: true,
});
2019-11-14 15:30:26 +01:00
push(`/$/${PAGES.AUTH}`);
2019-11-14 01:33:36 +01:00
}
React.useEffect(() => {
if (!authToken || !userSubmittedEmail || !verificationToken) {
onAuthError(__('Invalid or expired sign-in link.'));
}
}, [authToken, userSubmittedEmail, verificationToken, doToast, push]);
2019-11-19 17:55:56 +01:00
React.useEffect(() => {
if (!needsRecaptcha) {
verifyUser();
}
}, [needsRecaptcha]);
React.useEffect(() => {
let captchaTimeout;
if (needsRecaptcha && !captchaLoaded) {
captchaTimeout = setTimeout(() => {
setShowCaptchaMessage(true);
}, 2000);
}
return () => {
if (captchaTimeout) {
clearTimeout(captchaTimeout);
}
};
}, [needsRecaptcha, captchaLoaded]);
2019-11-14 01:33:36 +01:00
function onCaptchaChange(value) {
2019-11-19 17:55:56 +01:00
verifyUser(value);
}
function onCaptchaReady() {
setCaptchaLoaded(true);
}
2019-11-19 17:55:56 +01:00
function verifyUser(captchaValue) {
2019-11-14 01:33:36 +01:00
Lbryio.call('user_email', 'confirm', {
auth_token: authToken,
email: userSubmittedEmail,
verification_token: verificationToken,
2019-11-19 17:55:56 +01:00
...(captchaValue ? { recaptcha: captchaValue } : {}),
2019-11-14 01:33:36 +01:00
})
2019-11-14 15:34:55 +01:00
.then(() => {
setIsAuthenticationSuccess(true);
})
.catch(() => {
onAuthError(__('Invalid captcha response or other authentication error.'));
});
2019-11-14 01:33:36 +01:00
}
return (
<Page authPage className="main--auth-page">
<section className="main--contained">
2019-11-14 15:34:55 +01:00
<h1 className="section__title--large">
{isAuthenticationSuccess ? __('Sign In Success!') : __('Sign In to lbry.tv')}
</h1>
<p className="section__subtitle">
2019-11-19 17:55:56 +01:00
{isAuthenticationSuccess
? __('You can now close this tab.')
: needsRecaptcha
? __('Click below to sign in to lbry.tv')
: __('Welcome back! You are automatically being signed in.')}
2019-11-14 15:34:55 +01:00
</p>
<p className="section__subtitle">
{showCaptchaMessage && !isAuthenticationSuccess && (
<I18nMessage
tokens={{
refresh: <Button button="link" label={__('refreshing')} onClick={() => window.location.reload()} />,
}}
>
Not seeing a captcha? Check your ad blocker or try %refresh%.
</I18nMessage>
)}
</p>
2019-11-19 17:55:56 +01:00
{!isAuthenticationSuccess && needsRecaptcha && (
2019-11-14 15:34:55 +01:00
<div className="section__actions">
<ReCAPTCHA
sitekey="6LePsJgUAAAAAFTuWOKRLnyoNKhm0HA4C3elrFMG"
onChange={onCaptchaChange}
asyncScriptOnLoad={onCaptchaReady}
2019-11-14 15:34:55 +01:00
onExpired={onAuthError}
onErrored={onAuthError}
/>
</div>
)}
2019-11-14 01:33:36 +01:00
</section>
</Page>
);
2019-11-14 15:34:55 +01:00
}
2019-11-14 01:33:36 +01:00
export default withRouter(SignInVerifyPage);