File size: 4,342 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 |
import { FormLabel } from '@automattic/components';
import debugFactory from 'debug';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import FormButton from 'calypso/components/forms/form-button';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import FormVerificationCodeInput from 'calypso/components/forms/form-verification-code-input';
import Notice from 'calypso/components/notice';
import { gaRecordEvent } from 'calypso/lib/analytics/ga';
import { bumpTwoStepAuthMCStat } from 'calypso/lib/two-step-authorization';
import wp from 'calypso/lib/wp';
import './style.scss';
const debug = debugFactory( 'calypso:me:security:2fa-backup-codes-prompt' );
class Security2faBackupCodesPrompt extends Component {
static displayName = 'Security2faBackupCodesPrompt';
static propTypes = {
onPrintAgain: PropTypes.func,
onSuccess: PropTypes.func.isRequired,
};
state = {
backupCodeEntry: '',
lastError: false,
submittingCode: false,
};
componentDidMount() {
debug( this.constructor.displayName + ' React component is mounted.' );
}
componentWillUnmount() {
debug( this.constructor.displayName + ' React component will unmount.' );
}
onVerify = ( event ) => {
event.preventDefault();
this.setState( { submittingCode: true } );
wp.req.post(
'/me/two-step/validate',
{
code: this.state.backupCodeEntry.replace( /\s/g, '' ),
action: 'create-backup-receipt',
},
( error, data ) => {
if ( data ) {
bumpTwoStepAuthMCStat(
data.success ? 'backup-code-validate-success' : 'backup-code-validate-failure'
);
}
this.setState( { submittingCode: false } );
if ( error ) {
this.setState( {
lastError: this.props.translate(
'Unable to validate codes right now. Please try again later.'
),
} );
return;
}
if ( ! data.success ) {
this.setState( {
lastError: this.props.translate( 'You entered an invalid code. Please try again.' ),
} );
return;
}
this.props.onSuccess();
}
);
};
onPrintAgain = ( event ) => {
event.preventDefault();
this.props.onPrintAgain();
};
clearLastError = () => {
this.setState( { lastError: false } );
};
onClickPrintButton = ( event ) => {
gaRecordEvent( 'Me', 'Clicked On 2fa Print Backup Codes Again Button' );
this.onPrintAgain( event );
};
possiblyRenderPrintAgainButton = () => {
if ( ! this.props.onPrintAgain ) {
return null;
}
return (
<FormButton
className="security-2fa-backup-codes-prompt__print"
disabled={ this.state.submittingCode }
isPrimary={ false }
onClick={ this.onClickPrintButton }
type="button"
>
{ this.props.translate( "Didn't Print The Codes?" ) }
</FormButton>
);
};
possiblyRenderError = () => {
if ( ! this.state.lastError ) {
return null;
}
return (
<Notice
status="is-error"
onDismissClick={ this.clearLastError }
text={ this.state.lastError }
/>
);
};
render() {
return (
<form className="security-2fa-backup-codes-prompt" onSubmit={ this.onVerify }>
<FormFieldset>
<FormLabel htmlFor="backup-code-entry">
{ this.props.translate( 'Type a Backup Code to Verify' ) }
</FormLabel>
<FormVerificationCodeInput
disabled={ this.state.submittingCode }
name="backupCodeEntry"
method="backup"
onFocus={ function () {
gaRecordEvent(
'Me',
'Focused On 2fa Backup Codes Confirm Printed Backup Codes Input'
);
} }
value={ this.state.backupCodeEntry }
onChange={ this.handleChange }
/>
</FormFieldset>
{ this.possiblyRenderError() }
{ this.possiblyRenderPrintAgainButton() }
<FormButton
className="security-2fa-backup-codes-prompt__verify"
disabled={ this.state.submittingCode }
onClick={ function () {
gaRecordEvent( 'Me', 'Clicked On 2fa Backup Codes Verify Button' );
} }
>
{ this.state.submittingCode
? this.props.translate( 'Verifying…' )
: this.props.translate( 'Verify' ) }
</FormButton>
</form>
);
}
handleChange = ( e ) => {
const { name, value } = e.currentTarget;
this.setState( { [ name ]: value } );
};
}
export default localize( Security2faBackupCodesPrompt );
|