Version 3 of the kit: - Radix UI replaced with Base UI (using the Shadcn UI patterns) - next-intl replaces react-i18next - enhanceAction deprecated; usage moved to next-safe-action - main layout now wrapped with [locale] path segment - Teams only mode - Layout updates - Zod v4 - Next.js 16.2 - Typescript 6 - All other dependencies updated - Removed deprecated Edge CSRF - Dynamic Github Action runner
135 lines
3.2 KiB
TypeScript
135 lines
3.2 KiB
TypeScript
'use client';
|
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { useMutation } from '@tanstack/react-query';
|
|
import { useForm } from 'react-hook-form';
|
|
import * as z from 'zod';
|
|
|
|
import { useSupabase } from '@kit/supabase/hooks/use-supabase';
|
|
import { Alert, AlertDescription, AlertTitle } from '@kit/ui/alert';
|
|
import { Button } from '@kit/ui/button';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from '@kit/ui/form';
|
|
import { If } from '@kit/ui/if';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
import { useCaptcha } from '../captcha/client';
|
|
import { EmailInput } from './email-input';
|
|
|
|
export function ResendAuthLinkForm(props: {
|
|
redirectPath?: string;
|
|
captchaSiteKey?: string;
|
|
}) {
|
|
const captcha = useCaptcha({ siteKey: props.captchaSiteKey });
|
|
const resendLink = useResendLink(captcha.token);
|
|
const captchaLoading = !captcha.isReady;
|
|
|
|
const form = useForm({
|
|
resolver: zodResolver(z.object({ email: z.string().email() })),
|
|
defaultValues: {
|
|
email: '',
|
|
},
|
|
});
|
|
|
|
if (resendLink.data && !resendLink.isPending) {
|
|
return (
|
|
<Alert variant={'success'}>
|
|
<AlertTitle>
|
|
<Trans i18nKey={'auth.resendLinkSuccess'} />
|
|
</AlertTitle>
|
|
|
|
<AlertDescription>
|
|
<Trans
|
|
i18nKey={'auth.resendLinkSuccessDescription'}
|
|
defaults={'Success!'}
|
|
/>
|
|
</AlertDescription>
|
|
</Alert>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form
|
|
className={'flex flex-col space-y-2'}
|
|
onSubmit={form.handleSubmit((data) => {
|
|
const promise = resendLink.mutateAsync({
|
|
email: data.email,
|
|
redirectPath: props.redirectPath,
|
|
});
|
|
|
|
promise.finally(() => {
|
|
captcha.reset();
|
|
});
|
|
|
|
return promise;
|
|
})}
|
|
>
|
|
<FormField
|
|
name={'email'}
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem>
|
|
<FormControl>
|
|
<EmailInput data-test="email-input" {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
|
|
<Button type="submit" disabled={resendLink.isPending || captchaLoading}>
|
|
<If condition={captchaLoading}>
|
|
<Trans i18nKey={'auth.verifyingCaptcha'} />
|
|
</If>
|
|
|
|
<If condition={resendLink.isPending && !captchaLoading}>
|
|
<Trans i18nKey={'auth.resendingLink'} />
|
|
</If>
|
|
|
|
<If condition={!resendLink.isPending && !captchaLoading}>
|
|
<Trans i18nKey={'auth.resendLink'} defaults={'Resend Link'} />
|
|
</If>
|
|
</Button>
|
|
</form>
|
|
|
|
{captcha.field}
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
function useResendLink(captchaToken: string) {
|
|
const supabase = useSupabase();
|
|
|
|
const mutationFn = async (props: {
|
|
email: string;
|
|
redirectPath?: string;
|
|
}) => {
|
|
const response = await supabase.auth.resend({
|
|
email: props.email,
|
|
type: 'signup',
|
|
options: {
|
|
emailRedirectTo: props.redirectPath,
|
|
captchaToken,
|
|
},
|
|
});
|
|
|
|
if (response.error) {
|
|
throw response.error;
|
|
}
|
|
|
|
return response.data;
|
|
};
|
|
|
|
return useMutation({
|
|
mutationFn,
|
|
});
|
|
}
|