import { AlertBlock } from "@/components/shared/alert-block"; import { Button } from "@/components/ui/button"; import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, } from "@/components/ui/command"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { Input } from "@/components/ui/input"; import { Popover, PopoverContent, PopoverTrigger, } from "@/components/ui/popover"; import { ScrollArea } from "@/components/ui/scroll-area"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "@/components/ui/tooltip"; import { cn } from "@/lib/utils"; import { api } from "@/utils/api"; import { zodResolver } from "@hookform/resolvers/zod"; import { CheckIcon, ChevronsUpDown, X } from "lucide-react"; import { useEffect } from "react"; import { useForm } from "react-hook-form"; import { toast } from "sonner"; import { z } from "zod"; import { Badge } from "@/components/ui/badge"; import { GitlabIcon } from "@/components/icons/data-tools-icons"; import Link from "next/link"; const GitlabProviderSchema = z.object({ composePath: z.string().min(1), repository: z .object({ repo: z.string().min(1, "Repo is required"), owner: z.string().min(1, "Owner is required"), id: z.number().nullable(), gitlabPathNamespace: z.string().min(1), }) .required(), branch: z.string().min(1, "Branch is required"), gitlabId: z.string().min(1, "Gitlab Provider is required"), watchPaths: z.array(z.string()).optional(), }); type GitlabProvider = z.infer; interface Props { composeId: string; } export const SaveGitlabProviderCompose = ({ composeId }: Props) => { const { data: gitlabProviders } = api.gitlab.gitlabProviders.useQuery(); const { data, refetch } = api.compose.one.useQuery({ composeId }); const { mutateAsync, isLoading: isSavingGitlabProvider } = api.compose.update.useMutation(); const form = useForm({ defaultValues: { composePath: "./docker-compose.yml", repository: { owner: "", repo: "", gitlabPathNamespace: "", id: null, }, gitlabId: "", branch: "", watchPaths: [], }, resolver: zodResolver(GitlabProviderSchema), }); const repository = form.watch("repository"); const gitlabId = form.watch("gitlabId"); const { data: repositories, isLoading: isLoadingRepositories, error, } = api.gitlab.getGitlabRepositories.useQuery( { gitlabId, }, { enabled: !!gitlabId, }, ); const { data: branches, fetchStatus, status, } = api.gitlab.getGitlabBranches.useQuery( { owner: repository?.owner, repo: repository?.repo, id: repository?.id || 0, gitlabId: gitlabId, }, { enabled: !!repository?.owner && !!repository?.repo && !!gitlabId, }, ); useEffect(() => { if (data) { form.reset({ branch: data.gitlabBranch || "", repository: { repo: data.gitlabRepository || "", owner: data.gitlabOwner || "", id: data.gitlabProjectId, gitlabPathNamespace: data.gitlabPathNamespace || "", }, composePath: data.composePath, gitlabId: data.gitlabId || "", watchPaths: data.watchPaths || [], }); } }, [form.reset, data, form]); const onSubmit = async (data: GitlabProvider) => { await mutateAsync({ gitlabBranch: data.branch, gitlabRepository: data.repository.repo, gitlabOwner: data.repository.owner, composePath: data.composePath, gitlabId: data.gitlabId, composeId, gitlabProjectId: data.repository.id, gitlabPathNamespace: data.repository.gitlabPathNamespace, sourceType: "gitlab", composeStatus: "idle", watchPaths: data.watchPaths, }) .then(async () => { toast.success("Service Provided Saved"); await refetch(); }) .catch(() => { toast.error("Error saving the Gitlab provider"); }); }; return (
{error && {error?.message}}
( Gitlab Account )} /> (
Repository {field.value.owner && field.value.repo && ( View Repository )}
{isLoadingRepositories && ( Loading Repositories.... )} No repositories found. {repositories && repositories.length === 0 && ( No repositories found. )} {repositories?.map((repo) => { return ( { form.setValue("repository", { owner: repo.owner.username as string, repo: repo.name, id: repo.id, gitlabPathNamespace: repo.url, }); form.setValue("branch", ""); }} > {repo.name} {repo.owner.username} ); })} {form.formState.errors.repository && (

Repository is required

)}
)} /> ( Branch {status === "loading" && fetchStatus === "fetching" && ( Loading Branches.... )} {!repository?.owner && ( Select a repository )} No branch found. {branches?.map((branch) => ( { form.setValue("branch", branch.name); }} > {branch.name} ))} )} /> ( Compose Path )} /> (
Watch Paths
?

Add paths to watch for changes. When files in these paths change, a new deployment will be triggered.

{field.value?.map((path, index) => ( {path} { const newPaths = [...(field.value || [])]; newPaths.splice(index, 1); form.setValue("watchPaths", newPaths); }} /> ))}
{ if (e.key === "Enter") { e.preventDefault(); const input = e.currentTarget; const value = input.value.trim(); if (value) { const newPaths = [...(field.value || []), value]; form.setValue("watchPaths", newPaths); input.value = ""; } } }} />
)} />
); };