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 { AlertBlock } from "@/components/shared/alert-block"; 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 updatePostgresSchema = z.object({ name: z.string().min(1, { message: "Name is required", }), description: z.string().optional(), }); type UpdatePostgres = z.infer; interface Props { postgresId: string; } export const UpdatePostgres = ({ postgresId }: Props) => { const utils = api.useUtils(); const { mutateAsync, error, isError, isLoading } = api.postgres.update.useMutation(); const { data } = api.postgres.one.useQuery( { postgresId, }, { enabled: !!postgresId, }, ); const form = useForm({ defaultValues: { description: data?.description ?? "", name: data?.name ?? "", }, resolver: zodResolver(updatePostgresSchema), }); useEffect(() => { if (data) { form.reset({ description: data.description ?? "", name: data.name, }); } }, [data, form, form.reset]); const onSubmit = async (formData: UpdatePostgres) => { await mutateAsync({ name: formData.name, postgresId: postgresId, description: formData.description || "", }) .then(() => { toast.success("Postgres updated succesfully"); utils.postgres.one.invalidate({ postgresId: postgresId, }); }) .catch(() => { toast.error("Error to update the postgres"); }) .finally(() => {}); }; return ( Modify Postgres Update the Postgres data {isError && {error?.message}}
( Name )} /> ( Description