File size: 9,112 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
import { Button } from '@wordpress/components';
import clsx from 'clsx';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { useState, useEffect, useRef, createRef } from 'react';
import { connect } from 'react-redux';
import FormTextInput from 'calypso/components/forms/form-text-input';
import LoggedOutForm from 'calypso/components/logged-out-form';
import { navigate } from 'calypso/lib/navigate';
import { useDispatch } from 'calypso/state';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { rebootAfterLogin } from 'calypso/state/login/actions';
import { fetchMagicLoginAuthenticate } from 'calypso/state/login/magic-login/actions';
import { getRedirectToOriginal } from 'calypso/state/login/selectors';
import getMagicLoginAuthSuccessData from 'calypso/state/selectors/get-magic-login-auth-success-data';
import getMagicLoginRequestAuthError from 'calypso/state/selectors/get-magic-login-request-auth-error';
import getMagicLoginRequestedAuthSuccessfully from 'calypso/state/selectors/get-magic-login-requested-auth-successfully';
import isFetchingMagicLoginAuth from 'calypso/state/selectors/is-fetching-magic-login-auth';
import { useLoginContext } from '../login-context';
const CODE_LENGTH = 6;
const VerifyLoginCode = ( {
isValidating,
isAuthenticated,
authError,
publicToken,
usernameOrEmail,
authSuccessData,
fetchMagicLoginAuthenticate: authenticate,
redirectTo,
translate,
onResendEmail,
} ) => {
// Create an array of 6 empty strings for our verification code
const [ codeCharacters, setCodeCharacters ] = useState( Array( CODE_LENGTH ).fill( '' ) );
const [ isRedirecting, setIsRedirecting ] = useState( false );
const [ showError, setShowError ] = useState( false );
const dispatch = useDispatch();
const { setHeaders } = useLoginContext();
// Create refs for each input field to manage focus
const inputRefs = useRef( Array.from( { length: CODE_LENGTH }, () => createRef() ) );
useEffect( () => {
if ( isAuthenticated && authSuccessData ) {
setIsRedirecting( true );
const redirectUrl = authSuccessData.redirect_to;
if ( redirectUrl ) {
navigate( redirectUrl );
} else {
// Fall back to rebootAfterLogin which handles the default redirect to '/' and other edge cases
rebootAfterLogin( { magic_login: 1 } );
}
}
}, [ isAuthenticated, authSuccessData ] );
useEffect( () => {
setHeaders( {
heading: translate( 'Check your email for a code' ),
subHeading: translate( 'Enter the code sent to your email {{strong}}%(email)s{{/strong}}', {
args: {
email: usernameOrEmail,
},
components: {
strong: <strong />,
},
} ),
} );
}, [ setHeaders, translate, usernameOrEmail ] );
// Focus first input on page load for an easy input
useEffect( () => {
inputRefs?.current[ 0 ]?.current?.focus();
}, [] );
// Update local error state when authError changes
useEffect( () => {
setShowError( !! authError );
}, [ authError ] );
// Focus the last input when an auth error is detected
useEffect( () => {
if ( authError && inputRefs?.current[ CODE_LENGTH - 1 ]?.current ) {
// Focus the last input when error occurs
inputRefs.current[ CODE_LENGTH - 1 ]?.current.focus();
}
}, [ authError ] );
// Get the combined verification code from all inputs
const getVerificationCode = () => codeCharacters.join( '' );
// Handle changes to any individual input
const onCodeCharacterChange = ( index, value ) => {
// Clear error display when user starts editing
setShowError( false );
// Only allow a single character per input and no spaces
if ( value.length > 1 ) {
value = value.charAt( 0 );
}
// Skip spaces
if ( value === ' ' ) {
return;
}
// Update the code array
const newCodeCharacters = [ ...codeCharacters ];
newCodeCharacters[ index ] = value;
setCodeCharacters( newCodeCharacters );
// Auto-focus next input if the current one has a value
if ( value && index < CODE_LENGTH - 1 ) {
inputRefs.current[ index + 1 ].current.focus();
}
};
// Handle keyboard navigation between inputs
const onKeyDown = ( index, event ) => {
const { key } = event;
// Handle Backspace - move to previous input when current is empty
if ( key === 'Backspace' && ! codeCharacters[ index ] && index > 0 ) {
inputRefs.current[ index - 1 ].current.focus();
}
};
// Handle paste event to fill multiple inputs
const onPaste = ( index, event ) => {
event.preventDefault();
// Clear error display when user pastes new code
setShowError( false );
const pastedText = event.clipboardData.getData( 'text' ).trim();
if ( ! pastedText ) {
return;
}
// Remove spaces from pasted text
const filteredText = pastedText.replace( /\s/g, '' );
if ( ! filteredText ) {
return;
}
// Fill as many inputs as possible with the pasted text
const newCodeCharacters = [ ...codeCharacters ];
for ( let i = 0; i < Math.min( CODE_LENGTH - index, filteredText.length ); i++ ) {
newCodeCharacters[ index + i ] = filteredText.charAt( i );
}
setCodeCharacters( newCodeCharacters );
// Focus the next unfilled input or the last input if all are filled
const nextIndex = Math.min( index + filteredText.length, CODE_LENGTH - 1 );
inputRefs.current[ nextIndex ].current.focus();
};
const onSubmit = ( event ) => {
event.preventDefault();
const verificationCode = getVerificationCode();
if ( ! verificationCode || verificationCode.length !== CODE_LENGTH || ! publicToken ) {
return;
}
// Track magic code verification attempt
dispatch(
recordTracksEvent( 'calypso_login_magic_code_submit', {
code_length: verificationCode.length,
} )
);
// Format: publicToken:code
const loginToken = `${ publicToken }:${ btoa( verificationCode ) }`;
authenticate( loginToken, redirectTo, null, true );
};
const isDisabled = isValidating || isRedirecting;
const submitEnabled = getVerificationCode().length === CODE_LENGTH && ! isDisabled;
return (
<div className="magic-login__successfully-jetpack">
<LoggedOutForm
className={ clsx( 'magic-login__verify-code-form', {
'magic-login__verify-code-form--error': showError,
} ) }
onSubmit={ onSubmit }
>
<div className="magic-login__verify-code-field-container">
{ Array.from( { length: CODE_LENGTH } ).map( ( _, index ) => (
<FormTextInput
key={ index }
ref={ inputRefs.current[ index ] }
autoCapitalize="off"
className="magic-login__verify-code-character-field"
disabled={ isDisabled }
maxLength={ 1 }
value={ codeCharacters[ index ] }
onChange={ ( event ) => onCodeCharacterChange( index, event.target.value ) }
onKeyDown={ ( event ) => onKeyDown( index, event ) }
onPaste={ ( event ) => onPaste( index, event ) }
aria-label={ translate( 'Verification code character %(position)s of %(total)s', {
args: {
position: index + 1,
total: CODE_LENGTH,
},
} ) }
/>
) ) }
</div>
{ showError && (
<div className="magic-login__verify-code-error-message">
{ translate( "Oops, that's the wrong code. Please verify it." ) }
</div>
) }
<div className="magic-login__form-action">
<Button
variant="primary"
disabled={ ! submitEnabled && ! isDisabled }
isBusy={ isDisabled }
type="submit"
__next40pxDefaultSize
>
{ isDisabled ? translate( 'Verifying code…' ) : translate( 'Verify code' ) }
</Button>
</div>
</LoggedOutForm>
<div className="magic-login__successfully-jetpack-actions">
<p>
{ translate(
"Didn't get the code? Check your spam folder or {{button}}resend the email{{/button}}",
{
components: {
button: (
<Button
className="magic-login__resend-button"
variant="link"
onClick={ onResendEmail }
disabled={ isRedirecting }
/>
),
},
}
) }
</p>
<p>
{ translate( 'Wrong email or account? {{link}}Use a different account{{/link}}', {
components: {
link: <a className="magic-login__log-in-link" href="/log-in/jetpack" />,
},
} ) }
</p>
</div>
</div>
);
};
VerifyLoginCode.propTypes = {
isValidating: PropTypes.bool,
isAuthenticated: PropTypes.bool,
authError: PropTypes.object,
publicToken: PropTypes.string,
usernameOrEmail: PropTypes.string,
authSuccessData: PropTypes.object,
fetchMagicLoginAuthenticate: PropTypes.func.isRequired,
redirectTo: PropTypes.string,
onResendEmail: PropTypes.func,
};
const mapState = ( state ) => ( {
isValidating: isFetchingMagicLoginAuth( state ),
isAuthenticated: getMagicLoginRequestedAuthSuccessfully( state ),
authError: getMagicLoginRequestAuthError( state ),
redirectTo: getRedirectToOriginal( state ),
authSuccessData: getMagicLoginAuthSuccessData( state ),
} );
const mapDispatch = {
fetchMagicLoginAuthenticate,
recordTracksEvent,
};
export default connect( mapState, mapDispatch )( localize( VerifyLoginCode ) );
|