import React, { useEffect } from "react"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { z } from "zod"; import { useForm } from "react-hook-form"; import { zodResolver } from "@hookform/resolvers/zod"; import { Form, FormControl, FormField, FormItem, FormMessage, } from "@/components/ui/form"; import { api } from "@/utils/api"; import { toast } from "sonner"; import { Textarea } from "@/components/ui/textarea"; const addEnviromentSchema = z.object({ enviroment: z.string(), }); type EnviromentSchema = z.infer; interface Props { postgresId: string; } export const ShowPostgresEnviroment = ({ postgresId }: Props) => { const { mutateAsync, isLoading } = api.postgres.saveEnviroment.useMutation(); const { data, refetch } = api.postgres.one.useQuery( { postgresId, }, { enabled: !!postgresId, }, ); const form = useForm({ defaultValues: { enviroment: "", }, resolver: zodResolver(addEnviromentSchema), }); useEffect(() => { if (data) { form.reset({ enviroment: data.env || "", }); } }, [form.reset, data, form]); const onSubmit = async (data: EnviromentSchema) => { mutateAsync({ env: data.enviroment, postgresId, }) .then(async () => { toast.success("Enviroments Added"); await refetch(); }) .catch(() => { toast.error("Error to add enviroment"); }); }; return (
Enviroment Settings You can add enviroment variables to your database.
(