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({ repositoryURL: z.string().min(1, { message: "Repository URL is required", }), branch: z.string().min(1, "Branch required"), buildPath: z.string().min(1, "Build Path required"), sshKey: z.string().optional(), }); type GitProvider = z.infer; interface Props { applicationId: string; } export const SaveGitProvider = ({ applicationId }: Props) => { const { data, refetch } = api.application.one.useQuery({ applicationId }); const { data: sshKeys } = api.sshKey.all.useQuery(); const router = useRouter(); const { mutateAsync, isLoading } = api.application.saveGitProdiver.useMutation(); const form = useForm({ defaultValues: { branch: "", buildPath: "/", repositoryURL: "", sshKey: undefined, }, resolver: zodResolver(GitProviderSchema), }); useEffect(() => { if (data) { form.reset({ sshKey: data.customGitSSHKeyId || undefined, branch: data.customGitBranch || "", buildPath: data.customGitBuildPath || "/", repositoryURL: data.customGitUrl || "", }); } }, [form.reset, data, form]); const onSubmit = async (values: GitProvider) => { await mutateAsync({ customGitBranch: values.branch, customGitBuildPath: values.buildPath, customGitUrl: values.repositoryURL, customGitSSHKeyId: values.sshKey === "none" ? null : values.sshKey, applicationId, }) .then(async () => { toast.success("Git Provider Saved"); await refetch(); }) .catch(() => { toast.error("Error to save the Git provider"); }); }; return (
( Repository URL )} />
{sshKeys && sshKeys.length > 0 ? ( ( SSH Key )} /> ) : ( )}
( Branch )} /> ( Build Path )} />
); };