import React, { useEffect } from "react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { api } from "@/utils/api"; import { z } from "zod"; import { Input } from "@/components/ui/input"; import { ShowPostgresResources } from "./show-postgres-resources"; import { toast } from "sonner"; import { zodResolver } from "@hookform/resolvers/zod"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { useForm } from "react-hook-form"; import { ShowVolumes } from "../volumes/show-volumes"; const addDockerImage = z.object({ dockerImage: z.string().min(1, "Docker image is required"), command: z.string(), }); interface Props { postgresId: string; } type AddDockerImage = z.infer; export const ShowAdvancedPostgres = ({ postgresId }: Props) => { const { data, refetch } = api.postgres.one.useQuery( { postgresId, }, { enabled: !!postgresId }, ); const { mutateAsync } = api.postgres.update.useMutation(); const form = useForm({ defaultValues: { dockerImage: "", command: "", }, resolver: zodResolver(addDockerImage), }); useEffect(() => { if (data) { form.reset({ dockerImage: data.dockerImage, command: data.command || "", }); } }, [data, form, form.reset]); const onSubmit = async (formData: AddDockerImage) => { await mutateAsync({ postgresId, dockerImage: formData?.dockerImage, command: formData?.command, }) .then(async () => { toast.success("Resources Updated"); await refetch(); }) .catch(() => { toast.error("Error to Update the resources"); }); }; return ( <>
Advanced Settings
( Docker Image )} />
( Command )} />
); };