2026-02-13 15:52:13 +07:00
|
|
|
"use client";
|
|
|
|
|
|
2026-02-17 18:12:02 +07:00
|
|
|
import { GitGraph, Loader2, LogOut, Network, Server, Settings, Users } from "lucide-react";
|
2026-02-13 15:52:13 +07:00
|
|
|
import Link from "next/link";
|
|
|
|
|
import { usePathname, useRouter } from "next/navigation";
|
|
|
|
|
import { useEffect } from "react";
|
|
|
|
|
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
import {
|
|
|
|
|
DropdownMenu,
|
|
|
|
|
DropdownMenuContent,
|
|
|
|
|
DropdownMenuItem,
|
|
|
|
|
DropdownMenuSeparator,
|
|
|
|
|
DropdownMenuTrigger,
|
|
|
|
|
} from "@/components/ui/dropdown-menu";
|
|
|
|
|
import {
|
|
|
|
|
Sidebar,
|
|
|
|
|
SidebarContent,
|
|
|
|
|
SidebarGroup,
|
|
|
|
|
SidebarGroupContent,
|
|
|
|
|
SidebarGroupLabel,
|
|
|
|
|
SidebarHeader,
|
|
|
|
|
SidebarInset,
|
|
|
|
|
SidebarMenu,
|
|
|
|
|
SidebarMenuButton,
|
|
|
|
|
SidebarMenuItem,
|
|
|
|
|
SidebarProvider,
|
|
|
|
|
SidebarTrigger,
|
|
|
|
|
} from "@/components/ui/sidebar";
|
|
|
|
|
import { signOut, useSession } from "@/lib/auth-client";
|
|
|
|
|
|
|
|
|
|
const menuItems = [
|
|
|
|
|
{ href: "/dashboard/users", icon: Users, label: "Users" },
|
|
|
|
|
{ href: "/dashboard/servers", icon: Server, label: "Servers" },
|
2026-02-17 18:12:02 +07:00
|
|
|
{ href: "/dashboard/topology", icon: GitGraph, label: "Network" },
|
2026-02-13 15:52:13 +07:00
|
|
|
];
|
|
|
|
|
|
2026-02-17 18:12:02 +07:00
|
|
|
const k8sMenuItems = [{ href: "/dashboard/k8s", icon: Network, label: "Resources" }];
|
2026-02-13 15:52:13 +07:00
|
|
|
|
|
|
|
|
export function DashboardLayout({ children }: { children: React.ReactNode }) {
|
|
|
|
|
const pathname = usePathname();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
const { data: session, isPending } = useSession();
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (!isPending && !session?.user) {
|
|
|
|
|
router.replace("/login");
|
|
|
|
|
}
|
|
|
|
|
}, [session, isPending, router]);
|
|
|
|
|
|
|
|
|
|
if (isPending) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen flex items-center justify-center bg-background">
|
|
|
|
|
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!session?.user) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen flex items-center justify-center bg-background">
|
|
|
|
|
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleSignOut = async () => {
|
|
|
|
|
await signOut();
|
|
|
|
|
window.location.href = "/login";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const userInitials =
|
|
|
|
|
session?.user?.name
|
|
|
|
|
?.split(" ")
|
|
|
|
|
.map((n) => n[0])
|
|
|
|
|
.join("")
|
|
|
|
|
.toUpperCase() || "U";
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<SidebarProvider>
|
|
|
|
|
<Sidebar>
|
|
|
|
|
<SidebarHeader className="border-b px-6 py-4">
|
|
|
|
|
<h2 className="text-lg font-semibold">Minikura</h2>
|
|
|
|
|
</SidebarHeader>
|
|
|
|
|
<SidebarContent>
|
|
|
|
|
<SidebarGroup>
|
|
|
|
|
<SidebarGroupContent>
|
|
|
|
|
<SidebarMenu>
|
|
|
|
|
{menuItems.map((item) => (
|
|
|
|
|
<SidebarMenuItem key={item.href}>
|
2026-02-17 18:12:02 +07:00
|
|
|
<SidebarMenuButton asChild isActive={pathname === item.href}>
|
2026-02-13 15:52:13 +07:00
|
|
|
<Link href={item.href}>
|
|
|
|
|
<item.icon className="h-4 w-4" />
|
|
|
|
|
<span>{item.label}</span>
|
|
|
|
|
</Link>
|
|
|
|
|
</SidebarMenuButton>
|
|
|
|
|
</SidebarMenuItem>
|
|
|
|
|
))}
|
|
|
|
|
</SidebarMenu>
|
|
|
|
|
</SidebarGroupContent>
|
|
|
|
|
</SidebarGroup>
|
|
|
|
|
<SidebarGroup>
|
|
|
|
|
<SidebarGroupLabel>Kubernetes</SidebarGroupLabel>
|
|
|
|
|
<SidebarGroupContent>
|
|
|
|
|
<SidebarMenu>
|
|
|
|
|
{k8sMenuItems.map((item) => (
|
|
|
|
|
<SidebarMenuItem key={item.href}>
|
2026-02-17 18:12:02 +07:00
|
|
|
<SidebarMenuButton asChild isActive={pathname === item.href}>
|
2026-02-13 15:52:13 +07:00
|
|
|
<Link href={item.href}>
|
|
|
|
|
<item.icon className="h-4 w-4" />
|
|
|
|
|
<span>{item.label}</span>
|
|
|
|
|
</Link>
|
|
|
|
|
</SidebarMenuButton>
|
|
|
|
|
</SidebarMenuItem>
|
|
|
|
|
))}
|
|
|
|
|
</SidebarMenu>
|
|
|
|
|
</SidebarGroupContent>
|
|
|
|
|
</SidebarGroup>
|
|
|
|
|
</SidebarContent>
|
|
|
|
|
<div className="border-t p-4">
|
|
|
|
|
<DropdownMenu>
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
2026-02-17 18:12:02 +07:00
|
|
|
<Button variant="ghost" className="w-full justify-start gap-2 px-2">
|
2026-02-13 15:52:13 +07:00
|
|
|
<Avatar className="h-8 w-8">
|
|
|
|
|
<AvatarFallback>{userInitials}</AvatarFallback>
|
|
|
|
|
</Avatar>
|
|
|
|
|
<div className="flex flex-col items-start text-sm">
|
|
|
|
|
<span className="font-medium">{session?.user?.name}</span>
|
2026-02-17 18:12:02 +07:00
|
|
|
<span className="text-xs text-muted-foreground">{session?.user?.email}</span>
|
2026-02-13 15:52:13 +07:00
|
|
|
</div>
|
|
|
|
|
</Button>
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
<DropdownMenuContent align="end" className="w-56">
|
|
|
|
|
<DropdownMenuItem asChild>
|
|
|
|
|
<Link href="/dashboard/settings">
|
|
|
|
|
<Settings className="mr-2 h-4 w-4" />
|
|
|
|
|
Settings
|
|
|
|
|
</Link>
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuSeparator />
|
|
|
|
|
<DropdownMenuItem onClick={handleSignOut}>
|
|
|
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
|
|
|
Sign Out
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
</div>
|
|
|
|
|
</Sidebar>
|
|
|
|
|
<SidebarInset>
|
|
|
|
|
<header className="flex h-16 items-center gap-4 border-b bg-background px-6">
|
|
|
|
|
<SidebarTrigger />
|
|
|
|
|
<div className="flex-1" />
|
|
|
|
|
</header>
|
|
|
|
|
<main className="flex-1 p-6 min-w-0 overflow-auto">{children}</main>
|
|
|
|
|
</SidebarInset>
|
|
|
|
|
</SidebarProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|