File size: 1,676 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 |
import { CompactCard } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';
import { useCallback } from 'react';
import VerticalNavItemEnhanced from 'calypso/components/vertical-nav/item/enhanced';
import { gaRecordEvent } from 'calypso/lib/analytics/ga';
import {
APP_BASED_2FA_VALIDATE_STEP,
SMS_BASED_2FA_SETUP_ENTER_PHONE_STEP,
} from 'calypso/me/security-2fa-setup';
import './style.scss';
const Security2faInitialSetup = ( { onSuccess } ) => {
const translate = useTranslate();
const handleClick = useCallback(
( event, authMethod ) => {
gaRecordEvent( 'Me', 'Clicked On 2fa Get Started Button' );
onSuccess( event, authMethod );
},
[ onSuccess ]
);
return (
<>
<CompactCard>
{ translate(
'Keep your account extra safe with Two-Step Authentication. You’ll use your password plus a temporary code from your phone to sign in.'
) }
</CompactCard>
<VerticalNavItemEnhanced
className="security-initial-setup-nav-item"
gridicon="phone"
onClick={ ( event ) => handleClick( event, APP_BASED_2FA_VALIDATE_STEP ) }
text={ translate( 'Set up using an app' ) }
description={ translate(
'Set up with an app. Use an app to generate two-step authentication codes.'
) }
/>
<VerticalNavItemEnhanced
className="security-initial-setup-nav-item"
gridicon="comment"
onClick={ ( event ) => handleClick( event, SMS_BASED_2FA_SETUP_ENTER_PHONE_STEP ) }
text={ translate( 'Set up using SMS' ) }
description={ translate(
'Set up with SMS. Receive two-step authentication codes by text message.'
) }
/>
</>
);
};
export default Security2faInitialSetup;
|