mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
114 lines
3.7 KiB
TypeScript
114 lines
3.7 KiB
TypeScript
"use client"
|
|
|
|
import {useEffect, useState} from "react";
|
|
import Link from "next/link";
|
|
import {SidebarMenu, SidebarMenuAction, SidebarMenuButton, SidebarMenuItem} from "@/components/ui/sidebar";
|
|
import {cn} from "@/lib/utils";
|
|
import {buttonVariants} from "@/components/ui/button";
|
|
import {ChartArea, Layers, Settings, ShieldHalf} from "lucide-react";
|
|
import {usePathname} from "next/navigation";
|
|
|
|
export type SidebarMenuCustomProps = {}
|
|
|
|
export const SidebarMenuCustom = (props: SidebarMenuCustomProps) => {
|
|
|
|
const BASE_URL = "/dashboard";
|
|
const pathname = usePathname();
|
|
// Menu items.
|
|
const items = [
|
|
{
|
|
title: "Projects",
|
|
url: "projects",
|
|
icon: Layers,
|
|
},
|
|
{
|
|
title: "Agents",
|
|
url: "agents",
|
|
icon: ShieldHalf,
|
|
},
|
|
{
|
|
title: "Statistics",
|
|
url: "statistics",
|
|
icon: ChartArea,
|
|
},
|
|
{
|
|
title: "Settings",
|
|
url: "settings",
|
|
icon: Settings,
|
|
},
|
|
]
|
|
|
|
useEffect(() => {
|
|
const currentUrl = pathname;
|
|
const currentItem = items.find((item) => `${BASE_URL}/${item.url}` === currentUrl);
|
|
if (currentItem) {
|
|
setActiveItem(currentItem.title);
|
|
}
|
|
}, [pathname]);
|
|
|
|
const [activeItem, setActiveItem] = useState(items[0].title);
|
|
const handleItemClick = (title: string) => {
|
|
setActiveItem(title);
|
|
console.log(title)
|
|
}
|
|
return (
|
|
<SidebarMenu>
|
|
{items.map((item) => (
|
|
<SidebarMenuItem key={item.title}>
|
|
<SidebarMenuButton asChild>
|
|
<Link
|
|
className={cn(buttonVariants({
|
|
size: "lg",
|
|
variant: activeItem === item.title ? "secondary" : 'ghost'
|
|
}), "justify-start p-0")}
|
|
href={`${BASE_URL}/${item.url}`}
|
|
onClick={() => handleItemClick(item.title)}
|
|
>
|
|
<item.icon/>
|
|
<span>{item.title}</span>
|
|
</Link>
|
|
</SidebarMenuButton>
|
|
<SidebarMenuAction
|
|
className={`peer-data-[active=true]/menu-button:opacity-100 ${activeItem === item.title ? 'active' : ''}`}/>
|
|
</SidebarMenuItem>
|
|
))}
|
|
</SidebarMenu>
|
|
)
|
|
}
|
|
|
|
// export type SidebarMenuItemCustomProps = {
|
|
// title: string
|
|
// url: string
|
|
// icon: Element
|
|
// }
|
|
//
|
|
//
|
|
// export const SidebarMenuItemCustom = (props: SidebarMenuItemCustomProps) => {
|
|
//
|
|
// const {title, url, icon} = props;
|
|
//
|
|
// const BASE_URL = "/dashboard";
|
|
// const pathname = usePathname();
|
|
//
|
|
// const [activeItem, setActiveItem] = useState(title);
|
|
//
|
|
// return (
|
|
// <SidebarMenuItem key={title}>
|
|
// <SidebarMenuButton asChild>
|
|
// <Link
|
|
// className={cn(buttonVariants({
|
|
// size: "lg",
|
|
// variant: activeItem === title ? "secondary" : 'ghost'
|
|
// }), "justify-start p-0")}
|
|
// href={`${BASE_URL}/${url}`}
|
|
// onClick={() => handleItemClick(item.title)}
|
|
// >
|
|
// <icon/>
|
|
// <span>{title}</span>
|
|
// </Link>
|
|
// </SidebarMenuButton>
|
|
// <SidebarMenuAction
|
|
// className={`peer-data-[active=true]/menu-button:opacity-100 ${activeItem === title ? 'active' : ''}`}/>
|
|
// </SidebarMenuItem>
|
|
// )
|
|
// }
|