"use client"; import { zodResolver } from "@hookform/resolvers/zod"; import { Dispatch, SetStateAction } from "react"; import { useForm } from "react-hook-form"; import * as z from "zod"; import { updateProvider } from "@/actions/providers"; import { SaveIcon } from "@/components/icons"; import { useToast } from "@/components/ui"; import { CustomButton, CustomInput } from "@/components/ui/custom"; import { Form } from "@/components/ui/form"; import { scheduleScanFormSchema } from "@/types"; export const ScheduleForm = ({ providerId, scheduleDate, setIsOpen, }: { providerId: string; scheduleDate: string; setIsOpen: Dispatch>; }) => { const formSchema = scheduleScanFormSchema(); const form = useForm>({ resolver: zodResolver(formSchema), defaultValues: { providerId: providerId, scheduleDate: scheduleDate, }, }); const { toast } = useToast(); const isLoading = form.formState.isSubmitting; const onSubmitClient = async (values: z.infer) => { const formData = new FormData(); Object.entries(values).forEach( ([key, value]) => value !== undefined && formData.append(key, value), ); const data = await updateProvider(formData); if (data?.errors && data.errors.length > 0) { const error = data.errors[0]; const errorMessage = `${error.detail}`; // show error toast({ variant: "destructive", title: "Oops! Something went wrong", description: errorMessage, }); } else { toast({ title: "Success!", description: "The scan was scheduled successfully.", }); setIsOpen(false); // Close the modal on success } }; return (
setIsOpen(false)} isDisabled={isLoading} > Cancel } isDisabled={true} > {isLoading ? <>Loading : Schedule}
); };