242 lines
7.9 KiB
TypeScript
242 lines
7.9 KiB
TypeScript
import { useState, type ComponentType, type ReactNode } from "react";
|
|
import { Link } from "@/lib/router";
|
|
import { ChevronRight } from "lucide-react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { useSidebar } from "../context/SidebarContext";
|
|
import {
|
|
Collapsible,
|
|
CollapsibleContent,
|
|
CollapsibleTrigger,
|
|
} from "@/components/ui/collapsible";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuRadioGroup,
|
|
DropdownMenuRadioItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { cn } from "@/lib/utils";
|
|
import { useSidebarNavExpanded } from "./SidebarNavItem";
|
|
|
|
type SidebarSectionIcon = ComponentType<{ className?: string }>;
|
|
|
|
export type SidebarSectionMenuAction =
|
|
| {
|
|
type: "item";
|
|
label: string;
|
|
icon?: SidebarSectionIcon;
|
|
href?: string;
|
|
onSelect?: () => void;
|
|
}
|
|
| { type: "separator" };
|
|
|
|
export type SidebarSectionRadioChoice = {
|
|
label: string;
|
|
value: string;
|
|
};
|
|
|
|
type SidebarSectionMenu = {
|
|
actions?: SidebarSectionMenuAction[];
|
|
ariaLabel?: string;
|
|
radioChoices?: SidebarSectionRadioChoice[];
|
|
radioLabel?: string;
|
|
radioValue?: string;
|
|
onRadioValueChange?: (value: string) => void;
|
|
};
|
|
|
|
type SidebarSectionHeaderAction = {
|
|
ariaLabel: string;
|
|
icon: SidebarSectionIcon;
|
|
onClick: () => void;
|
|
};
|
|
|
|
interface SidebarSectionProps {
|
|
label: string;
|
|
children: ReactNode;
|
|
collapsible?: {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
};
|
|
menu?: SidebarSectionMenu;
|
|
headerAction?: SidebarSectionHeaderAction;
|
|
}
|
|
|
|
function SidebarSectionHeader({
|
|
collapsible,
|
|
headerAction,
|
|
label,
|
|
menu,
|
|
}: Pick<SidebarSectionProps, "collapsible" | "headerAction" | "label" | "menu">) {
|
|
const { isMobile } = useSidebar();
|
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
const hasMenu = Boolean(
|
|
menu && ((menu.actions?.length ?? 0) > 0 || (menu.radioChoices?.length ?? 0) > 0),
|
|
);
|
|
const labelClassName = "text-(length:--fs-10) font-medium uppercase tracking-widest font-mono text-muted-foreground/60";
|
|
const headerControlVisibilityClassName = isMobile
|
|
? "opacity-100"
|
|
: "opacity-0 group-hover/sidebar-section:opacity-100 group-focus-within/sidebar-section:opacity-100";
|
|
const caretClassName = cn(
|
|
"h-3 w-3 shrink-0 text-muted-foreground/60 transition-all",
|
|
headerControlVisibilityClassName,
|
|
collapsible?.open && "rotate-90",
|
|
menuOpen && "opacity-100",
|
|
);
|
|
const actionClassName = cn(
|
|
"h-5 w-5 shrink-0 text-muted-foreground/60 transition-opacity hover:text-foreground data-[state=open]:opacity-100",
|
|
headerControlVisibilityClassName,
|
|
);
|
|
const headerContent = <span className={labelClassName}>{label}</span>;
|
|
const HeaderActionIcon = headerAction?.icon;
|
|
|
|
const headingControl = hasMenu ? (
|
|
<DropdownMenu open={menuOpen} onOpenChange={setMenuOpen}>
|
|
<DropdownMenuTrigger asChild>
|
|
<button
|
|
type="button"
|
|
data-slot="icon-button"
|
|
className={cn(
|
|
"inline-flex min-w-0 max-w-full items-center rounded-md px-1 py-0.5 text-left outline-none transition-colors",
|
|
"hover:bg-accent/50 focus-visible:bg-accent/50 focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-1",
|
|
menuOpen && "bg-accent/50",
|
|
)}
|
|
aria-label={menu?.ariaLabel ?? `${label} actions`}
|
|
>
|
|
{headerContent}
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start" className="w-48">
|
|
{menu?.actions?.map((action, index) => {
|
|
if (action.type === "separator") {
|
|
return <DropdownMenuSeparator key={`separator-${index}`} />;
|
|
}
|
|
const Icon = action.icon;
|
|
const content = (
|
|
<>
|
|
{Icon ? <Icon className="size-4" /> : null}
|
|
<span>{action.label}</span>
|
|
</>
|
|
);
|
|
if (action.href) {
|
|
return (
|
|
<DropdownMenuItem key={`${action.label}-${index}`} asChild>
|
|
<Link to={action.href}>{content}</Link>
|
|
</DropdownMenuItem>
|
|
);
|
|
}
|
|
return (
|
|
<DropdownMenuItem key={`${action.label}-${index}`} onSelect={action.onSelect}>
|
|
{content}
|
|
</DropdownMenuItem>
|
|
);
|
|
})}
|
|
{menu?.radioChoices && menu.radioChoices.length > 0 ? (
|
|
<DropdownMenuRadioGroup
|
|
value={menu.radioValue}
|
|
onValueChange={menu.onRadioValueChange}
|
|
aria-label={menu.radioLabel}
|
|
>
|
|
{menu.radioChoices.map((choice) => (
|
|
<DropdownMenuRadioItem key={choice.value} value={choice.value}>
|
|
{choice.label}
|
|
</DropdownMenuRadioItem>
|
|
))}
|
|
</DropdownMenuRadioGroup>
|
|
) : null}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
) : (
|
|
<div className="inline-flex min-w-0 max-w-full items-center px-1 py-0.5">{headerContent}</div>
|
|
);
|
|
|
|
return (
|
|
<div className="group/sidebar-section px-3 py-1.5 pointer-coarse:py-1">
|
|
<div className="relative flex min-h-6 min-w-0 items-center gap-1">
|
|
{collapsible ? (
|
|
<CollapsibleTrigger asChild>
|
|
<button
|
|
type="button"
|
|
data-slot="icon-button"
|
|
className="absolute -left-4 flex h-5 w-5 items-center justify-center rounded-sm outline-none transition-colors hover:bg-accent focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-1"
|
|
aria-label={collapsible.open ? `Collapse ${label}` : `Expand ${label}`}
|
|
>
|
|
<ChevronRight className={caretClassName} aria-hidden="true" />
|
|
</button>
|
|
</CollapsibleTrigger>
|
|
) : null}
|
|
{headingControl}
|
|
{headerAction && HeaderActionIcon ? (
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-xs"
|
|
className={actionClassName}
|
|
aria-label={headerAction.ariaLabel}
|
|
onClick={headerAction.onClick}
|
|
>
|
|
<HeaderActionIcon className="h-3.5 w-3.5" />
|
|
</Button>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function SidebarSection({
|
|
label,
|
|
children,
|
|
collapsible,
|
|
menu,
|
|
headerAction,
|
|
}: SidebarSectionProps) {
|
|
const { collapsed, peeking } = useSidebar();
|
|
const forceExpanded = useSidebarNavExpanded();
|
|
const rail = collapsed && !peeking && !forceExpanded;
|
|
const content = <div className="flex flex-col gap-0.5 mt-0.5">{children}</div>;
|
|
|
|
// Collapsed rail: the section header would only show a clipped sliver of its
|
|
// label, so replace it with a thin divider. The label stays in the a11y tree,
|
|
// per-section carets/menus are dropped (no room + no toggle target in the
|
|
// rail), and the items always render so their icons stay reachable.
|
|
//
|
|
// The header wrapper mirrors the expanded header's vertical footprint exactly
|
|
// (outer `px-3 py-1.5 pointer-coarse:py-1` + inner `min-h-6`) so item icons land
|
|
// at the identical y-position in both states — no movement on collapse/expand
|
|
// (PAP-10676). The divider is vertically centered within that same row.
|
|
if (rail) {
|
|
return (
|
|
<div>
|
|
<div className="px-3 py-1.5 pointer-coarse:py-1">
|
|
<div className="flex min-h-6 items-center">
|
|
<span className="sr-only">{label}</span>
|
|
<div className="h-px w-full bg-border/60" aria-hidden="true" />
|
|
</div>
|
|
</div>
|
|
{content}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (collapsible) {
|
|
return (
|
|
<Collapsible open={collapsible.open} onOpenChange={collapsible.onOpenChange}>
|
|
<SidebarSectionHeader
|
|
label={label}
|
|
collapsible={collapsible}
|
|
menu={menu}
|
|
headerAction={headerAction}
|
|
/>
|
|
<CollapsibleContent>{content}</CollapsibleContent>
|
|
</Collapsible>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<SidebarSectionHeader label={label} menu={menu} headerAction={headerAction} />
|
|
{content}
|
|
</div>
|
|
);
|
|
}
|