mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { DropdownMenuItem } from "@/components/ui/dropdown-menu";
|
|
import dynamic from "next/dynamic";
|
|
import type React from "react";
|
|
export const DockerLogsId = dynamic(
|
|
() =>
|
|
import("@/components/dashboard/docker/logs/docker-logs-id").then(
|
|
(e) => e.DockerLogsId,
|
|
),
|
|
{
|
|
ssr: false,
|
|
},
|
|
);
|
|
|
|
interface Props {
|
|
containerId: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const ShowDockerModalLogs = ({ containerId, children }: Props) => {
|
|
return (
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<DropdownMenuItem
|
|
className="w-full cursor-pointer space-x-3"
|
|
onSelect={(e) => e.preventDefault()}
|
|
>
|
|
{children}
|
|
</DropdownMenuItem>
|
|
</DialogTrigger>
|
|
<DialogContent className="max-h-screen overflow-y-auto sm:max-w-7xl">
|
|
<DialogHeader>
|
|
<DialogTitle>View Logs</DialogTitle>
|
|
<DialogDescription>View the logs for {containerId}</DialogDescription>
|
|
</DialogHeader>
|
|
<div className="flex flex-col gap-4 pt-2.5">
|
|
<DockerLogsId id="terminal" containerId={containerId || ""} />
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|