import React, { useContext, useEffect, useState } from 'react'; import { Dialog, DialogWrapperContext } from '@/components/elements/dialog'; import getTwoFactorTokenData, { TwoFactorTokenData } from '@/api/account/getTwoFactorTokenData'; import { useFlashKey } from '@/plugins/useFlash'; import tw from 'twin.macro'; import QRCode from 'qrcode.react'; import { Button } from '@/components/elements/button/index'; import Spinner from '@/components/elements/Spinner'; import { Input } from '@/components/elements/inputs'; import CopyOnClick from '@/components/elements/CopyOnClick'; import Tooltip from '@/components/elements/tooltip/Tooltip'; import enableAccountTwoFactor from '@/api/account/enableAccountTwoFactor'; import FlashMessageRender from '@/components/FlashMessageRender'; import { Actions, useStoreActions } from 'easy-peasy'; import { ApplicationStore } from '@/state'; import asDialog from '@/hoc/asDialog'; interface Props { onTokens: (tokens: string[]) => void; } const ConfigureTwoFactorForm = ({ onTokens }: Props) => { const [submitting, setSubmitting] = useState(false); const [value, setValue] = useState(''); const [token, setToken] = useState(null); const { clearAndAddHttpError } = useFlashKey('account:two-step'); const updateUserData = useStoreActions((actions: Actions) => actions.user.updateUserData); const { close } = useContext(DialogWrapperContext); useEffect(() => { getTwoFactorTokenData() .then(setToken) .catch((error) => clearAndAddHttpError(error)); }, []); const submit = () => { if (submitting) return; setSubmitting(true); clearAndAddHttpError(); enableAccountTwoFactor(value) .then((tokens) => { updateUserData({ useTotp: true }); onTokens(tokens); }) .catch((error) => { clearAndAddHttpError(error); setSubmitting(false); }); }; return ( <>
{!token ? ( ) : ( )}

{token?.secret.match(/.{1,4}/g)!.join(' ') || 'Loading...'}

Scan the QR code above using the two-step authentication app of your choice. Then, enter the 6-digit code generated into the field below.

setValue(e.currentTarget.value)} className={'mt-4'} placeholder={'000000'} type={'text'} inputMode={'numeric'} autoComplete={'one-time-code'} pattern={'\\d{6}'} /> Cancel ); }; export default asDialog({ title: 'Enable Two-Step Verification', description: "Help protect your account from unauthorized access. You'll be prompted for a verification code each time you sign in.", })(ConfigureTwoFactorForm);