import AppLogo from '@/components/app-logo';
import {
Sidebar,
SidebarContent,
SidebarGroup,
SidebarGroupLabel,
SidebarHeader,
SidebarMenu,
SidebarMenuButton,
SidebarMenuItem,
} from '@/components/ui/sidebar';
import { useCurrentUrl } from '@/hooks/use-current-url';
import { dashboard } from '@/routes';
import { index as cashAccountsIndex } from '@/routes/admin/finance/cash-accounts';
import { index as employeeAdvancesIndex } from '@/routes/admin/finance/employee-advances';
import { index as expensesIndex } from '@/routes/admin/finance/expenses';
import { current as payrollCurrent } from '@/routes/admin/finance/payroll-periods';
import { index as attendancesIndex } from '@/routes/admin/hr/attendances';
import { index as employeesIndex } from '@/routes/admin/hr/employees';
import { index as leaveRequestsIndex } from '@/routes/admin/hr/leave-requests';
import { index as categoriesIndex } from '@/routes/admin/master/categories';
import { index as customersIndex } from '@/routes/admin/master/customers';
import { index as suppliersIndex } from '@/routes/admin/master/suppliers';
import { index as rolesIndex } from '@/routes/admin/settings/roles';
import { Link } from '@inertiajs/react';
import type { LucideIcon } from 'lucide-react';
import {
Activity,
ArrowUpFromLine,
BarChart3,
Boxes,
CalendarCheck,
CalendarDays,
ClipboardCheck,
DollarSign,
HandCoins,
LayoutGrid,
Package,
RefreshCw,
Scissors,
Settings,
Shield,
ShoppingCart,
Tags,
Truck,
UserCircle,
Users,
Wallet,
} from 'lucide-react';
type NavMenuItem = { title: string; href: string; icon: LucideIcon };
const dasborItem: NavMenuItem = {
title: 'Dasbor',
href: dashboard.url(),
icon: LayoutGrid,
};
const analisaItem: NavMenuItem = {
title: 'Analisa',
href: '#',
icon: BarChart3,
};
const masterItems: NavMenuItem[] = [
{ title: 'Kategori', href: categoriesIndex.url(), icon: Tags },
{ title: 'Produk', href: '#', icon: Package },
{ title: 'Bahan Baku', href: '#', icon: Boxes },
{ title: 'Supplier', href: suppliersIndex.url(), icon: Truck },
{ title: 'Customer', href: customersIndex.url(), icon: Users },
];
const kelolaItems: NavMenuItem[] = [
{ title: 'Belanja', href: '#', icon: ShoppingCart },
{ title: 'Cutting', href: '#', icon: Scissors },
{ title: 'Restock', href: '#', icon: RefreshCw },
{ title: 'Stok Opname', href: '#', icon: ClipboardCheck },
];
const keuanganItems: NavMenuItem[] = [
{ title: 'Kas Toko', href: cashAccountsIndex.url(), icon: Wallet },
{ title: 'Pengeluaran', href: expensesIndex.url(), icon: ArrowUpFromLine },
{ title: 'Kasbon', href: employeeAdvancesIndex.url(), icon: HandCoins },
{ title: 'Gaji', href: payrollCurrent.url(), icon: DollarSign },
];
const hrItems: NavMenuItem[] = [
{ title: 'Pegawai', href: employeesIndex.url(), icon: UserCircle },
{ title: 'Presensi', href: attendancesIndex.url(), icon: CalendarCheck },
{ title: 'Cuti', href: leaveRequestsIndex.url(), icon: CalendarDays },
];
const sistemItems: NavMenuItem[] = [
{ title: 'Pengaturan', href: '/admin/settings', icon: Settings },
{ title: 'Role & Permission', href: rolesIndex.url(), icon: Shield },
{ title: 'Log Aktivitas', href: '#', icon: Activity },
];
function MenuGroup({ label, items }: { label: string; items: NavMenuItem[] }) {
return (
{label}
{items.map((item) => (
{item.title}
))}
);
}
export function AppSidebar() {
const { isCurrentUrl } = useCurrentUrl();
return (
{dasborItem.title}
{analisaItem.title}
);
}