mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
209 lines
9.0 KiB
TypeScript
209 lines
9.0 KiB
TypeScript
import { SaveDockerProvider } from "@/components/dashboard/application/general/generic/save-docker-provider";
|
|
import { SaveGitProvider } from "@/components/dashboard/application/general/generic/save-git-provider";
|
|
import { SaveGiteaProvider } from "@/components/dashboard/application/general/generic/save-gitea-provider";
|
|
import { SaveGithubProvider } from "@/components/dashboard/application/general/generic/save-github-provider";
|
|
import {
|
|
BitbucketIcon,
|
|
DockerIcon,
|
|
GitIcon,
|
|
GiteaIcon,
|
|
GithubIcon,
|
|
GitlabIcon,
|
|
} from "@/components/icons/data-tools-icons";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
|
import { api } from "@/utils/api";
|
|
import { GitBranch, UploadCloud } from "lucide-react";
|
|
import Link from "next/link";
|
|
import { useState } from "react";
|
|
import { SaveBitbucketProvider } from "./save-bitbucket-provider";
|
|
import { SaveDragNDrop } from "./save-drag-n-drop";
|
|
import { SaveGitlabProvider } from "./save-gitlab-provider";
|
|
|
|
type TabState = "github" | "docker" | "git" | "drop" | "gitlab" | "bitbucket" | "gitea";
|
|
|
|
interface Props {
|
|
applicationId: string;
|
|
}
|
|
|
|
export const ShowProviderForm = ({ applicationId }: Props) => {
|
|
const { data: githubProviders } = api.github.githubProviders.useQuery();
|
|
const { data: gitlabProviders } = api.gitlab.gitlabProviders.useQuery();
|
|
const { data: bitbucketProviders } =
|
|
api.bitbucket.bitbucketProviders.useQuery();
|
|
const { data: giteaProviders } = api.gitea.giteaProviders.useQuery();
|
|
|
|
const { data: application } = api.application.one.useQuery({ applicationId });
|
|
const [tab, setSab] = useState<TabState>(application?.sourceType || "github");
|
|
return (
|
|
<Card className="group relative w-full bg-transparent">
|
|
<CardHeader>
|
|
<CardTitle className="flex items-start justify-between">
|
|
<div className="flex flex-col gap-2">
|
|
<span className="flex flex-col space-y-0.5">Provider</span>
|
|
<p className="flex items-center text-sm font-normal text-muted-foreground">
|
|
Select the source of your code
|
|
</p>
|
|
</div>
|
|
<div className="hidden space-y-1 text-sm font-normal md:block">
|
|
<GitBranch className="size-6 text-muted-foreground" />
|
|
</div>
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Tabs
|
|
value={tab}
|
|
className="w-full"
|
|
onValueChange={(e) => {
|
|
setSab(e as TabState);
|
|
}}
|
|
>
|
|
<div className="flex flex-row items-center justify-between w-full gap-4">
|
|
<TabsList className="md:grid md:w-fit md:grid-cols-7 max-md:overflow-x-scroll justify-start bg-transparent overflow-y-hidden">
|
|
<TabsTrigger
|
|
value="github"
|
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
|
>
|
|
<GithubIcon className="size-4 text-current fill-current" />
|
|
Github
|
|
</TabsTrigger>
|
|
<TabsTrigger
|
|
value="gitlab"
|
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
|
>
|
|
<GitlabIcon className="size-4 text-current fill-current" />
|
|
Gitlab
|
|
</TabsTrigger>
|
|
<TabsTrigger
|
|
value="bitbucket"
|
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
|
>
|
|
<BitbucketIcon className="size-4 text-current fill-current" />
|
|
Bitbucket
|
|
</TabsTrigger>
|
|
<TabsTrigger
|
|
value="gitea"
|
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
|
>
|
|
<GiteaIcon className="size-4 text-current fill-current" />
|
|
Gitea
|
|
</TabsTrigger>
|
|
<TabsTrigger
|
|
value="docker"
|
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
|
>
|
|
<DockerIcon className="size-5 text-current" />
|
|
Docker
|
|
</TabsTrigger>
|
|
<TabsTrigger
|
|
value="git"
|
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
|
>
|
|
<GitIcon />
|
|
Git
|
|
</TabsTrigger>
|
|
<TabsTrigger
|
|
value="drop"
|
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
|
>
|
|
<UploadCloud className="size-5 text-current" />
|
|
Drop
|
|
</TabsTrigger>
|
|
</TabsList>
|
|
</div>
|
|
|
|
<TabsContent value="github" className="w-full p-2">
|
|
{githubProviders && githubProviders?.length > 0 ? (
|
|
<SaveGithubProvider applicationId={applicationId} />
|
|
) : (
|
|
<div className="flex flex-col items-center gap-3 min-h-[15vh] justify-center">
|
|
<GithubIcon className="size-8 text-muted-foreground" />
|
|
<span className="text-base text-muted-foreground">
|
|
To deploy using GitHub, you need to configure your account
|
|
first. Please, go to{" "}
|
|
<Link
|
|
href="/dashboard/settings/git-providers"
|
|
className="text-foreground"
|
|
>
|
|
Settings
|
|
</Link>{" "}
|
|
to do so.
|
|
</span>
|
|
</div>
|
|
)}
|
|
</TabsContent>
|
|
<TabsContent value="gitlab" className="w-full p-2">
|
|
{gitlabProviders && gitlabProviders?.length > 0 ? (
|
|
<SaveGitlabProvider applicationId={applicationId} />
|
|
) : (
|
|
<div className="flex flex-col items-center gap-3 min-h-[15vh] justify-center">
|
|
<GitlabIcon className="size-8 text-muted-foreground" />
|
|
<span className="text-base text-muted-foreground">
|
|
To deploy using GitLab, you need to configure your account
|
|
first. Please, go to{" "}
|
|
<Link
|
|
href="/dashboard/settings/git-providers"
|
|
className="text-foreground"
|
|
>
|
|
Settings
|
|
</Link>{" "}
|
|
to do so.
|
|
</span>
|
|
</div>
|
|
)}
|
|
</TabsContent>
|
|
<TabsContent value="bitbucket" className="w-full p-2">
|
|
{bitbucketProviders && bitbucketProviders?.length > 0 ? (
|
|
<SaveBitbucketProvider applicationId={applicationId} />
|
|
) : (
|
|
<div className="flex flex-col items-center gap-3 min-h-[15vh] justify-center">
|
|
<BitbucketIcon className="size-8 text-muted-foreground" />
|
|
<span className="text-base text-muted-foreground">
|
|
To deploy using Bitbucket, you need to configure your account
|
|
first. Please, go to{" "}
|
|
<Link
|
|
href="/dashboard/settings/git-providers"
|
|
className="text-foreground"
|
|
>
|
|
Settings
|
|
</Link>{" "}
|
|
to do so.
|
|
</span>
|
|
</div>
|
|
)}
|
|
</TabsContent>
|
|
<TabsContent value="gitea" className="w-full p-2">
|
|
{giteaProviders && giteaProviders?.length > 0 ? (
|
|
<SaveGiteaProvider applicationId={applicationId} />
|
|
) : (
|
|
<div className="flex flex-col items-center gap-3 min-h-[15vh] justify-center">
|
|
<GiteaIcon className="size-8 text-muted-foreground" />
|
|
<span className="text-base text-muted-foreground">
|
|
To deploy using Gitea, you need to configure your account
|
|
first. Please, go to{" "}
|
|
<Link
|
|
href="/dashboard/settings/git-providers"
|
|
className="text-foreground"
|
|
>
|
|
Settings
|
|
</Link>{" "}
|
|
to do so.
|
|
</span>
|
|
</div>
|
|
)}
|
|
</TabsContent>
|
|
<TabsContent value="docker" className="w-full p-2">
|
|
<SaveDockerProvider applicationId={applicationId} />
|
|
</TabsContent>
|
|
|
|
<TabsContent value="git" className="w-full p-2">
|
|
<SaveGitProvider applicationId={applicationId} />
|
|
</TabsContent>
|
|
<TabsContent value="drop" className="w-full p-2">
|
|
<SaveDragNDrop applicationId={applicationId} />
|
|
</TabsContent>
|
|
</Tabs>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}; |