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