mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
111 lines
3.0 KiB
TypeScript
111 lines
3.0 KiB
TypeScript
import useGlobalStore from '@/config/use-global';
|
|
import { Icon } from '@iconify/react';
|
|
import { Button } from '@shadcn/ui/button';
|
|
import { Form, FormControl, FormField, FormItem, FormMessage } from '@shadcn/ui/form';
|
|
import { Input } from '@shadcn/ui/input';
|
|
import { useForm } from '@shadcn/ui/lib/react-hook-form';
|
|
import { z, zodResolver } from '@shadcn/ui/lib/zod';
|
|
import { useTranslations } from 'next-intl';
|
|
import { useEffect, useRef, useState } from 'react';
|
|
|
|
export default function UserCheckForm({
|
|
loading,
|
|
onSubmit,
|
|
initialValues,
|
|
}: {
|
|
loading?: boolean;
|
|
onSubmit: (data: any) => void;
|
|
initialValues: any;
|
|
}) {
|
|
const t = useTranslations('auth.check');
|
|
const { common } = useGlobalStore();
|
|
const { register } = common;
|
|
const formSchema = z.object({
|
|
email: z
|
|
.string()
|
|
.email(t('email'))
|
|
.refine(
|
|
(email) => {
|
|
if (!register.enable_email_domain_suffix) return true;
|
|
const domain = email.split('@')[1] as string;
|
|
return register.email_domain_suffix_list.split('\n').includes(domain);
|
|
},
|
|
{
|
|
message: t('whitelist'),
|
|
},
|
|
),
|
|
});
|
|
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
defaultValues: initialValues,
|
|
});
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const typingTimeoutRef = useRef<NodeJS.Timeout | null>(null);
|
|
|
|
const handleEmailChange = (value: string) => {
|
|
form.setValue('email', value);
|
|
|
|
if (typingTimeoutRef.current) {
|
|
clearTimeout(typingTimeoutRef.current);
|
|
}
|
|
|
|
typingTimeoutRef.current = setTimeout(async () => {
|
|
const isValid = await form.trigger('email');
|
|
if (isValid) {
|
|
setIsSubmitting(true);
|
|
form.handleSubmit(onSubmit)();
|
|
} else {
|
|
setIsSubmitting(false);
|
|
}
|
|
}, 500);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (initialValues && initialValues.email) {
|
|
handleEmailChange(initialValues.email);
|
|
}
|
|
return () => {
|
|
if (typingTimeoutRef.current) {
|
|
clearTimeout(typingTimeoutRef.current);
|
|
}
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className='grid gap-6'>
|
|
<FormField
|
|
control={form.control}
|
|
name='email'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormControl>
|
|
<Input
|
|
disabled={loading}
|
|
placeholder='Enter your email...'
|
|
type='email'
|
|
{...field}
|
|
onChange={(e) => handleEmailChange(e.target.value)}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<Button type='submit' disabled={!isSubmitting}>
|
|
{isSubmitting ? (
|
|
<>
|
|
<Icon icon='mdi:loading' className='mr-2 size-5 animate-spin' />
|
|
{t('checking')}
|
|
</>
|
|
) : (
|
|
t('continue')
|
|
)}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|