Files
lcbp3/frontend/components/admin/sidebar.tsx
T
admin 990d80e16d
CI / CD Pipeline / build (push) Successful in 4m46s
CI / CD Pipeline / deploy (push) Successful in 4m35s
690522:1227 ปรับปรุง Admin Panl #01
2026-05-22 12:27:07 +07:00

332 lines
13 KiB
TypeScript

'use client';
import Link from 'next/link';
import { usePathname } from 'next/navigation';
import { useState } from 'react';
import { cn } from '@/lib/utils';
import {
Settings,
Activity,
Shield,
ChevronDown,
ChevronRight,
Brain,
FolderOpen,
BookOpen,
Ruler,
} from 'lucide-react';
interface MenuChild {
href: string;
label: string;
}
interface MenuItem {
href?: string;
label: string;
sublabel?: string;
icon: React.ComponentType<{ className?: string }>;
children?: MenuChild[];
}
export const menuItems: MenuItem[] = [
{
label: 'ผู้ใช้งาน & การเข้าถึง',
sublabel: 'Identity & Access',
icon: Shield,
children: [
{ href: '/admin/access-control/users', label: 'ผู้ใช้งาน' },
{ href: '/admin/access-control/roles', label: 'บทบาท & สิทธิ์' },
{ href: '/admin/access-control/organizations', label: 'องค์กร' },
],
},
{
label: 'ตั้งค่าโครงการ',
sublabel: 'Project Setup',
icon: FolderOpen,
children: [
{ href: '/admin/doc-control/projects', label: 'โครงการ' },
{ href: '/admin/doc-control/contracts', label: 'สัญญา' },
{ href: '/admin/doc-control/numbering', label: 'รูปแบบเลขที่' },
{ href: '/admin/doc-control/workflows', label: 'เวิร์กโฟลว์' },
],
},
{
label: 'ข้อมูลอ้างอิง',
sublabel: 'Reference Data',
icon: BookOpen,
children: [
{ href: '/admin/doc-control/reference/disciplines', label: 'สาขาวิชาชีพ' },
{ href: '/admin/doc-control/reference/rfa-types', label: 'ประเภท RFA' },
{ href: '/admin/doc-control/reference/correspondence-types', label: 'ประเภทหนังสือ' },
{ href: '/admin/doc-control/reference/tags', label: 'แท็ก' },
],
},
{
label: 'ข้อมูลแบบ Drawing',
sublabel: 'Drawing Master',
icon: Ruler,
children: [
{ href: '/admin/doc-control/drawings/contract/volumes', label: 'สัญญา: Volume' },
{ href: '/admin/doc-control/drawings/contract/categories', label: 'สัญญา: หมวดหมู่' },
{ href: '/admin/doc-control/drawings/contract/sub-categories', label: 'สัญญา: หมวดหมู่ย่อย' },
{ href: '/admin/doc-control/drawings/shop/main-categories', label: 'Shop: หมวดหมู่หลัก' },
{ href: '/admin/doc-control/drawings/shop/sub-categories', label: 'Shop: หมวดหมู่ย่อย' },
],
},
{
label: 'การปฏิบัติการ',
sublabel: 'Operations',
icon: Activity,
children: [
{ href: '/admin/monitoring/audit-logs', label: 'บันทึกการตรวจสอบ' },
{ href: '/admin/monitoring/system-logs/numbering', label: 'บันทึกระบบ' },
{ href: '/admin/monitoring/sessions', label: 'เซสชันที่ใช้งาน' },
{ href: '/admin/migration', label: 'คิวนำเข้าข้อมูล' },
{ href: '/admin/migration/errors', label: 'บันทึกข้อผิดพลาด' },
],
},
{ href: '/admin/ai', label: 'AI Console', icon: Brain },
{ href: '/admin/settings', label: 'ตั้งค่าระบบ', sublabel: 'Settings', icon: Settings },
];
export function AdminSidebar() {
const pathname = usePathname();
const [expandedMenus, setExpandedMenus] = useState<string[]>(
// Auto-expand if current path matches a child
menuItems
.filter((item) => item.children?.some((child) => pathname.startsWith(child.href)))
.map((item) => item.label)
);
const toggleMenu = (label: string) => {
setExpandedMenus((prev) => (prev.includes(label) ? prev.filter((l) => l !== label) : [...prev, label]));
};
return (
<aside className="w-64 border-r bg-card p-4 hidden md:block">
<div className="mb-8 px-2">
<h2 className="text-xl font-bold tracking-tight">Admin Console</h2>
<p className="text-sm text-muted-foreground">LCBP3 DMS</p>
</div>
<nav className="space-y-1">
{menuItems.map((item) => {
const Icon = item.icon;
// Has children - collapsible menu
if (item.children) {
const isExpanded = expandedMenus.includes(item.label);
const hasActiveChild = item.children.some((child) => pathname.startsWith(child.href));
return (
<div key={item.label}>
<button
onClick={() => toggleMenu(item.label)}
className={cn(
'w-full flex items-center justify-between gap-2 px-3 py-2 rounded-lg transition-colors',
hasActiveChild
? 'bg-primary/10 text-primary'
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
)}
>
<span className="flex items-center gap-3 min-w-0">
<Icon className="h-4 w-4 shrink-0" />
<span className="flex flex-col items-start text-left min-w-0">
<span className="text-sm font-medium leading-tight truncate">{item.label}</span>
{item.sublabel && (
<span className="text-[10px] font-normal leading-tight opacity-60">{item.sublabel}</span>
)}
</span>
</span>
{isExpanded ? <ChevronDown className="h-3.5 w-3.5 shrink-0" /> : <ChevronRight className="h-3.5 w-3.5 shrink-0" />}
</button>
{isExpanded && (
<div className="ml-4 mt-1 space-y-0.5 border-l pl-4">
{item.children.map((child) => {
const isActive = pathname === child.href;
return (
<Link
key={child.href}
href={child.href}
className={cn(
'block px-3 py-1.5 rounded-lg transition-colors text-sm',
isActive
? 'bg-primary text-primary-foreground shadow-sm'
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
)}
>
{child.label}
</Link>
);
})}
</div>
)}
</div>
);
}
// Simple menu item
const isActive = pathname.startsWith(item.href!);
return (
<Link
key={item.href}
href={item.href!}
className={cn(
'flex items-center gap-3 px-3 py-2 rounded-lg transition-colors',
isActive
? 'bg-primary text-primary-foreground shadow-sm'
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
)}
>
<Icon className="h-4 w-4 shrink-0" />
<span className="flex flex-col items-start min-w-0">
<span className="text-sm font-medium leading-tight truncate">{item.label}</span>
{item.sublabel && (
<span className="text-[10px] font-normal leading-tight opacity-60">{item.sublabel}</span>
)}
</span>
</Link>
);
})}
</nav>
<div className="mt-auto pt-8 px-2 fixed bottom-4 w-56">
<Link href="/dashboard" className="text-sm text-muted-foreground hover:text-foreground flex items-center gap-2">
Back to Dashboard
</Link>
</div>
</aside>
);
}
import { Sheet, SheetContent, SheetTrigger, SheetTitle } from '@/components/ui/sheet';
import { Button } from '@/components/ui/button';
import { Menu } from 'lucide-react';
export function AdminMobileSidebar() {
const pathname = usePathname();
const [open, setOpen] = useState(false);
const [expandedMenus, setExpandedMenus] = useState<string[]>(
menuItems
.filter((item) => item.children?.some((child) => pathname.startsWith(child.href)))
.map((item) => item.label)
);
const toggleMenu = (label: string) => {
setExpandedMenus((prev) => (prev.includes(label) ? prev.filter((l) => l !== label) : [...prev, label]));
};
return (
<Sheet open={open} onOpenChange={setOpen}>
<SheetTrigger asChild>
<Button variant="ghost" size="icon" className="md:hidden">
<Menu className="h-5 w-5" />
<span className="sr-only">Toggle admin menu</span>
</Button>
</SheetTrigger>
<SheetContent side="left" className="w-64 p-0">
<SheetTitle className="sr-only">Admin Navigation</SheetTitle>
<div className="h-16 flex items-center px-4 border-b">
<span className="text-lg font-bold tracking-tight">Admin Console</span>
</div>
<div className="flex-1 overflow-y-auto py-4 h-[calc(100vh-4rem)]">
<nav className="space-y-1 px-2">
{menuItems.map((item) => {
const Icon = item.icon;
if (item.children) {
const isExpanded = expandedMenus.includes(item.label);
const hasActiveChild = item.children.some((child) => pathname.startsWith(child.href));
return (
<div key={item.label}>
<button
onClick={() => toggleMenu(item.label)}
className={cn(
'w-full flex items-center justify-between gap-2 px-3 py-2 rounded-lg transition-colors',
hasActiveChild
? 'bg-primary/10 text-primary'
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
)}
>
<span className="flex items-center gap-3 min-w-0">
<Icon className="h-4 w-4 shrink-0" />
<span className="flex flex-col items-start text-left min-w-0">
<span className="text-sm font-medium leading-tight truncate">{item.label}</span>
{item.sublabel && (
<span className="text-[10px] font-normal leading-tight opacity-60">{item.sublabel}</span>
)}
</span>
</span>
{isExpanded ? <ChevronDown className="h-3.5 w-3.5 shrink-0" /> : <ChevronRight className="h-3.5 w-3.5 shrink-0" />}
</button>
{isExpanded && (
<div className="ml-4 mt-1 space-y-0.5 border-l pl-4">
{item.children.map((child) => {
const isActive = pathname === child.href;
return (
<Link
key={child.href}
href={child.href}
onClick={() => setOpen(false)}
className={cn(
'block px-3 py-1.5 rounded-lg transition-colors text-sm',
isActive
? 'bg-primary text-primary-foreground shadow-sm'
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
)}
>
{child.label}
</Link>
);
})}
</div>
)}
</div>
);
}
const isActive = pathname.startsWith(item.href!);
return (
<Link
key={item.href}
href={item.href!}
onClick={() => setOpen(false)}
className={cn(
'flex items-center gap-3 px-3 py-2 rounded-lg transition-colors',
isActive
? 'bg-primary text-primary-foreground shadow-sm'
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
)}
>
<Icon className="h-4 w-4 shrink-0" />
<span className="flex flex-col items-start min-w-0">
<span className="text-sm font-medium leading-tight truncate">{item.label}</span>
{item.sublabel && (
<span className="text-[10px] font-normal leading-tight opacity-60">{item.sublabel}</span>
)}
</span>
</Link>
);
})}
</nav>
<div className="p-4 mt-8 border-t absolute bottom-0 w-full left-0 bg-background">
<Link
href="/dashboard"
onClick={() => setOpen(false)}
className="text-sm text-muted-foreground hover:text-foreground flex items-center gap-2"
>
Back to Dashboard
</Link>
</div>
</div>
</SheetContent>
</Sheet>
);
}