mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
322 lines
9.8 KiB
TypeScript
322 lines
9.8 KiB
TypeScript
import { ShowBuildChooseForm } from "@/components/dashboard/application/build/show";
|
|
import { ShowProviderForm } from "@/components/dashboard/application/general/generic/show";
|
|
import { DialogAction } from "@/components/shared/dialog-action";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Switch } from "@/components/ui/switch";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from "@/components/ui/tooltip";
|
|
import { api } from "@/utils/api";
|
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
import {
|
|
Ban,
|
|
CheckCircle2,
|
|
Hammer,
|
|
RefreshCcw,
|
|
Rocket,
|
|
Terminal,
|
|
} from "lucide-react";
|
|
import { useRouter } from "next/router";
|
|
import { toast } from "sonner";
|
|
import { DockerTerminalModal } from "../../settings/web-server/docker-terminal-modal";
|
|
interface Props {
|
|
applicationId: string;
|
|
}
|
|
|
|
export const ShowGeneralApplication = ({ applicationId }: Props) => {
|
|
const router = useRouter();
|
|
const { data, refetch } = api.application.one.useQuery(
|
|
{
|
|
applicationId,
|
|
},
|
|
{ enabled: !!applicationId },
|
|
);
|
|
const { mutateAsync: update } = api.application.update.useMutation();
|
|
const { mutateAsync: start, isLoading: isStarting } =
|
|
api.application.start.useMutation();
|
|
const { mutateAsync: stop, isLoading: isStopping } =
|
|
api.application.stop.useMutation();
|
|
|
|
const { mutateAsync: deploy } = api.application.deploy.useMutation();
|
|
|
|
const { mutateAsync: reload, isLoading: isReloading } =
|
|
api.application.reload.useMutation();
|
|
|
|
const { mutateAsync: redeploy } = api.application.redeploy.useMutation();
|
|
|
|
return (
|
|
<>
|
|
<Card className="bg-background">
|
|
<CardHeader>
|
|
<CardTitle className="text-xl">Deploy Settings</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="flex flex-row gap-4 flex-wrap">
|
|
<TooltipProvider delayDuration={0} disableHoverableContent={false}>
|
|
<DialogAction
|
|
title="Deploy Application"
|
|
description="Are you sure you want to deploy this application?"
|
|
type="default"
|
|
onClick={async () => {
|
|
await deploy({
|
|
applicationId: applicationId,
|
|
})
|
|
.then(() => {
|
|
toast.success("Application deployed successfully");
|
|
refetch();
|
|
router.push(
|
|
`/dashboard/project/${data?.projectId}/services/application/${applicationId}?tab=deployments`,
|
|
);
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error deploying application");
|
|
});
|
|
}}
|
|
>
|
|
<Button
|
|
variant="default"
|
|
isLoading={data?.applicationStatus === "running"}
|
|
className="flex items-center gap-1.5 group focus-visible:ring-2 focus-visible:ring-offset-2"
|
|
>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<div className="flex items-center">
|
|
<Rocket className="size-4 mr-1" />
|
|
Deploy
|
|
</div>
|
|
</TooltipTrigger>
|
|
<TooltipPrimitive.Portal>
|
|
<TooltipContent sideOffset={5} className="z-[60]">
|
|
<p>
|
|
Downloads the source code and performs a complete build
|
|
</p>
|
|
</TooltipContent>
|
|
</TooltipPrimitive.Portal>
|
|
</Tooltip>
|
|
</Button>
|
|
</DialogAction>
|
|
<DialogAction
|
|
title="Reload Application"
|
|
description="Are you sure you want to reload this application?"
|
|
type="default"
|
|
onClick={async () => {
|
|
await reload({
|
|
applicationId: applicationId,
|
|
appName: data?.appName || "",
|
|
})
|
|
.then(() => {
|
|
toast.success("Application reloaded successfully");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error reloading application");
|
|
});
|
|
}}
|
|
>
|
|
<Button
|
|
variant="secondary"
|
|
isLoading={isReloading}
|
|
className="flex items-center gap-1.5 group focus-visible:ring-2 focus-visible:ring-offset-2"
|
|
>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<div className="flex items-center">
|
|
<RefreshCcw className="size-4 mr-1" />
|
|
Reload
|
|
</div>
|
|
</TooltipTrigger>
|
|
<TooltipPrimitive.Portal>
|
|
<TooltipContent sideOffset={5} className="z-[60]">
|
|
<p>Reload the application without rebuilding it</p>
|
|
</TooltipContent>
|
|
</TooltipPrimitive.Portal>
|
|
</Tooltip>
|
|
</Button>
|
|
</DialogAction>
|
|
<DialogAction
|
|
title="Rebuild Application"
|
|
description="Are you sure you want to rebuild this application?"
|
|
type="default"
|
|
onClick={async () => {
|
|
await redeploy({
|
|
applicationId: applicationId,
|
|
})
|
|
.then(() => {
|
|
toast.success("Application rebuilt successfully");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error rebuilding application");
|
|
});
|
|
}}
|
|
>
|
|
<Button
|
|
variant="secondary"
|
|
isLoading={data?.applicationStatus === "running"}
|
|
className="flex items-center gap-1.5 group focus-visible:ring-2 focus-visible:ring-offset-2"
|
|
>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<div className="flex items-center">
|
|
<Hammer className="size-4 mr-1" />
|
|
Rebuild
|
|
</div>
|
|
</TooltipTrigger>
|
|
<TooltipPrimitive.Portal>
|
|
<TooltipContent sideOffset={5} className="z-[60]">
|
|
<p>
|
|
Only rebuilds the application without downloading new
|
|
code
|
|
</p>
|
|
</TooltipContent>
|
|
</TooltipPrimitive.Portal>
|
|
</Tooltip>
|
|
</Button>
|
|
</DialogAction>
|
|
|
|
{data?.applicationStatus === "idle" ? (
|
|
<DialogAction
|
|
title="Start Application"
|
|
description="Are you sure you want to start this application?"
|
|
type="default"
|
|
onClick={async () => {
|
|
await start({
|
|
applicationId: applicationId,
|
|
})
|
|
.then(() => {
|
|
toast.success("Application started successfully");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error starting application");
|
|
});
|
|
}}
|
|
>
|
|
<Button
|
|
variant="secondary"
|
|
isLoading={isStarting}
|
|
className="flex items-center gap-1.5 group focus-visible:ring-2 focus-visible:ring-offset-2"
|
|
>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<div className="flex items-center">
|
|
<CheckCircle2 className="size-4 mr-1" />
|
|
Start
|
|
</div>
|
|
</TooltipTrigger>
|
|
<TooltipPrimitive.Portal>
|
|
<TooltipContent sideOffset={5} className="z-[60]">
|
|
<p>
|
|
Start the application (requires a previous successful
|
|
build)
|
|
</p>
|
|
</TooltipContent>
|
|
</TooltipPrimitive.Portal>
|
|
</Tooltip>
|
|
</Button>
|
|
</DialogAction>
|
|
) : (
|
|
<DialogAction
|
|
title="Stop Application"
|
|
description="Are you sure you want to stop this application?"
|
|
onClick={async () => {
|
|
await stop({
|
|
applicationId: applicationId,
|
|
})
|
|
.then(() => {
|
|
toast.success("Application stopped successfully");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error stopping application");
|
|
});
|
|
}}
|
|
>
|
|
<Button
|
|
variant="destructive"
|
|
isLoading={isStopping}
|
|
className="flex items-center gap-1.5 group focus-visible:ring-2 focus-visible:ring-offset-2"
|
|
>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<div className="flex items-center">
|
|
<Ban className="size-4 mr-1" />
|
|
Stop
|
|
</div>
|
|
</TooltipTrigger>
|
|
<TooltipPrimitive.Portal>
|
|
<TooltipContent sideOffset={5} className="z-[60]">
|
|
<p>Stop the currently running application</p>
|
|
</TooltipContent>
|
|
</TooltipPrimitive.Portal>
|
|
</Tooltip>
|
|
</Button>
|
|
</DialogAction>
|
|
)}
|
|
</TooltipProvider>
|
|
<DockerTerminalModal
|
|
appName={data?.appName || ""}
|
|
serverId={data?.serverId || ""}
|
|
>
|
|
<Button
|
|
variant="outline"
|
|
className="flex items-center gap-1.5 focus-visible:ring-2 focus-visible:ring-offset-2"
|
|
>
|
|
<Terminal className="size-4 mr-1" />
|
|
Open Terminal
|
|
</Button>
|
|
</DockerTerminalModal>
|
|
<div className="flex flex-row items-center gap-2 rounded-md px-4 py-2 border">
|
|
<span className="text-sm font-medium">Autodeploy</span>
|
|
<Switch
|
|
aria-label="Toggle autodeploy"
|
|
checked={data?.autoDeploy || false}
|
|
onCheckedChange={async (enabled) => {
|
|
await update({
|
|
applicationId,
|
|
autoDeploy: enabled,
|
|
})
|
|
.then(async () => {
|
|
toast.success("Auto Deploy Updated");
|
|
await refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error updating Auto Deploy");
|
|
});
|
|
}}
|
|
className="flex flex-row gap-2 items-center data-[state=checked]:bg-primary"
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-row items-center gap-2 rounded-md px-4 py-2 border">
|
|
<span className="text-sm font-medium">Clean Cache</span>
|
|
<Switch
|
|
aria-label="Toggle clean cache"
|
|
checked={data?.cleanCache || false}
|
|
onCheckedChange={async (enabled) => {
|
|
await update({
|
|
applicationId,
|
|
cleanCache: enabled,
|
|
})
|
|
.then(async () => {
|
|
toast.success("Clean Cache Updated");
|
|
await refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error updating Clean Cache");
|
|
});
|
|
}}
|
|
className="flex flex-row gap-2 items-center data-[state=checked]:bg-primary"
|
|
/>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
<ShowProviderForm applicationId={applicationId} />
|
|
<ShowBuildChooseForm applicationId={applicationId} />
|
|
</>
|
|
);
|
|
};
|