Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Button, Card } from '@automattic/components';
import { localize } from 'i18n-calypso';
import { Component } from 'react';
import { connect } from 'react-redux';
import { Banner } from 'calypso/components/banner';
import SectionHeader from 'calypso/components/section-header';
import { bumpTwoStepAuthMCStat } from 'calypso/lib/two-step-authorization';
import wp from 'calypso/lib/wp';
import Security2faBackupCodesList from 'calypso/me/security-2fa-backup-codes-list';
import Security2faBackupCodesPrompt from 'calypso/me/security-2fa-backup-codes-prompt';
import { recordGoogleEvent } from 'calypso/state/analytics/actions';
import getUserSetting from 'calypso/state/selectors/get-user-setting';
import './style.scss';
class Security2faBackupCodes extends Component {
constructor( props ) {
super( props );
const printed = this.props.backupCodesPrinted;
this.state = {
printed,
verified: printed,
showPrompt: ! printed,
backupCodes: [],
generatingCodes: false,
};
}
handleGenerateButtonClick = () => {
this.props.recordGoogleEvent( 'Me', 'Clicked on Generate New Backup Codes Button' );
this.setState( {
generatingCodes: true,
verified: false,
showPrompt: true,
} );
wp.req.post( '/me/two-step/backup-codes/new', ( error, data ) => {
if ( ! error ) {
bumpTwoStepAuthMCStat( 'new-backup-codes-success' );
this.setState( {
backupCodes: data.codes,
generatingCodes: false,
} );
}
} );
};
onNextStep = () => {
this.setState( {
backupCodes: [],
printed: true,
} );
};
onVerified = () => {
this.setState( {
printed: true,
verified: true,
showPrompt: false,
} );
};
renderStatus() {
const { translate } = this.props;
if ( ! this.state.printed ) {
return (
<Banner
className="warning"
title={ translate( 'Backup codes have not been verified.' ) }
icon="info-outline"
/>
);
}
if ( ! this.state.verified ) {
return (
<Banner
title={ translate(
'New backup codes have just been generated, but need to be verified.'
) }
icon="info-outline"
/>
);
}
return (
<Banner
className="success"
title={ translate( 'Backup codes have been verified.' ) }
icon="checkmark"
/>
);
}
renderList() {
return (
<Security2faBackupCodesList
backupCodes={ this.state.backupCodes }
onNextStep={ this.onNextStep }
showList
/>
);
}
renderPrompt() {
return (
<div>
<p>
{ this.props.translate(
'Backup codes let you access your account if your phone is lost or stolen, or even just accidentally run through the washing machine!'
) }
</p>
{ this.renderStatus() }
{ this.state.showPrompt && <Security2faBackupCodesPrompt onSuccess={ this.onVerified } /> }
</div>
);
}
render() {
return (
<div className="security-2fa-backup-codes">
<SectionHeader label={ this.props.translate( 'Backup codes' ) }>
<Button
compact
disabled={ this.state.generatingCodes || !! this.state.backupCodes.length }
onClick={ this.handleGenerateButtonClick }
>
{ this.props.translate( 'Generate new backup codes' ) }
</Button>
</SectionHeader>
<Card>
{ this.state.generatingCodes || this.state.backupCodes.length
? this.renderList()
: this.renderPrompt() }
</Card>
</div>
);
}
}
export default connect(
( state ) => ( {
backupCodesPrinted: getUserSetting( state, 'two_step_backup_codes_printed' ),
} ),
{
recordGoogleEvent,
}
)( localize( Security2faBackupCodes ) );