mirror of
https://github.com/temetro/temetro.git
synced 2026-07-26 11:58:14 +00:00
143ffc39f1
- SidebarMenuAction (the expand chevron on Patients/Pharmacy/Messages) used a physical right-1, so in Arabic it sat on the right over the icons. Use the logical end-1 so it's on the right in English and the left in Arabic, clear of the icons. - Revert the earlier header change: the notification bell and collapse toggle go back to their original placement (no RTL column stacking, no mirrored glyph, notifications popover back to side="right"). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
744 lines
22 KiB
TypeScript
744 lines
22 KiB
TypeScript
"use client";
|
|
|
|
import { mergeProps } from "@base-ui/react/merge-props";
|
|
import { useRender } from "@base-ui/react/use-render";
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
import { PanelLeftIcon } from "lucide-react";
|
|
import * as React from "react";
|
|
import { useMediaQuery } from "@/hooks/use-media-query";
|
|
import { cn } from "@/lib/utils";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
|
import { Separator } from "@/components/ui/separator";
|
|
import {
|
|
Sheet,
|
|
SheetDescription,
|
|
SheetHeader,
|
|
SheetPopup,
|
|
SheetTitle,
|
|
} from "@/components/ui/sheet";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
import {
|
|
Tooltip,
|
|
TooltipPopup,
|
|
TooltipTrigger,
|
|
} from "@/components/ui/tooltip";
|
|
|
|
const SIDEBAR_COOKIE_NAME: string = "sidebar_state";
|
|
const SIDEBAR_COOKIE_MAX_AGE: number = 60 * 60 * 24 * 7;
|
|
const SIDEBAR_WIDTH: string = "16rem";
|
|
const SIDEBAR_WIDTH_MOBILE: string = "18rem";
|
|
const SIDEBAR_WIDTH_ICON: string = "3rem";
|
|
const SIDEBAR_KEYBOARD_SHORTCUT: string = "b";
|
|
|
|
const sidebarMenuButtonVariants = cva(
|
|
"peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-lg p-2 text-start text-sm outline-hidden ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-data-[sidebar=menu-action]/menu-item:pe-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! [&>span:last-child]:truncate [&>svg:not([class*='size-'])]:size-4 [&>svg]:shrink-0",
|
|
{
|
|
defaultVariants: {
|
|
size: "default",
|
|
variant: "default",
|
|
},
|
|
variants: {
|
|
size: {
|
|
default: "h-8 text-sm",
|
|
lg: "h-12 text-sm group-data-[collapsible=icon]:p-0!",
|
|
sm: "h-7 text-xs",
|
|
},
|
|
variant: {
|
|
default: "hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",
|
|
outline:
|
|
"bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]",
|
|
},
|
|
},
|
|
},
|
|
);
|
|
|
|
export type SidebarContextProps = {
|
|
state: "expanded" | "collapsed";
|
|
open: boolean;
|
|
setOpen: (open: boolean) => void;
|
|
openMobile: boolean;
|
|
setOpenMobile: (open: boolean) => void;
|
|
isMobile: boolean;
|
|
toggleSidebar: () => void;
|
|
};
|
|
|
|
export const SidebarContext: React.Context<SidebarContextProps | null> =
|
|
React.createContext<SidebarContextProps | null>(null);
|
|
|
|
export function useSidebar(): SidebarContextProps {
|
|
const context = React.useContext(SidebarContext);
|
|
if (!context) {
|
|
throw new Error("useSidebar must be used within a SidebarProvider.");
|
|
}
|
|
|
|
return context;
|
|
}
|
|
|
|
export function SidebarProvider({
|
|
defaultOpen = true,
|
|
open: openProp,
|
|
onOpenChange: setOpenProp,
|
|
className,
|
|
style,
|
|
children,
|
|
...props
|
|
}: React.ComponentProps<"div"> & {
|
|
defaultOpen?: boolean;
|
|
open?: boolean;
|
|
onOpenChange?: (open: boolean) => void;
|
|
}): React.ReactElement {
|
|
const isMobile = useMediaQuery("max-md");
|
|
const [openMobile, setOpenMobile] = React.useState(false);
|
|
|
|
// This is the internal state of the sidebar.
|
|
// We use openProp and setOpenProp for control from outside the component.
|
|
const [_open, _setOpen] = React.useState(defaultOpen);
|
|
const open = openProp ?? _open;
|
|
const setOpen = React.useCallback(
|
|
async (value: boolean | ((value: boolean) => boolean)) => {
|
|
const openState = typeof value === "function" ? value(open) : value;
|
|
if (setOpenProp) {
|
|
setOpenProp(openState);
|
|
} else {
|
|
_setOpen(openState);
|
|
}
|
|
|
|
// This sets the cookie to keep the sidebar state.
|
|
await cookieStore.set({
|
|
expires: Date.now() + SIDEBAR_COOKIE_MAX_AGE * 1000,
|
|
name: SIDEBAR_COOKIE_NAME,
|
|
path: "/",
|
|
value: String(openState),
|
|
});
|
|
},
|
|
[setOpenProp, open],
|
|
);
|
|
|
|
// Helper to toggle the sidebar.
|
|
const toggleSidebar = React.useCallback(() => {
|
|
return isMobile ? setOpenMobile((open) => !open) : setOpen((open) => !open);
|
|
}, [isMobile, setOpen]);
|
|
|
|
// Adds a keyboard shortcut to toggle the sidebar.
|
|
React.useEffect(() => {
|
|
const handleKeyDown = (event: KeyboardEvent): void => {
|
|
if (
|
|
event.key === SIDEBAR_KEYBOARD_SHORTCUT &&
|
|
(event.metaKey || event.ctrlKey)
|
|
) {
|
|
event.preventDefault();
|
|
toggleSidebar();
|
|
}
|
|
};
|
|
|
|
window.addEventListener("keydown", handleKeyDown);
|
|
return () => window.removeEventListener("keydown", handleKeyDown);
|
|
}, [toggleSidebar]);
|
|
|
|
// We add a state so that we can do data-state="expanded" or "collapsed".
|
|
// This makes it easier to style the sidebar with Tailwind classes.
|
|
const state = open ? "expanded" : "collapsed";
|
|
|
|
const contextValue = React.useMemo<SidebarContextProps>(
|
|
() => ({
|
|
isMobile,
|
|
open,
|
|
openMobile,
|
|
setOpen,
|
|
setOpenMobile,
|
|
state,
|
|
toggleSidebar,
|
|
}),
|
|
[state, open, setOpen, isMobile, openMobile, toggleSidebar],
|
|
);
|
|
|
|
return (
|
|
<SidebarContext.Provider value={contextValue}>
|
|
<div
|
|
className={cn(
|
|
"group/sidebar-wrapper flex min-h-svh w-full has-data-[variant=inset]:bg-sidebar",
|
|
className,
|
|
)}
|
|
data-slot="sidebar-wrapper"
|
|
style={
|
|
{
|
|
"--sidebar-width": SIDEBAR_WIDTH,
|
|
"--sidebar-width-icon": SIDEBAR_WIDTH_ICON,
|
|
...style,
|
|
} as React.CSSProperties
|
|
}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</div>
|
|
</SidebarContext.Provider>
|
|
);
|
|
}
|
|
|
|
export function Sidebar({
|
|
side = "left",
|
|
variant = "sidebar",
|
|
collapsible = "offcanvas",
|
|
className,
|
|
children,
|
|
...props
|
|
}: React.ComponentProps<"div"> & {
|
|
side?: "left" | "right";
|
|
variant?: "sidebar" | "floating" | "inset";
|
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
}): React.ReactElement {
|
|
const { isMobile, state, openMobile, setOpenMobile } = useSidebar();
|
|
|
|
if (collapsible === "none") {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"flex h-full w-(--sidebar-width) flex-col bg-sidebar text-sidebar-foreground",
|
|
className,
|
|
)}
|
|
data-slot="sidebar"
|
|
{...props}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (isMobile) {
|
|
return (
|
|
<Sheet onOpenChange={setOpenMobile} open={openMobile} {...props}>
|
|
<SheetPopup
|
|
className="w-(--sidebar-width) bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden"
|
|
data-mobile="true"
|
|
data-sidebar="sidebar"
|
|
data-slot="sidebar"
|
|
side={side}
|
|
style={
|
|
{
|
|
"--sidebar-width": SIDEBAR_WIDTH_MOBILE,
|
|
} as React.CSSProperties
|
|
}
|
|
>
|
|
<SheetHeader className="sr-only">
|
|
<SheetTitle>Sidebar</SheetTitle>
|
|
<SheetDescription>Displays the mobile sidebar.</SheetDescription>
|
|
</SheetHeader>
|
|
<div className="flex h-full w-full flex-col">{children}</div>
|
|
</SheetPopup>
|
|
</Sheet>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className="group peer hidden text-sidebar-foreground md:block"
|
|
data-collapsible={state === "collapsed" ? collapsible : ""}
|
|
data-side={side}
|
|
data-slot="sidebar"
|
|
data-state={state}
|
|
data-variant={variant}
|
|
>
|
|
{/* This is what handles the sidebar gap on desktop */}
|
|
<div
|
|
className={cn(
|
|
"relative w-(--sidebar-width) bg-transparent transition-[width] duration-200 ease-linear",
|
|
"group-data-[collapsible=offcanvas]:w-0",
|
|
"group-data-[side=right]:rotate-180",
|
|
variant === "floating" || variant === "inset"
|
|
? "group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4)))]"
|
|
: "group-data-[collapsible=icon]:w-(--sidebar-width-icon)",
|
|
)}
|
|
data-slot="sidebar-gap"
|
|
/>
|
|
<div
|
|
className={cn(
|
|
"fixed inset-y-0 z-10 hidden h-svh w-(--sidebar-width) transition-[left,right,width] duration-200 ease-linear md:flex",
|
|
side === "left"
|
|
? "left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]"
|
|
: "right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]",
|
|
// Adjust the padding for floating and inset variants.
|
|
variant === "floating" || variant === "inset"
|
|
? "p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4))+2px)]"
|
|
: "group-data-[collapsible=icon]:w-(--sidebar-width-icon) group-data-[side=left]:border-r group-data-[side=right]:border-l",
|
|
className,
|
|
)}
|
|
data-slot="sidebar-container"
|
|
{...props}
|
|
>
|
|
<div
|
|
className="flex h-full w-full flex-col bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:shadow-sm/5"
|
|
data-sidebar="sidebar"
|
|
data-slot="sidebar-inner"
|
|
>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function SidebarTrigger({
|
|
className,
|
|
onClick,
|
|
...props
|
|
}: React.ComponentProps<typeof Button>): React.ReactElement {
|
|
const { toggleSidebar } = useSidebar();
|
|
|
|
return (
|
|
<Button
|
|
className={cn("size-7", className)}
|
|
data-sidebar="trigger"
|
|
data-slot="sidebar-trigger"
|
|
onClick={(event: React.MouseEvent<HTMLButtonElement>) => {
|
|
onClick?.(event);
|
|
toggleSidebar();
|
|
}}
|
|
size="icon"
|
|
variant="ghost"
|
|
{...props}
|
|
>
|
|
<PanelLeftIcon />
|
|
<span className="sr-only">Toggle Sidebar</span>
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
export function SidebarRail({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"button">): React.ReactElement {
|
|
const { toggleSidebar } = useSidebar();
|
|
|
|
return (
|
|
<button
|
|
aria-label="Toggle Sidebar"
|
|
className={cn(
|
|
"absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-sidebar-border group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex",
|
|
"in-data-[side=left]:cursor-w-resize in-data-[side=right]:cursor-e-resize",
|
|
"[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize",
|
|
"group-data-[collapsible=offcanvas]:translate-x-0 hover:group-data-[collapsible=offcanvas]:bg-sidebar group-data-[collapsible=offcanvas]:after:left-full",
|
|
"[[data-side=left][data-collapsible=offcanvas]_&]:-right-2",
|
|
"[[data-side=right][data-collapsible=offcanvas]_&]:-left-2",
|
|
className,
|
|
)}
|
|
data-sidebar="rail"
|
|
data-slot="sidebar-rail"
|
|
onClick={toggleSidebar}
|
|
tabIndex={-1}
|
|
title="Toggle Sidebar"
|
|
type="button"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarInset({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"main">): React.ReactElement {
|
|
return (
|
|
<main
|
|
className={cn(
|
|
"relative flex w-full flex-1 flex-col bg-background",
|
|
"md:peer-data-[variant=inset]:peer-data-[state=collapsed]:ms-2 md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ms-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:border md:peer-data-[variant=inset]:shadow-sm/5",
|
|
className,
|
|
)}
|
|
data-slot="sidebar-inset"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarInput({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof Input>): React.ReactElement {
|
|
return (
|
|
<Input
|
|
className={cn("h-8 w-full bg-background shadow-none", className)}
|
|
data-sidebar="input"
|
|
data-slot="sidebar-input"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarHeader({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div">): React.ReactElement {
|
|
return (
|
|
<div
|
|
className={cn("flex flex-col gap-2 p-2", className)}
|
|
data-sidebar="header"
|
|
data-slot="sidebar-header"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarFooter({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div">): React.ReactElement {
|
|
return (
|
|
<div
|
|
className={cn("flex flex-col gap-2 p-2", className)}
|
|
data-sidebar="footer"
|
|
data-slot="sidebar-footer"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarSeparator({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof Separator>): React.ReactElement {
|
|
return (
|
|
<Separator
|
|
className={cn("mx-2 w-auto bg-sidebar-border", className)}
|
|
data-sidebar="separator"
|
|
data-slot="sidebar-separator"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarContent({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div">): React.ReactElement {
|
|
return (
|
|
<ScrollArea className="min-h-0 flex-1" fill scrollFade>
|
|
<div
|
|
className={cn(
|
|
// `min-h-full` (not `h-full`) so the content can grow taller than the
|
|
// viewport and the surrounding ScrollArea actually scrolls, rather than
|
|
// pinning to the viewport height and clipping a tall nav.
|
|
"flex min-h-full flex-col gap-2 group-data-[collapsible=icon]:overflow-hidden",
|
|
className,
|
|
)}
|
|
data-sidebar="content"
|
|
data-slot="sidebar-content"
|
|
{...props}
|
|
/>
|
|
</ScrollArea>
|
|
);
|
|
}
|
|
|
|
export function SidebarGroup({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div">): React.ReactElement {
|
|
return (
|
|
<div
|
|
className={cn("relative flex w-full min-w-0 flex-col p-2", className)}
|
|
data-sidebar="group"
|
|
data-slot="sidebar-group"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarGroupLabel({
|
|
className,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"div">): React.ReactElement {
|
|
const defaultProps = {
|
|
className: cn(
|
|
"flex h-8 shrink-0 items-center rounded-lg px-2 font-medium text-sidebar-foreground text-xs outline-hidden ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0",
|
|
"group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",
|
|
className,
|
|
),
|
|
"data-sidebar": "group-label",
|
|
"data-slot": "sidebar-group-label",
|
|
};
|
|
|
|
return useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps(defaultProps, props),
|
|
render,
|
|
});
|
|
}
|
|
|
|
export function SidebarGroupAction({
|
|
className,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"button">): React.ReactElement {
|
|
const defaultProps = {
|
|
className: cn(
|
|
"absolute top-3.5 right-3 flex aspect-square w-5 items-center justify-center rounded-lg p-0 text-sidebar-foreground outline-hidden ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg:not([class*='size-'])]:size-4 [&>svg]:shrink-0",
|
|
// Increases the hit area of the button on mobile.
|
|
"after:absolute after:-inset-2 md:after:hidden",
|
|
"group-data-[collapsible=icon]:hidden",
|
|
className,
|
|
),
|
|
"data-sidebar": "group-action",
|
|
"data-slot": "sidebar-group-action",
|
|
};
|
|
|
|
return useRender({
|
|
defaultTagName: "button",
|
|
props: mergeProps(defaultProps, props),
|
|
render,
|
|
});
|
|
}
|
|
|
|
export function SidebarGroupContent({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div">): React.ReactElement {
|
|
return (
|
|
<div
|
|
className={cn("w-full text-sm", className)}
|
|
data-sidebar="group-content"
|
|
data-slot="sidebar-group-content"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenu({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"ul">): React.ReactElement {
|
|
return (
|
|
<ul
|
|
className={cn("flex w-full min-w-0 flex-col gap-1", className)}
|
|
data-sidebar="menu"
|
|
data-slot="sidebar-menu"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenuItem({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"li">): React.ReactElement {
|
|
return (
|
|
<li
|
|
className={cn("group/menu-item relative", className)}
|
|
data-sidebar="menu-item"
|
|
data-slot="sidebar-menu-item"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenuButton({
|
|
isActive = false,
|
|
variant = "default",
|
|
size = "default",
|
|
tooltip,
|
|
className,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"button"> & {
|
|
isActive?: boolean;
|
|
tooltip?: string | React.ComponentProps<typeof TooltipPopup>;
|
|
} & VariantProps<typeof sidebarMenuButtonVariants>): React.ReactElement {
|
|
const { isMobile, state } = useSidebar();
|
|
|
|
const defaultProps = {
|
|
className: cn(sidebarMenuButtonVariants({ size, variant }), className),
|
|
"data-active": isActive,
|
|
"data-sidebar": "menu-button",
|
|
"data-size": size,
|
|
"data-slot": "sidebar-menu-button",
|
|
};
|
|
|
|
const buttonProps = mergeProps<"button">(defaultProps, props);
|
|
|
|
const buttonElement = useRender({
|
|
defaultTagName: "button",
|
|
props: buttonProps,
|
|
render,
|
|
});
|
|
|
|
if (!tooltip) {
|
|
return buttonElement;
|
|
}
|
|
|
|
if (typeof tooltip === "string") {
|
|
tooltip = {
|
|
children: tooltip,
|
|
};
|
|
}
|
|
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={buttonElement as React.ReactElement<Record<string, unknown>>}
|
|
/>
|
|
<TooltipPopup
|
|
align="center"
|
|
hidden={state !== "collapsed" || isMobile}
|
|
side="right"
|
|
{...tooltip}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenuAction({
|
|
className,
|
|
showOnHover = false,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"button"> & {
|
|
showOnHover?: boolean;
|
|
}): React.ReactElement {
|
|
const defaultProps = {
|
|
className: cn(
|
|
"absolute top-1.5 end-1 flex aspect-square w-5 items-center justify-center rounded-lg p-0 text-sidebar-foreground outline-hidden ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg:not([class*='size-'])]:size-4 [&>svg]:shrink-0",
|
|
// Increases the hit area of the button on mobile.
|
|
"after:absolute after:-inset-2 md:after:hidden",
|
|
"peer-data-[size=sm]/menu-button:top-1",
|
|
"peer-data-[size=default]/menu-button:top-1.5",
|
|
"peer-data-[size=lg]/menu-button:top-2.5",
|
|
"group-data-[collapsible=icon]:hidden",
|
|
showOnHover &&
|
|
"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0",
|
|
className,
|
|
),
|
|
"data-sidebar": "menu-action",
|
|
"data-slot": "sidebar-menu-action",
|
|
};
|
|
|
|
return useRender({
|
|
defaultTagName: "button",
|
|
props: mergeProps<"button">(defaultProps, props),
|
|
render,
|
|
});
|
|
}
|
|
|
|
export function SidebarMenuBadge({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div">): React.ReactElement {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-lg px-1 font-medium text-sidebar-foreground text-xs tabular-nums",
|
|
"peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground",
|
|
"peer-data-[size=sm]/menu-button:top-1",
|
|
"peer-data-[size=default]/menu-button:top-1.5",
|
|
"peer-data-[size=lg]/menu-button:top-2.5",
|
|
"group-data-[collapsible=icon]:hidden",
|
|
className,
|
|
)}
|
|
data-sidebar="menu-badge"
|
|
data-slot="sidebar-menu-badge"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenuSkeleton({
|
|
className,
|
|
showIcon = false,
|
|
...props
|
|
}: React.ComponentProps<"div"> & {
|
|
showIcon?: boolean;
|
|
}): React.ReactElement {
|
|
// Random width between 50 to 90%.
|
|
const width = React.useMemo(() => {
|
|
return `${Math.floor(Math.random() * 40) + 50}%`;
|
|
}, []);
|
|
|
|
return (
|
|
<div
|
|
className={cn("flex h-8 items-center gap-2 rounded-lg px-2", className)}
|
|
data-sidebar="menu-skeleton"
|
|
data-slot="sidebar-menu-skeleton"
|
|
{...props}
|
|
>
|
|
{showIcon && (
|
|
<Skeleton
|
|
className="size-4 rounded-lg"
|
|
data-sidebar="menu-skeleton-icon"
|
|
/>
|
|
)}
|
|
<Skeleton
|
|
className="h-4 max-w-(--skeleton-width) flex-1"
|
|
data-sidebar="menu-skeleton-text"
|
|
style={
|
|
{
|
|
"--skeleton-width": width,
|
|
} as React.CSSProperties
|
|
}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenuSub({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"ul">): React.ReactElement {
|
|
return (
|
|
<ul
|
|
className={cn(
|
|
"mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-sidebar-border border-l px-2.5 py-0.5",
|
|
"group-data-[collapsible=icon]:hidden",
|
|
className,
|
|
)}
|
|
data-sidebar="menu-sub"
|
|
data-slot="sidebar-menu-sub"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenuSubItem({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"li">): React.ReactElement {
|
|
return (
|
|
<li
|
|
className={cn("group/menu-sub-item relative", className)}
|
|
data-sidebar="menu-sub-item"
|
|
data-slot="sidebar-menu-sub-item"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SidebarMenuSubButton({
|
|
size = "md",
|
|
isActive = false,
|
|
className,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"a"> & {
|
|
size?: "sm" | "md";
|
|
isActive?: boolean;
|
|
}): React.ReactElement {
|
|
const defaultProps = {
|
|
className: cn(
|
|
"flex h-8 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-lg px-2 text-sidebar-foreground outline-hidden ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 sm:h-7 [&>span:last-child]:truncate [&>svg:not([class*='size-'])]:size-4 [&>svg]:shrink-0 [&>svg]:text-sidebar-accent-foreground",
|
|
"data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground",
|
|
size === "sm" && "text-xs",
|
|
size === "md" && "text-sm",
|
|
"group-data-[collapsible=icon]:hidden",
|
|
className,
|
|
),
|
|
"data-active": isActive,
|
|
"data-sidebar": "menu-sub-button",
|
|
"data-size": size,
|
|
"data-slot": "sidebar-menu-sub-button",
|
|
};
|
|
|
|
return useRender({
|
|
defaultTagName: "a",
|
|
props: mergeProps<"a">(defaultProps, props),
|
|
render,
|
|
});
|
|
}
|