import { Button } from "@/components/ui/button"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { Input } from "@/components/ui/input"; import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { api } from "@/utils/api"; import { zodResolver } from "@hookform/resolvers/zod"; import { KeyRoundIcon, LockIcon } from "lucide-react"; import { useRouter } from "next/router"; import { useEffect } from "react"; import { useForm } from "react-hook-form"; import { toast } from "sonner"; import { z } from "zod"; const GitProviderSchema = z.object({ composePath: z.string().min(1), repositoryURL: z.string().min(1, { message: "Repository URL is required", }), branch: z.string().min(1, "Branch required"), sshKey: z.string().optional(), }); type GitProvider = z.infer; interface Props { composeId: string; } export const SaveGitProviderCompose = ({ composeId }: Props) => { const { data, refetch } = api.compose.one.useQuery({ composeId }); const { data: sshKeys } = api.sshKey.all.useQuery(); const router = useRouter(); const { mutateAsync, isLoading } = api.compose.update.useMutation(); const form = useForm({ defaultValues: { branch: "", repositoryURL: "", composePath: "./docker-compose.yml", sshKey: undefined, }, resolver: zodResolver(GitProviderSchema), }); useEffect(() => { if (data) { form.reset({ sshKey: data.customGitSSHKeyId || undefined, branch: data.customGitBranch || "", repositoryURL: data.customGitUrl || "", composePath: data.composePath, }); } }, [form.reset, data, form]); const onSubmit = async (values: GitProvider) => { await mutateAsync({ customGitBranch: values.branch, customGitUrl: values.repositoryURL, customGitSSHKeyId: values.sshKey === "none" ? null : values.sshKey, composeId, sourceType: "git", composePath: values.composePath, }) .then(async () => { toast.success("Git Provider Saved"); await refetch(); }) .catch(() => { toast.error("Error saving the Git provider"); }); }; return (
( Repository URL )} />
{sshKeys && sshKeys.length > 0 ? ( ( SSH Key )} /> ) : ( )}
( Branch )} />
( Compose Path )} />
); };