1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-23 15:07:43 +01:00
smov/src/pages/parts/auth/VerifyPassphrasePart.tsx

91 lines
2.4 KiB
TypeScript
Raw Normal View History

import { useState } from "react";
import { useGoogleReCaptcha } from "react-google-recaptcha-v3";
2023-11-05 01:16:45 +01:00
import { useAsyncFn } from "react-use";
import { Button } from "@/components/Button";
import { Icon, Icons } from "@/components/Icon";
import {
LargeCard,
LargeCardButtons,
LargeCardText,
} from "@/components/layout/LargeCard";
import { AuthInputBox } from "@/components/text-inputs/AuthInputBox";
import { useAuth } from "@/hooks/auth/useAuth";
2023-11-05 01:16:45 +01:00
import { AccountProfile } from "@/pages/parts/auth/AccountCreatePart";
interface VerifyPassphraseProps {
mnemonic: string | null;
hasCaptcha?: boolean;
userData: AccountProfile | null;
2023-11-05 01:16:45 +01:00
onNext?: () => void;
}
export function VerifyPassphrase(props: VerifyPassphraseProps) {
const [mnemonic, setMnemonic] = useState("");
const { register, restore } = useAuth();
2023-11-05 01:16:45 +01:00
const { executeRecaptcha } = useGoogleReCaptcha();
2023-11-05 01:16:45 +01:00
const [result, execute] = useAsyncFn(
async (inputMnemonic: string) => {
if (!props.mnemonic || !props.userData)
throw new Error("Data is not valid");
let recaptchaToken: string | undefined;
if (props.hasCaptcha) {
recaptchaToken = executeRecaptcha
? await executeRecaptcha()
: undefined;
if (!recaptchaToken) throw new Error("ReCaptcha validation failed");
}
2023-11-05 01:16:45 +01:00
if (inputMnemonic !== props.mnemonic)
throw new Error("Passphrase doesn't match");
await register({
mnemonic: inputMnemonic,
userData: props.userData,
recaptchaToken,
2023-11-05 01:16:45 +01:00
});
// TODO import (and sort out conflicts)
await restore();
2023-11-05 01:16:45 +01:00
props.onNext?.();
},
[props, register, restore]
2023-11-05 01:16:45 +01:00
);
return (
<LargeCard>
<LargeCardText
icon={<Icon icon={Icons.CIRCLE_CHECK} />}
title="Enter your passphrase"
>
If you&apos;ve already lost it, how will you ever be able to take care
of a child?
</LargeCardText>
<AuthInputBox
label="Your passphrase"
value={mnemonic}
onChange={setMnemonic}
/>
{result.error ? (
<p className="mt-3 text-authentication-errorText">
{result.error.message}
</p>
) : null}
<LargeCardButtons>
<Button
theme="purple"
loading={result.loading}
onClick={() => execute(mnemonic)}
>
Register
</Button>
</LargeCardButtons>
</LargeCard>
2023-11-05 01:16:45 +01:00
);
}