import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { useForm } from "react-hook-form"; import { z } from "zod"; import { zodResolver } from "@hookform/resolvers/zod"; import { useEffect } from "react"; import { toast } from "sonner"; import { Input } from "@/components/ui/input"; import { AlertTriangle, SquarePen } from "lucide-react"; import { Textarea } from "@/components/ui/textarea"; import { api } from "@/utils/api"; const updateMysqlSchema = z.object({ name: z.string().min(1, { message: "Name is required", }), description: z.string().optional(), }); type UpdateMysql = z.infer; interface Props { mysqlId: string; } export const UpdateMysql = ({ mysqlId }: Props) => { const utils = api.useUtils(); const { mutateAsync, error, isError, isLoading } = api.mysql.update.useMutation(); const { data } = api.mysql.one.useQuery( { mysqlId, }, { enabled: !!mysqlId, }, ); const form = useForm({ defaultValues: { description: data?.description ?? "", name: data?.name ?? "", }, resolver: zodResolver(updateMysqlSchema), }); useEffect(() => { if (data) { form.reset({ description: data.description ?? "", name: data.name, }); } }, [data, form, form.reset]); const onSubmit = async (formData: UpdateMysql) => { await mutateAsync({ name: formData.name, mysqlId: mysqlId, description: formData.description || "", }) .then(() => { toast.success("MySQL updated succesfully"); utils.mysql.one.invalidate({ mysqlId: mysqlId, }); }) .catch(() => { toast.error("Error to update the MySQL"); }) .finally(() => {}); }; return ( Modify MySQL Update the MySQL data {isError && (
{error.message}
)}
( Name )} /> ( Description