import page from '@automattic/calypso-router'; import { Gridicon } from '@automattic/components'; import { localizeUrl } from '@automattic/i18n-utils'; import clsx from 'clsx'; import { localize } from 'i18n-calypso'; import { get } from 'lodash'; import PropTypes from 'prop-types'; import { Component } from 'react'; import { connect } from 'react-redux'; import LoginBlock from 'calypso/blocks/login'; import DocumentHead from 'calypso/components/data/document-head'; import LocaleSuggestions from 'calypso/components/locale-suggestions'; import Main from 'calypso/components/main'; import isAkismetRedirect from 'calypso/lib/akismet/is-akismet-redirect'; import { isJetpackCloudOAuth2Client, isA4AOAuth2Client, isBlazeProOAuth2Client, isWooOAuth2Client, isStudioAppOAuth2Client, isCrowdsignalOAuth2Client, isVIPOAuth2Client, } from 'calypso/lib/oauth2-clients'; import { login } from 'calypso/lib/paths'; import { getHeaderText } from 'calypso/login/wp-login/hooks/get-header-text'; import { recordPageViewWithClientId as recordPageView, recordTracksEventWithClientId as recordTracksEvent, enhanceWithSiteType, } from 'calypso/state/analytics/actions'; import { wasManualRenewalImmediateLoginAttempted } from 'calypso/state/immediate-login/selectors'; import { getRedirectToOriginal } from 'calypso/state/login/selectors'; import { getCurrentOAuth2Client } from 'calypso/state/oauth2-clients/ui/selectors'; import getCurrentLocaleSlug from 'calypso/state/selectors/get-current-locale-slug'; import getCurrentQueryArguments from 'calypso/state/selectors/get-current-query-arguments'; import getCurrentRoute from 'calypso/state/selectors/get-current-route'; import getInitialQueryArguments from 'calypso/state/selectors/get-initial-query-arguments'; import getIsBlazePro from 'calypso/state/selectors/get-is-blaze-pro'; import getIsWCCOM from 'calypso/state/selectors/get-is-wccom'; import getIsWoo from 'calypso/state/selectors/get-is-woo'; import isWooJPCFlow from 'calypso/state/selectors/is-woo-jpc-flow'; import { withEnhancers } from 'calypso/state/utils'; import { LoginContext } from '../login-context'; import OneLoginLayout from './components/one-login-layout'; import GravPoweredLoginBlockFooter from './gravatar/grav-powered-login-block-footer'; import getHeadingSubText from './hooks/get-heading-subtext'; import LoginBlockFooter from './login-block-footer'; import './style.scss'; export class Login extends Component { static propTypes = { clientId: PropTypes.string, isLoginView: PropTypes.bool, isJetpack: PropTypes.bool.isRequired, locale: PropTypes.string.isRequired, oauth2Client: PropTypes.object, path: PropTypes.string.isRequired, recordPageView: PropTypes.func.isRequired, socialConnect: PropTypes.bool, socialService: PropTypes.string, socialServiceResponse: PropTypes.object, translate: PropTypes.func.isRequired, twoFactorAuthType: PropTypes.string, action: PropTypes.string, isGravPoweredClient: PropTypes.bool, }; static defaultProps = { isJetpack: false, isLoginView: true }; static contextType = LoginContext; state = { usernameOrEmail: '', }; constructor( props ) { super(); this.state.usernameOrEmail = props.emailQueryParam ?? ''; } componentDidMount() { this.recordPageView(); this.updateHeadingText(); } componentDidUpdate( prevProps ) { // Record page view if relevant props changed if ( this.props.twoFactorAuthType !== prevProps.twoFactorAuthType ) { this.recordPageView(); } if ( this.props.socialConnect !== prevProps.socialConnect ) { this.recordPageView(); } // List all props that affect the heading text const headingProps = [ 'twoFactorAuthType', 'isManualRenewalImmediateLoginAttempt', 'socialConnect', 'linkingSocialService', 'action', 'oauth2Client', 'isWooJPC', 'isJetpack', 'isWCCOM', 'isFromAkismet', 'isFromAutomatticForAgenciesPlugin', 'isGravPoweredClient', 'twoFactorEnabled', 'currentQuery', 'translate', ]; const headingChanged = headingProps.some( ( key ) => this.props[ key ] !== prevProps[ key ] ); if ( headingChanged ) { this.updateHeadingText(); } } recordPageView() { const { socialConnect, twoFactorAuthType } = this.props; let url = '/log-in'; let title = 'Login'; if ( twoFactorAuthType ) { const authTypeTitle = twoFactorAuthType.charAt( 0 ).toUpperCase() + twoFactorAuthType.slice( 1 ); url += `/${ twoFactorAuthType }`; title += ` > Two-Step Authentication > ${ authTypeTitle }`; } if ( socialConnect ) { url += `/${ socialConnect }`; title += ' > Social Connect'; } this.props.recordPageView( url, title ); } handleUsernameChange( usernameOrEmail ) { this.setState( { usernameOrEmail } ); } renderI18nSuggestions() { const { locale, path, isLoginView } = this.props; if ( ! isLoginView ) { return null; } return ; } getLostPasswordLink() { if ( this.props.twoFactorAuthType ) { return null; } return ( { event.preventDefault(); this.props.recordTracksEvent( 'calypso_login_reset_password_link_click' ); page( login( { redirectTo: this.props.redirectTo, locale: this.props.locale, action: this.props.isWooJPC || this.props.isJetpack ? 'jetpack/lostpassword' : 'lostpassword', oauth2ClientId: this.props.oauth2Client && this.props.oauth2Client.id, from: get( this.props.currentQuery, 'from' ), } ) ); } } > { this.props.translate( 'Lost your password?' ) } ); } getLoginLink() { return ( { event.preventDefault(); page( login( { redirectTo: this.props.redirectTo, locale: this.props.locale, oauth2ClientId: this.props.oauth2Client && this.props.oauth2Client.id, from: get( this.props.currentQuery, 'from' ), isJetpack: this.props.isJetpack, } ) ); } } > { this.props.translate( 'Back to Login' ) } ); } renderContent( isSocialFirst ) { const { clientId, domain, isJetpack, isGravPoweredClient, oauth2Client, socialConnect, twoFactorAuthType, socialService, socialServiceResponse, fromSite, locale, signupUrl, action, currentRoute, isLoginView, } = this.props; // It's used to toggle UIs for the login page of Gravatar powered clients only (excluding 2FA relevant pages). const isGravPoweredLoginPage = isGravPoweredClient && ! currentRoute.startsWith( '/log-in/push' ) && ! currentRoute.startsWith( '/log-in/authenticator' ) && ! currentRoute.startsWith( '/log-in/sms' ) && ! currentRoute.startsWith( '/log-in/webauthn' ) && ! currentRoute.startsWith( '/log-in/backup' ); return ( ) : ( ) } locale={ locale } handleUsernameChange={ this.handleUsernameChange.bind( this ) } signupUrl={ signupUrl } isSocialFirst={ isSocialFirst } /> ); } updateHeadingText() { const { twoFactorAuthType, isManualRenewalImmediateLoginAttempt, socialConnect, linkingSocialService, action, oauth2Client, isWooJPC, isJetpack, isWCCOM, isFromAkismet, isFromAutomatticForAgenciesPlugin, isGravPoweredClient, twoFactorEnabled, currentQuery, translate, } = this.props; // TODO: remove isGravPoweredClient when login pages are unified. const isSocialFirst = ! isGravPoweredClient; const headingText = getHeaderText( { isSocialFirst, twoFactorAuthType, isManualRenewalImmediateLoginAttempt, socialConnect, linkingSocialService, action, oauth2Client, isWooJPC, isJetpack, isWCCOM, isFromAkismet, isFromAutomatticForAgenciesPlugin, isGravPoweredClient, twoFactorEnabled, currentQuery, translate, } ); const headingSubText = getHeadingSubText( { isSocialFirst, twoFactorAuthType, action, translate, isWooJPC, } ); this.context.setHeaders( { heading: headingText, subHeading: headingSubText?.primary, subHeadingSecondary: headingSubText?.secondary, } ); } render() { const { locale, translate, isGenericOauth, isGravPoweredClient, isJetpack, isFromAkismet } = this.props; const canonicalUrl = localizeUrl( 'https://wordpress.com/log-in', locale ); // TODO: remove isGravPoweredClient when login pages are unified. const isSocialFirst = ! isGravPoweredClient; const mainContent = (
{ isGravPoweredClient && this.renderI18nSuggestions() }
{ this.renderContent( isSocialFirst ) }
{ ! isGravPoweredClient && this.renderI18nSuggestions() }
); return ( <> { ! isGravPoweredClient && ( { mainContent } ) } { isGravPoweredClient && mainContent } ); } } export default connect( ( state, props ) => { const currentQuery = getCurrentQueryArguments( state ); const oauth2Client = getCurrentOAuth2Client( state ); const currentRoute = getCurrentRoute( state ); return { locale: getCurrentLocaleSlug( state ), oauth2Client, isLoginView: ! props.twoFactorAuthType && ! props.socialConnect && // React lost password screen. ! currentRoute.includes( '/lostpassword' ) && // When user clicks on the signup link, it changes the route but it doesn't immediately render the signup page // So we need to check if the current route is not the signup route to avoid flickering ! currentRoute.includes( '/start' ), emailQueryParam: currentQuery.email_address || getInitialQueryArguments( state ).email_address, isFromAkismet: isAkismetRedirect( new URLSearchParams( getRedirectToOriginal( state )?.split( '?' )[ 1 ] ).get( 'back' ) ), isWooJPC: isWooJPCFlow( state ), isWCCOM: getIsWCCOM( state ), isWoo: getIsWoo( state ), isBlazePro: getIsBlazePro( state ), // This applies to all oauth screens except for A4A, Blaze Pro, Jetpack, Woo. isGenericOauth: oauth2Client && ! isA4AOAuth2Client( oauth2Client ) && ! isBlazeProOAuth2Client( oauth2Client ) && ! isJetpackCloudOAuth2Client( oauth2Client ) && ! isWooOAuth2Client( oauth2Client ) && ! isCrowdsignalOAuth2Client( oauth2Client ) && ! isStudioAppOAuth2Client( oauth2Client ) && ! isVIPOAuth2Client( oauth2Client ), currentRoute, currentQuery, redirectTo: getRedirectToOriginal( state ), isFromAutomatticForAgenciesPlugin: 'automattic-for-agencies-client' === get( getCurrentQueryArguments( state ), 'from' ) || 'automattic-for-agencies-client' === new URLSearchParams( getRedirectToOriginal( state )?.split( '?' )[ 1 ] ).get( 'from' ), isManualRenewalImmediateLoginAttempt: wasManualRenewalImmediateLoginAttempted( state ), }; }, { recordPageView: withEnhancers( recordPageView, [ enhanceWithSiteType ] ), recordTracksEvent, } )( localize( Login ) );