File size: 3,587 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 |
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 ) );
|