revert redirect after signin until we can signin users from verfication token
This commit is contained in:
parent
c78e1e2970
commit
22586c802c
1 changed files with 10 additions and 12 deletions
|
@ -1,6 +1,5 @@
|
||||||
// @flow
|
// @flow
|
||||||
import * as PAGES from 'constants/pages';
|
import * as PAGES from 'constants/pages';
|
||||||
import { SITE_NAME } from 'config';
|
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { withRouter } from 'react-router';
|
import { withRouter } from 'react-router';
|
||||||
import Page from 'component/page';
|
import Page from 'component/page';
|
||||||
|
@ -11,13 +10,13 @@ import I18nMessage from 'component/i18nMessage';
|
||||||
import Card from 'component/common/card';
|
import Card from 'component/common/card';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
history: { push: string => void, replace: string => void, location: { search: string } },
|
history: { push: string => void, location: { search: string } },
|
||||||
doToast: ({}) => void,
|
doToast: ({}) => void,
|
||||||
};
|
};
|
||||||
|
|
||||||
function SignInVerifyPage(props: Props) {
|
function SignInVerifyPage(props: Props) {
|
||||||
const {
|
const {
|
||||||
history: { push, replace, location },
|
history: { push, location },
|
||||||
doToast,
|
doToast,
|
||||||
} = props;
|
} = props;
|
||||||
const [isAuthenticationSuccess, setIsAuthenticationSuccess] = useState(false);
|
const [isAuthenticationSuccess, setIsAuthenticationSuccess] = useState(false);
|
||||||
|
@ -65,13 +64,6 @@ function SignInVerifyPage(props: Props) {
|
||||||
};
|
};
|
||||||
}, [needsRecaptcha, captchaLoaded]);
|
}, [needsRecaptcha, captchaLoaded]);
|
||||||
|
|
||||||
React.useEffect(() => {
|
|
||||||
if (isAuthenticationSuccess) {
|
|
||||||
doToast({ message: __('You are now signed in.') });
|
|
||||||
replace('/');
|
|
||||||
}
|
|
||||||
}, [isAuthenticationSuccess, replace, doToast]);
|
|
||||||
|
|
||||||
function onCaptchaChange(value) {
|
function onCaptchaChange(value) {
|
||||||
verifyUser(value);
|
verifyUser(value);
|
||||||
}
|
}
|
||||||
|
@ -99,10 +91,16 @@ function SignInVerifyPage(props: Props) {
|
||||||
<Page authPage className="main--auth-page">
|
<Page authPage className="main--auth-page">
|
||||||
<div className="main__sign-up">
|
<div className="main__sign-up">
|
||||||
<Card
|
<Card
|
||||||
title={__('Sign In to %SITE_NAME%', { SITE_NAME })}
|
title={isAuthenticationSuccess ? __('Sign In Success!') : __('Sign In to lbry.tv')}
|
||||||
subtitle={
|
subtitle={
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<p>{needsRecaptcha ? null : __('Welcome back! You are automatically being signed in.')}</p>
|
<p>
|
||||||
|
{isAuthenticationSuccess
|
||||||
|
? __('You can now close this tab.')
|
||||||
|
: needsRecaptcha
|
||||||
|
? null
|
||||||
|
: __('Welcome back! You are automatically being signed in.')}
|
||||||
|
</p>
|
||||||
{showCaptchaMessage && !isAuthenticationSuccess && (
|
{showCaptchaMessage && !isAuthenticationSuccess && (
|
||||||
<p>
|
<p>
|
||||||
<I18nMessage
|
<I18nMessage
|
||||||
|
|
Loading…
Add table
Reference in a new issue