247 lines
8.0 KiB
TypeScript
247 lines
8.0 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { usePathname } from "next/navigation";
|
|
import {
|
|
Activity,
|
|
BarChart3,
|
|
Bot,
|
|
Boxes,
|
|
CheckCircle2,
|
|
Folder,
|
|
FolderGit,
|
|
CircleDot,
|
|
Building2,
|
|
LayoutGrid,
|
|
Network,
|
|
Settings,
|
|
Store,
|
|
Tags,
|
|
} from "lucide-react";
|
|
|
|
import { useAuth } from "@/auth/clerk";
|
|
import { ApiError } from "@/api/mutator";
|
|
import { useOrganizationMembership } from "@/lib/use-organization-membership";
|
|
import {
|
|
type healthzHealthzGetResponse,
|
|
useHealthzHealthzGet,
|
|
} from "@/api/generated/default/default";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export function DashboardSidebar() {
|
|
const pathname = usePathname();
|
|
const { isSignedIn } = useAuth();
|
|
const { isAdmin } = useOrganizationMembership(isSignedIn);
|
|
const healthQuery = useHealthzHealthzGet<healthzHealthzGetResponse, ApiError>(
|
|
{
|
|
query: {
|
|
refetchInterval: 30_000,
|
|
refetchOnMount: "always",
|
|
retry: false,
|
|
},
|
|
request: { cache: "no-store" },
|
|
},
|
|
);
|
|
|
|
const okValue = healthQuery.data?.data?.ok;
|
|
const systemStatus: "unknown" | "operational" | "degraded" =
|
|
okValue === true
|
|
? "operational"
|
|
: okValue === false
|
|
? "degraded"
|
|
: healthQuery.isError
|
|
? "degraded"
|
|
: "unknown";
|
|
const statusLabel =
|
|
systemStatus === "operational"
|
|
? "All systems operational"
|
|
: systemStatus === "unknown"
|
|
? "System status unavailable"
|
|
: "System degraded";
|
|
const navItemClass = (active: boolean) =>
|
|
cn(
|
|
"flex items-center gap-3 rounded-lg px-3 py-2.5 text-[color:var(--text-muted)] transition",
|
|
active
|
|
? "bg-[color:var(--accent-soft)] font-medium text-[color:var(--accent-strong)]"
|
|
: "hover:bg-[color:var(--surface-muted)] hover:text-[color:var(--text)]",
|
|
);
|
|
|
|
return (
|
|
<aside className="fixed inset-y-0 left-0 z-40 flex w-[280px] -translate-x-full flex-col border-r border-[color:var(--border)] bg-[color:var(--surface)] pt-16 shadow-lg transition-transform duration-200 ease-in-out [[data-sidebar=open]_&]:translate-x-0 md:relative md:inset-auto md:z-auto md:w-[260px] md:translate-x-0 md:pt-0 md:shadow-none md:transition-none">
|
|
<div className="flex-1 px-3 py-4">
|
|
<p className="px-3 text-xs font-semibold uppercase tracking-wider text-[color:var(--text-muted)]">
|
|
Navigation
|
|
</p>
|
|
<nav className="mt-3 space-y-4 text-sm">
|
|
<div>
|
|
<p className="px-3 text-[11px] font-semibold uppercase tracking-wider text-[color:var(--text-quiet)]">
|
|
Overview
|
|
</p>
|
|
<div className="mt-1 space-y-1">
|
|
<Link
|
|
href="/dashboard"
|
|
className={navItemClass(pathname === "/dashboard")}
|
|
>
|
|
<BarChart3 className="h-4 w-4" />
|
|
Dashboard
|
|
</Link>
|
|
<Link
|
|
href="/activity"
|
|
className={navItemClass(pathname.startsWith("/activity"))}
|
|
>
|
|
<Activity className="h-4 w-4" />
|
|
Live feed
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<p className="px-3 text-[11px] font-semibold uppercase tracking-wider text-[color:var(--text-quiet)]">
|
|
Boards
|
|
</p>
|
|
<div className="mt-1 space-y-1">
|
|
<Link
|
|
href="/board-groups"
|
|
className={navItemClass(pathname.startsWith("/board-groups"))}
|
|
>
|
|
<Folder className="h-4 w-4" />
|
|
Board groups
|
|
</Link>
|
|
<Link
|
|
href="/boards"
|
|
className={navItemClass(pathname.startsWith("/boards"))}
|
|
>
|
|
<LayoutGrid className="h-4 w-4" />
|
|
Boards
|
|
</Link>
|
|
<Link
|
|
href="/git-projects"
|
|
className={navItemClass(pathname.startsWith("/git-projects"))}
|
|
>
|
|
<FolderGit className="h-4 w-4" />
|
|
Git Projects
|
|
</Link>
|
|
<Link
|
|
href="/git-projects/issues"
|
|
className={navItemClass(pathname.startsWith("/git-projects/issues"))}
|
|
>
|
|
<CircleDot className="h-4 w-4" />
|
|
Issues
|
|
</Link>
|
|
<Link
|
|
href="/tags"
|
|
className={navItemClass(pathname.startsWith("/tags"))}
|
|
>
|
|
<Tags className="h-4 w-4" />
|
|
Tags
|
|
</Link>
|
|
<Link
|
|
href="/approvals"
|
|
className={navItemClass(pathname.startsWith("/approvals"))}
|
|
>
|
|
<CheckCircle2 className="h-4 w-4" />
|
|
Approvals
|
|
</Link>
|
|
{isAdmin ? (
|
|
<Link
|
|
href="/custom-fields"
|
|
className={navItemClass(
|
|
pathname.startsWith("/custom-fields"),
|
|
)}
|
|
>
|
|
<Settings className="h-4 w-4" />
|
|
Custom fields
|
|
</Link>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
{isAdmin ? (
|
|
<>
|
|
<p className="px-3 text-[11px] font-semibold uppercase tracking-wider text-[color:var(--text-quiet)]">
|
|
Skills
|
|
</p>
|
|
<div className="mt-1 space-y-1">
|
|
<Link
|
|
href="/skills/marketplace"
|
|
className={navItemClass(
|
|
pathname === "/skills" ||
|
|
pathname.startsWith("/skills/marketplace"),
|
|
)}
|
|
>
|
|
<Store className="h-4 w-4" />
|
|
Marketplace
|
|
</Link>
|
|
<Link
|
|
href="/skills/packs"
|
|
className={navItemClass(
|
|
pathname.startsWith("/skills/packs"),
|
|
)}
|
|
>
|
|
<Boxes className="h-4 w-4" />
|
|
Packs
|
|
</Link>
|
|
</div>
|
|
</>
|
|
) : null}
|
|
</div>
|
|
|
|
<div>
|
|
<p className="px-3 text-[11px] font-semibold uppercase tracking-wider text-[color:var(--text-quiet)]">
|
|
Administration
|
|
</p>
|
|
<div className="mt-1 space-y-1">
|
|
<Link
|
|
href="/organization"
|
|
className={navItemClass(pathname.startsWith("/organization"))}
|
|
>
|
|
<Building2 className="h-4 w-4" />
|
|
Organization
|
|
</Link>
|
|
<Link
|
|
href="/settings"
|
|
className={navItemClass(pathname.startsWith("/settings"))}
|
|
>
|
|
<Settings className="h-4 w-4" />
|
|
Settings
|
|
</Link>
|
|
{isAdmin ? (
|
|
<Link
|
|
href="/gateways"
|
|
className={navItemClass(pathname.startsWith("/gateways"))}
|
|
>
|
|
<Network className="h-4 w-4" />
|
|
Gateways
|
|
</Link>
|
|
) : null}
|
|
{isAdmin ? (
|
|
<Link
|
|
href="/agents"
|
|
className={navItemClass(pathname.startsWith("/agents"))}
|
|
>
|
|
<Bot className="h-4 w-4" />
|
|
Agents
|
|
</Link>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
<div className="border-t border-[color:var(--border)] p-4">
|
|
<div className="flex items-center gap-2 text-xs text-[color:var(--text-muted)]">
|
|
<span
|
|
className={cn(
|
|
"h-2 w-2 rounded-full",
|
|
systemStatus === "operational" && "bg-emerald-500",
|
|
systemStatus === "degraded" && "bg-rose-500",
|
|
systemStatus === "unknown" && "bg-[color:var(--text-quiet)]",
|
|
)}
|
|
/>
|
|
{statusLabel}
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
);
|
|
}
|