Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Card, FormInputValidation, FormLabel } from '@automattic/components';
import { localizeUrl } from '@automattic/i18n-utils';
import { Button } from '@wordpress/components';
import { localize } from 'i18n-calypso';
import { defer } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import ActionPanelLink from 'calypso/components/action-panel/link';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import FormVerificationCodeInput from 'calypso/components/forms/form-verification-code-input';
import { recordTracksEventWithClientId as recordTracksEvent } from 'calypso/state/analytics/actions';
import {
formUpdate,
loginUserWithTwoFactorVerificationCode,
sendSmsCode,
} from 'calypso/state/login/actions';
import { getTwoFactorAuthRequestError } from 'calypso/state/login/selectors';
import TwoFactorActions from './two-factor-actions';
import './verification-code-form.scss';
class VerificationCodeForm extends Component {
static propTypes = {
formUpdate: PropTypes.func.isRequired,
loginUserWithTwoFactorVerificationCode: PropTypes.func.isRequired,
onSuccess: PropTypes.func.isRequired,
recordTracksEvent: PropTypes.func.isRequired,
sendSmsCode: PropTypes.func.isRequired,
switchTwoFactorAuthType: PropTypes.func.isRequired,
translate: PropTypes.func.isRequired,
twoFactorAuthRequestError: PropTypes.object,
twoFactorAuthType: PropTypes.string.isRequired,
verificationCodeInputPlaceholder: PropTypes.string,
};
state = {
twoStepCode: '',
isDisabled: true,
};
componentDidMount() {
// eslint-disable-next-line react/no-did-mount-set-state
this.setState( { isDisabled: false }, () => {
this.input.focus();
} );
}
componentDidUpdate( prevProps ) {
const { twoFactorAuthRequestError, twoFactorAuthType } = this.props;
const hasNewError = ! prevProps.twoFactorAuthRequestError && twoFactorAuthRequestError;
const isNewPage = prevProps.twoFactorAuthType !== twoFactorAuthType;
if ( isNewPage || ( hasNewError && twoFactorAuthRequestError.field === 'twoStepCode' ) ) {
defer( () => this.input.focus() );
}
}
onChangeField = ( event ) => {
const { name, value = '' } = event.target;
this.props.formUpdate();
this.setState( { [ name ]: value } );
};
onSubmitForm = ( event ) => {
event.preventDefault();
const { onSuccess, twoFactorAuthType } = this.props;
const { twoStepCode } = this.state;
this.props.recordTracksEvent( 'calypso_login_two_factor_verification_code_submit' );
this.setState( { isDisabled: true } );
this.props
.loginUserWithTwoFactorVerificationCode( twoStepCode, twoFactorAuthType )
.then( () => {
this.props.recordTracksEvent( 'calypso_login_two_factor_verification_code_success' );
onSuccess();
} )
.catch( ( error ) => {
this.setState( { isDisabled: false } );
this.props.recordTracksEvent( 'calypso_login_two_factor_verification_code_failure', {
error_code: error.code,
error_message: error.message,
} );
} );
};
saveRef = ( input ) => {
this.input = input;
};
render() {
const {
translate,
twoFactorAuthRequestError: requestError,
twoFactorAuthType,
switchTwoFactorAuthType,
} = this.props;
let buttonText = translate( 'Continue' );
let helpText = translate( 'Enter the code from your authenticator app.' );
let labelText = translate( '6-Digit code' );
let smallPrint;
if ( twoFactorAuthType === 'sms' ) {
helpText = translate( 'Enter the code from the text message we sent you.' );
}
if ( twoFactorAuthType === 'backup' ) {
helpText = translate(
'Enter a backup code to continue. Use one of the 10 codes you received during setup.'
);
labelText = translate( 'Backup code' );
smallPrint = (
<div className="two-factor-authentication__small-print">
{ translate( 'Can’t access your backup codes? {{link}}Contact\u00A0support{{/link}}', {
components: {
link: (
<ActionPanelLink
href={ localizeUrl( 'https://wordpress.com/support/account-recovery/' ) }
/>
),
},
} ) }
</div>
);
buttonText = translate( 'Continue with backup code' );
}
return (
<form
className="two-factor-authentication__verification-code-form-wrapper"
onSubmit={ this.onSubmitForm }
>
<Card className="two-factor-authentication__verification-code-form">
<p className="verification-code-form__help-text">{ helpText }</p>
<FormFieldset>
<FormLabel htmlFor="twoStepCode">{ labelText }</FormLabel>
{ /* The use of `autoFocus` is intentional in this step. */ }
<FormVerificationCodeInput
autoFocus // eslint-disable-line jsx-a11y/no-autofocus
value={ this.state.twoStepCode }
onChange={ this.onChangeField }
isError={ requestError && requestError.field === 'twoStepCode' }
id="twoStepCode"
name="twoStepCode"
method={ twoFactorAuthType }
ref={ this.saveRef }
disabled={ this.state.isDisabled }
placeholder={ this.props.verificationCodeInputPlaceholder }
/>
{ requestError && requestError.field === 'twoStepCode' && (
<FormInputValidation isError text={ requestError.message } />
) }
{ smallPrint }
</FormFieldset>
<Button
type="submit"
variant="primary"
disabled={ this.state.isDisabled }
accessibleWhenDisabled
__next40pxDefaultSize
>
{ buttonText }
</Button>
</Card>
<TwoFactorActions
twoFactorAuthType={ twoFactorAuthType }
switchTwoFactorAuthType={ switchTwoFactorAuthType }
/>
</form>
);
}
}
export default connect(
( state ) => ( {
twoFactorAuthRequestError: getTwoFactorAuthRequestError( state ),
} ),
{
formUpdate,
loginUserWithTwoFactorVerificationCode,
recordTracksEvent,
sendSmsCode,
}
)( localize( VerificationCodeForm ) );