// @flow import React from 'react'; import BusyIndicator from 'component/common/busy-indicator'; import Button from 'component/button'; import UserEmailNew from 'component/userEmailNew'; import UserEmailVerify from 'component/userEmailVerify'; import UserVerify from 'component/userVerify'; import Page from 'component/page'; type Props = { isPending: boolean, email: string, // Not sure why it isn't recognizing that we are using this prop type // Something to do with how we are passing all the props through probably pathAfterAuth: string, // eslint-disable-line react/no-unused-prop-types user: ?{ has_verified_email: boolean, is_reward_approved: boolean, is_identity_verified: boolean, }, navigate: (string, ?{}) => void, }; export class AuthPage extends React.PureComponent { componentWillMount() { this.navigateIfAuthenticated(this.props); } componentWillReceiveProps(nextProps: Props) { this.navigateIfAuthenticated(nextProps); } getTitle() { const { email, isPending, user } = this.props; if (isPending || (user && !user.has_verified_email && !email)) { return __('Human Proofing'); } else if (user && !user.has_verified_email) { return __('Confirm Email'); } else if (user && !user.is_identity_verified && !user.is_reward_approved) { return __('Final Verification'); } return __('Welcome to LBRY'); } navigateIfAuthenticated = (props: Props) => { const { isPending, user, pathAfterAuth, navigate } = props; if ( !isPending && user && user.has_verified_email && (user.is_reward_approved || user.is_identity_verified) ) { navigate(pathAfterAuth); } }; renderMain() { const { email, isPending, user } = this.props; if (isPending) { return [, true]; } else if (user && !user.has_verified_email && !email) { return [, true]; } else if (user && !user.has_verified_email) { return [, true]; } else if (user && !user.is_identity_verified) { return [, false]; } return [{__('No further steps.')}, true]; } render() { const { navigate } = this.props; const [innerContent, useTemplate] = this.renderMain(); return ( {useTemplate ? (

{this.getTitle()}

{innerContent}
{`${__( 'This information is disclosed only to LBRY, Inc. and not to the LBRY network. It is only required to earn LBRY rewards and may be used to sync usage data across devices.' )} `}
) : ( innerContent )}
); } } export default AuthPage;