mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-14 03:19:49 +00:00
747c2137c9
This reverts commit e6cb6454db.
110 lines
3.3 KiB
TypeScript
110 lines
3.3 KiB
TypeScript
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { Tree } from "@/components/ui/file-tree";
|
|
import { api } from "@/utils/api";
|
|
import { FileIcon, Folder, Loader2, Workflow } from "lucide-react";
|
|
import React from "react";
|
|
import { ShowTraefikFile } from "./show-traefik-file";
|
|
|
|
interface Props {
|
|
serverId?: string;
|
|
}
|
|
export const ShowTraefikSystem = ({ serverId }: Props) => {
|
|
const [file, setFile] = React.useState<null | string>(null);
|
|
|
|
const {
|
|
data: directories,
|
|
isLoading,
|
|
error,
|
|
isError,
|
|
} = api.settings.readDirectories.useQuery(
|
|
{
|
|
serverId,
|
|
},
|
|
{
|
|
retry: 2,
|
|
},
|
|
);
|
|
|
|
return (
|
|
<div className="w-full">
|
|
<Card className="h-full bg-sidebar p-2.5 rounded-xl">
|
|
<div className="rounded-xl bg-background shadow-md ">
|
|
<CardHeader className="">
|
|
<CardTitle className="text-xl flex flex-row gap-2">
|
|
<FileIcon className="size-6 text-muted-foreground self-center" />
|
|
Traefik File System
|
|
</CardTitle>
|
|
<CardDescription>
|
|
Manage all the files and directories in {"'/etc/dokploy/traefik'"}
|
|
.
|
|
</CardDescription>
|
|
|
|
<AlertBlock type="warning">
|
|
Adding invalid configuration to existing files, can break your
|
|
Traefik instance, preventing access to your applications.
|
|
</AlertBlock>
|
|
</CardHeader>
|
|
<CardContent className="space-y-2 py-8 border-t">
|
|
<div>
|
|
<div className="flex flex-col lg:flex-row gap-4 md:gap-10 w-full">
|
|
{isError && (
|
|
<AlertBlock type="error" className="w-full">
|
|
{error?.message}
|
|
</AlertBlock>
|
|
)}
|
|
{isLoading && (
|
|
<div className="w-full flex-col gap-2 flex items-center justify-center h-[55vh]">
|
|
<span className="text-muted-foreground text-lg font-medium">
|
|
Loading...
|
|
</span>
|
|
<Loader2 className="animate-spin size-8 text-muted-foreground" />
|
|
</div>
|
|
)}
|
|
{directories?.length === 0 && (
|
|
<div className="w-full flex-col gap-2 flex items-center justify-center h-[55vh]">
|
|
<span className="text-muted-foreground text-lg font-medium">
|
|
No directories or files detected in{" "}
|
|
{"'/etc/dokploy/traefik'"}
|
|
</span>
|
|
<Folder className="size-8 text-muted-foreground" />
|
|
</div>
|
|
)}
|
|
{directories && directories?.length > 0 && (
|
|
<>
|
|
<Tree
|
|
data={directories}
|
|
className="lg:max-w-[19rem] w-full lg:h-[660px] border rounded-lg"
|
|
onSelectChange={(item) => setFile(item?.id || null)}
|
|
folderIcon={Folder}
|
|
itemIcon={Workflow}
|
|
/>
|
|
<div className="w-full">
|
|
{file ? (
|
|
<ShowTraefikFile path={file} serverId={serverId} />
|
|
) : (
|
|
<div className="h-full w-full flex-col gap-2 flex items-center justify-center">
|
|
<span className="text-muted-foreground text-lg font-medium">
|
|
No file selected
|
|
</span>
|
|
<FileIcon className="size-8 text-muted-foreground" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|