* fix conflicts * fix remove separate function and call mutation directly * feat: add new react-otp-input to enable 2fa flow * fix: comment out * fix: remove next-auth 4.9.0 from yarn.lock * fix: delete account test fill password before submit * fix: test delete accc * fix typo in delete acc test * Update apps/web/components/security/EnableTwoFactorModal.tsx Co-authored-by: Omar López <zomars@me.com> * feat: remove react-otp-input reuse TwoFactor * feat: add center props to TwoFactor * fix: no v2 * feat: disable 2fa requires 2fa api * feat: make 2fa required to disable 2fa * fix: FormEvent instead of SyntheticEvent * fix: types * fix: move disable 2fa form to fully use RHF * fix if (e) e.preventDefault(); * feat: fix remove account * fix: remove react-otp-input types * fix: separate onConfirm to add to form handleSubmit * fix: types e:SyntethicEvent * fix: types * fix: import packages lib not web lib * Update apps/web/components/security/EnableTwoFactorModal.tsx Co-authored-by: Omar López <zomars@me.com> * Update apps/web/components/security/EnableTwoFactorModal.tsx Co-authored-by: Omar López <zomars@me.com> * fix: no import from web * fix: import * fix: remove duplicate FormEvent * fix: upgrade ErrorCode imports * fix profile types totpCode not optional * fix: build pass * fix: dont touch test delete-account * fix: type * fix: add data-testid to password field * fix: conflicts w syncServices * Build fixes * Fixes delete account e2e test Co-authored-by: Agusti Fernandez Pardo <git@agusti.me> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import useDigitInput from "react-digit-input";
|
|
import { useFormContext } from "react-hook-form";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { Label, Input } from "@calcom/ui/form/fields";
|
|
|
|
export default function TwoFactor({ center = true }) {
|
|
const [value, onChange] = useState("");
|
|
const { t } = useLocale();
|
|
const methods = useFormContext();
|
|
|
|
const digits = useDigitInput({
|
|
acceptedCharacters: /^[0-9]$/,
|
|
length: 6,
|
|
value,
|
|
onChange,
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (value) methods.setValue("totpCode", value);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [value]);
|
|
|
|
const className = "h-12 w-12 !text-xl text-center";
|
|
|
|
return (
|
|
<div className={center ? "mx-auto !mt-0 max-w-sm" : "!mt-0 max-w-sm"}>
|
|
<Label className="mt-4"> {t("2fa_code")}</Label>
|
|
|
|
<p className="mb-4 text-sm text-gray-500">{t("2fa_enabled_instructions")}</p>
|
|
<input hidden type="hidden" value={value} {...methods.register("totpCode")} />
|
|
<div className="flex flex-row justify-between">
|
|
<Input
|
|
className={className}
|
|
name="2fa1"
|
|
inputMode="decimal"
|
|
{...digits[0]}
|
|
autoFocus
|
|
autoComplete="one-time-code"
|
|
/>
|
|
<Input className={className} name="2fa2" inputMode="decimal" {...digits[1]} />
|
|
<Input className={className} name="2fa3" inputMode="decimal" {...digits[2]} />
|
|
<Input className={className} name="2fa4" inputMode="decimal" {...digits[3]} />
|
|
<Input className={className} name="2fa5" inputMode="decimal" {...digits[4]} />
|
|
<Input className={className} name="2fa6" inputMode="decimal" {...digits[5]} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|