siakad-itm/resources/js/components/app-sidebar.tsx
Yoga Pangestu 3e44029431
Some checks failed
tests / ci (pull_request) Has been cancelled
Refactor code structure for improved readability and maintainability
2026-08-03 18:18:12 +07:00

145 lines
2.8 KiB
TypeScript

import {
IconCamera,
IconChartBar,
IconDashboard,
IconFileAi,
IconFileDescription,
IconFolder,
IconHelp,
IconListDetails,
IconMessageDots,
IconUsers
} from "@tabler/icons-react";
import { usePage } from "@inertiajs/react";
import * as React from "react";
import AppLogoIcon from "@/components/app-logo-icon";
import { NavMain } from "@/components/nav-main";
import { NavSecondary } from "@/components/nav-secondary";
import {
Sidebar,
SidebarContent,
SidebarHeader,
SidebarMenu,
SidebarMenuButton,
SidebarMenuItem,
} from "@/components/ui/sidebar";
const data = {
navMain: [
{
title: "Dashboard",
url: "#",
icon: IconDashboard,
},
{
title: "Lifecycle",
url: "#",
icon: IconListDetails,
},
{
title: "Analytics",
url: "#",
icon: IconChartBar,
},
{
title: "Projects",
url: "#",
icon: IconFolder,
},
{
title: "Team",
url: "#",
icon: IconUsers,
},
],
navClouds: [
{
title: "Capture",
icon: IconCamera,
isActive: true,
url: "#",
items: [
{
title: "Active Proposals",
url: "#",
},
{
title: "Archived",
url: "#",
},
],
},
{
title: "Proposal",
icon: IconFileDescription,
url: "#",
items: [
{
title: "Active Proposals",
url: "#",
},
{
title: "Archived",
url: "#",
},
],
},
{
title: "Prompts",
icon: IconFileAi,
url: "#",
items: [
{
title: "Active Proposals",
url: "#",
},
{
title: "Archived",
url: "#",
},
],
},
],
navSecondary: [
{
title: "Kritik dan Saran",
url: "#",
icon: IconMessageDots,
},
{
title: "Bantuan",
url: "#",
icon: IconHelp,
},
],
}
export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
const { name } = usePage().props;
return (
<Sidebar collapsible="icon" {...props}>
<SidebarHeader>
<SidebarMenu>
<SidebarMenuItem>
<SidebarMenuButton
asChild
className="data-[slot=sidebar-menu-button]:p-1.5!"
>
<a href="#">
<AppLogoIcon className="size-5! rounded-sm object-cover" />
<span className="text-base font-semibold">{name}</span>
</a>
</SidebarMenuButton>
</SidebarMenuItem>
</SidebarMenu>
</SidebarHeader>
<SidebarContent>
<NavMain items={data.navMain} />
<NavSecondary items={data.navSecondary} className="mt-auto" />
</SidebarContent>
</Sidebar>
)
}