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