Menyeluruh merancang ulang apps/backoffice memakai pola shadcn/ui sambil mempertahankan seluruh palette warna existing (primary/neutral/success/ info/warning/danger) dan typography Bai Jamjuree. UI library (libs/ui): - Atoms existing (Button, Input, Label, Textarea, Card, Dialog, Drawer, Form, Select, Toggle) dirombak ke pola shadcn, API dipertahankan agar sibling apps (gacha, dimentorin, hackathon, qrcampaign) tidak break - Select atom beralih dari native ke Radix Select + NativeSelect fallback - 18 atom baru: Badge, Avatar, Separator, Skeleton, Tabs, Tooltip, DropdownMenu, Popover, AlertDialog, Checkbox, RadioGroup, Switch, ScrollArea, Sheet, Sidebar, Breadcrumb, Table, + use-mobile hook - DataTable, Filter, BackofficeWrapper, Pagination, Modal (alias Dialog) direstyle dengan token baru - CSS variable layer shadcn ditambahkan (--color-primary, --color-sidebar-*, dll) dipetakan ke palette existing; tw-animate-css di-import untuk transisi Backoffice shell: - Sidebar bersarang SidebarProvider + SidebarInset, built-in mobile Sheet, user DropdownMenu (Avatar + logout), ikon lucide-react Pages redesign (19 list/dashboard/settings): - accounts, cms-events, cms-testimonials, dashboard, dashboard-dimentorin (dengan recharts di Card), feedback-review-dimentorin, gacha-roll, hackathon-dashboard, hackathon-submissions, hackathon-teams, hackathon-users, permissions, prizes, roadmap-dimentorin, roles, session-dimentorin, settings-dimentorin (Tabs), transactions, users-dimentorin (Tabs mentor/mentee) - Pola unified: BackofficeWrapper > Card (CardHeader toolbar + CardContent DataTable) + AlertDialog untuk delete confirm - Form accounts_/$id diredesign; form pages lain tetap pakai ControlledInputField yang sekarang berbasis shadcn Input Dependencies: - +20 radix-ui primitives, lucide-react, cmdk, input-otp - Select native patched di dimentorin (profile-sidebar, schedule step) untuk tetap kompatibel via NativeSelect alias Verifikasi: - nx build backoffice: sukses (2.33s, 4801 modules) - nx build dimentorin/gacha/hackathon/qrcampaign: semua sukses (zero regresi dari rewrite libs/ui) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
682 lines
20 KiB
TypeScript
682 lines
20 KiB
TypeScript
'use client';
|
|
|
|
import * as React from 'react';
|
|
import { Slot } from '@radix-ui/react-slot';
|
|
import { cva, type VariantProps } from 'class-variance-authority';
|
|
import { PanelLeft } from 'lucide-react';
|
|
import { cn } from '@imphnen-frontend-service/utils';
|
|
import { Button } from '../button';
|
|
import { Separator } from '../separator';
|
|
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetDescription,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
} from '../sheet';
|
|
import { Skeleton } from '../skeleton';
|
|
import { TooltipProvider, Tooltip, TooltipTrigger, TooltipContent } from '../tooltip';
|
|
import { useIsMobile } from './use-mobile';
|
|
|
|
const SIDEBAR_COOKIE_NAME = 'sidebar_state';
|
|
const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7;
|
|
const SIDEBAR_WIDTH = '16rem';
|
|
const SIDEBAR_WIDTH_MOBILE = '18rem';
|
|
const SIDEBAR_WIDTH_ICON = '3rem';
|
|
const SIDEBAR_KEYBOARD_SHORTCUT = 'b';
|
|
|
|
type SidebarContextProps = {
|
|
state: 'expanded' | 'collapsed';
|
|
open: boolean;
|
|
setOpen: (open: boolean) => void;
|
|
openMobile: boolean;
|
|
setOpenMobile: (open: boolean) => void;
|
|
isMobile: boolean;
|
|
toggleSidebar: () => void;
|
|
};
|
|
|
|
const SidebarContext = React.createContext<SidebarContextProps | null>(null);
|
|
|
|
function useSidebar() {
|
|
const context = React.useContext(SidebarContext);
|
|
if (!context) {
|
|
throw new Error('useSidebar must be used within a SidebarProvider.');
|
|
}
|
|
return context;
|
|
}
|
|
|
|
function SidebarProvider({
|
|
defaultOpen = true,
|
|
open: openProp,
|
|
onOpenChange: setOpenProp,
|
|
className,
|
|
style,
|
|
children,
|
|
...props
|
|
}: React.ComponentProps<'div'> & {
|
|
defaultOpen?: boolean;
|
|
open?: boolean;
|
|
onOpenChange?: (open: boolean) => void;
|
|
}) {
|
|
const isMobile = useIsMobile();
|
|
const [openMobile, setOpenMobile] = React.useState(false);
|
|
|
|
const [_open, _setOpen] = React.useState(defaultOpen);
|
|
const open = openProp ?? _open;
|
|
const setOpen = React.useCallback(
|
|
(value: boolean | ((value: boolean) => boolean)) => {
|
|
const openState = typeof value === 'function' ? value(open) : value;
|
|
if (setOpenProp) {
|
|
setOpenProp(openState);
|
|
} else {
|
|
_setOpen(openState);
|
|
}
|
|
document.cookie = `${SIDEBAR_COOKIE_NAME}=${openState}; path=/; max-age=${SIDEBAR_COOKIE_MAX_AGE}`;
|
|
},
|
|
[setOpenProp, open]
|
|
);
|
|
|
|
const toggleSidebar = React.useCallback(() => {
|
|
return isMobile
|
|
? setOpenMobile((o) => !o)
|
|
: setOpen((o) => !o);
|
|
}, [isMobile, setOpen, setOpenMobile]);
|
|
|
|
React.useEffect(() => {
|
|
const handleKeyDown = (event: KeyboardEvent) => {
|
|
if (
|
|
event.key === SIDEBAR_KEYBOARD_SHORTCUT &&
|
|
(event.metaKey || event.ctrlKey)
|
|
) {
|
|
event.preventDefault();
|
|
toggleSidebar();
|
|
}
|
|
};
|
|
window.addEventListener('keydown', handleKeyDown);
|
|
return () => window.removeEventListener('keydown', handleKeyDown);
|
|
}, [toggleSidebar]);
|
|
|
|
const state: 'expanded' | 'collapsed' = open ? 'expanded' : 'collapsed';
|
|
|
|
const contextValue = React.useMemo<SidebarContextProps>(
|
|
() => ({
|
|
state,
|
|
open,
|
|
setOpen,
|
|
isMobile,
|
|
openMobile,
|
|
setOpenMobile,
|
|
toggleSidebar,
|
|
}),
|
|
[state, open, setOpen, isMobile, openMobile, setOpenMobile, toggleSidebar]
|
|
);
|
|
|
|
return (
|
|
<SidebarContext.Provider value={contextValue}>
|
|
<TooltipProvider delayDuration={0}>
|
|
<div
|
|
data-slot="sidebar-wrapper"
|
|
style={
|
|
{
|
|
'--sidebar-width': SIDEBAR_WIDTH,
|
|
'--sidebar-width-icon': SIDEBAR_WIDTH_ICON,
|
|
...style,
|
|
} as React.CSSProperties
|
|
}
|
|
className={cn(
|
|
'group/sidebar-wrapper has-data-[variant=inset]:bg-sidebar flex min-h-svh w-full',
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</div>
|
|
</TooltipProvider>
|
|
</SidebarContext.Provider>
|
|
);
|
|
}
|
|
|
|
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';
|
|
}) {
|
|
const { isMobile, state, openMobile, setOpenMobile } = useSidebar();
|
|
|
|
if (collapsible === 'none') {
|
|
return (
|
|
<div
|
|
data-slot="sidebar"
|
|
className={cn(
|
|
'flex h-full w-(--sidebar-width) flex-col bg-sidebar text-sidebar-foreground',
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (isMobile) {
|
|
return (
|
|
<Sheet open={openMobile} onOpenChange={setOpenMobile} {...props}>
|
|
<SheetContent
|
|
data-sidebar="sidebar"
|
|
data-slot="sidebar"
|
|
data-mobile="true"
|
|
className="w-(--sidebar-width) bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden"
|
|
style={
|
|
{
|
|
'--sidebar-width': SIDEBAR_WIDTH_MOBILE,
|
|
} as React.CSSProperties
|
|
}
|
|
side={side}
|
|
>
|
|
<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>
|
|
</SheetContent>
|
|
</Sheet>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className="group peer hidden text-sidebar-foreground md:block"
|
|
data-state={state}
|
|
data-collapsible={state === 'collapsed' ? collapsible : ''}
|
|
data-variant={variant}
|
|
data-side={side}
|
|
data-slot="sidebar"
|
|
>
|
|
<div
|
|
data-slot="sidebar-gap"
|
|
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)'
|
|
)}
|
|
/>
|
|
<div
|
|
data-slot="sidebar-container"
|
|
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)]',
|
|
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
|
|
)}
|
|
{...props}
|
|
>
|
|
<div
|
|
data-sidebar="sidebar"
|
|
data-slot="sidebar-inner"
|
|
className="bg-sidebar group-data-[variant=floating]:border-sidebar-border flex h-full w-full flex-col group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:shadow-sm"
|
|
>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function SidebarTrigger({
|
|
className,
|
|
onClick,
|
|
...props
|
|
}: React.ComponentProps<typeof Button>) {
|
|
const { toggleSidebar } = useSidebar();
|
|
|
|
return (
|
|
<Button
|
|
data-sidebar="trigger"
|
|
data-slot="sidebar-trigger"
|
|
variant="text"
|
|
size="icon"
|
|
className={cn('size-7', className)}
|
|
onClick={(event) => {
|
|
onClick?.(event);
|
|
toggleSidebar();
|
|
}}
|
|
{...props}
|
|
>
|
|
<PanelLeft />
|
|
<span className="sr-only">Toggle Sidebar</span>
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
function SidebarRail({ className, ...props }: React.ComponentProps<'button'>) {
|
|
const { toggleSidebar } = useSidebar();
|
|
|
|
return (
|
|
<button
|
|
data-sidebar="rail"
|
|
data-slot="sidebar-rail"
|
|
aria-label="Toggle Sidebar"
|
|
tabIndex={-1}
|
|
onClick={toggleSidebar}
|
|
title="Toggle Sidebar"
|
|
className={cn(
|
|
'absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear sm:flex',
|
|
'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',
|
|
'[[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize',
|
|
'[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize',
|
|
'hover:group-data-[collapsible=offcanvas]:bg-sidebar',
|
|
'group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full',
|
|
'[[data-side=left][data-collapsible=offcanvas]_&]:-right-2',
|
|
'[[data-side=right][data-collapsible=offcanvas]_&]:-left-2',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarInset({ className, ...props }: React.ComponentProps<'main'>) {
|
|
return (
|
|
<main
|
|
data-slot="sidebar-inset"
|
|
className={cn(
|
|
'bg-background relative flex w-full flex-1 flex-col',
|
|
'md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow-sm md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarHeader({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-sidebar="header"
|
|
data-slot="sidebar-header"
|
|
className={cn('flex flex-col gap-2 p-2', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarFooter({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-sidebar="footer"
|
|
data-slot="sidebar-footer"
|
|
className={cn('flex flex-col gap-2 p-2', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarSeparator({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof Separator>) {
|
|
return (
|
|
<Separator
|
|
data-sidebar="separator"
|
|
data-slot="sidebar-separator"
|
|
className={cn('bg-sidebar-border mx-2 w-auto', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarContent({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-sidebar="content"
|
|
data-slot="sidebar-content"
|
|
className={cn(
|
|
'flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarGroup({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-sidebar="group"
|
|
data-slot="sidebar-group"
|
|
className={cn(
|
|
'relative flex w-full min-w-0 flex-col p-2',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarGroupLabel({
|
|
className,
|
|
asChild = false,
|
|
...props
|
|
}: React.ComponentProps<'div'> & { asChild?: boolean }) {
|
|
const Comp = asChild ? Slot : 'div';
|
|
return (
|
|
<Comp
|
|
data-sidebar="group-label"
|
|
data-slot="sidebar-group-label"
|
|
className={cn(
|
|
'flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-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
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarGroupAction({
|
|
className,
|
|
asChild = false,
|
|
...props
|
|
}: React.ComponentProps<'button'> & { asChild?: boolean }) {
|
|
const Comp = asChild ? Slot : 'button';
|
|
return (
|
|
<Comp
|
|
data-sidebar="group-action"
|
|
data-slot="sidebar-group-action"
|
|
className={cn(
|
|
'absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
'after:absolute after:-inset-2 md:after:hidden',
|
|
'group-data-[collapsible=icon]:hidden',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarGroupContent({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-sidebar="group-content"
|
|
data-slot="sidebar-group-content"
|
|
className={cn('w-full text-sm', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarMenu({ className, ...props }: React.ComponentProps<'ul'>) {
|
|
return (
|
|
<ul
|
|
data-sidebar="menu"
|
|
data-slot="sidebar-menu"
|
|
className={cn('flex w-full min-w-0 flex-col gap-1', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarMenuItem({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'li'>) {
|
|
return (
|
|
<li
|
|
data-sidebar="menu-item"
|
|
data-slot="sidebar-menu-item"
|
|
className={cn('group/menu-item relative', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const sidebarMenuButtonVariants = cva(
|
|
'peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-ring transition-[width,height,padding] 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 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]:size-4 [&>svg]:shrink-0',
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: 'hover:bg-sidebar-accent hover:text-sidebar-accent-foreground',
|
|
outline:
|
|
'bg-background shadow-[0_0_0_1px_var(--color-sidebar-border)] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_var(--color-sidebar-accent)]',
|
|
},
|
|
size: {
|
|
default: 'h-8 text-sm',
|
|
sm: 'h-7 text-xs',
|
|
lg: 'h-12 text-sm group-data-[collapsible=icon]:p-0!',
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: 'default',
|
|
size: 'default',
|
|
},
|
|
}
|
|
);
|
|
|
|
function SidebarMenuButton({
|
|
asChild = false,
|
|
isActive = false,
|
|
variant = 'default',
|
|
size = 'default',
|
|
tooltip,
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'button'> & {
|
|
asChild?: boolean;
|
|
isActive?: boolean;
|
|
tooltip?: string | React.ComponentProps<typeof TooltipContent>;
|
|
} & VariantProps<typeof sidebarMenuButtonVariants>) {
|
|
const Comp = asChild ? Slot : 'button';
|
|
const { isMobile, state } = useSidebar();
|
|
|
|
const button = (
|
|
<Comp
|
|
data-sidebar="menu-button"
|
|
data-slot="sidebar-menu-button"
|
|
data-size={size}
|
|
data-active={isActive}
|
|
className={cn(sidebarMenuButtonVariants({ variant, size }), className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
if (!tooltip) {
|
|
return button;
|
|
}
|
|
|
|
if (typeof tooltip === 'string') {
|
|
tooltip = { children: tooltip };
|
|
}
|
|
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>{button}</TooltipTrigger>
|
|
<TooltipContent
|
|
side="right"
|
|
align="center"
|
|
hidden={state !== 'collapsed' || isMobile}
|
|
{...tooltip}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
function SidebarMenuAction({
|
|
className,
|
|
asChild = false,
|
|
showOnHover = false,
|
|
...props
|
|
}: React.ComponentProps<'button'> & {
|
|
asChild?: boolean;
|
|
showOnHover?: boolean;
|
|
}) {
|
|
const Comp = asChild ? Slot : 'button';
|
|
return (
|
|
<Comp
|
|
data-sidebar="menu-action"
|
|
data-slot="sidebar-menu-action"
|
|
className={cn(
|
|
'absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-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]:size-4 [&>svg]:shrink-0',
|
|
'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
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarMenuBadge({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-sidebar="menu-badge"
|
|
data-slot="sidebar-menu-badge"
|
|
className={cn(
|
|
'pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground',
|
|
'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
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarMenuSkeleton({
|
|
className,
|
|
showIcon = false,
|
|
...props
|
|
}: React.ComponentProps<'div'> & { showIcon?: boolean }) {
|
|
const width = React.useMemo(() => `${Math.floor(Math.random() * 40) + 50}%`, []);
|
|
return (
|
|
<div
|
|
data-sidebar="menu-skeleton"
|
|
data-slot="sidebar-menu-skeleton"
|
|
className={cn('flex h-8 items-center gap-2 rounded-md px-2', className)}
|
|
{...props}
|
|
>
|
|
{showIcon && <Skeleton className="size-4 rounded-md" 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>
|
|
);
|
|
}
|
|
|
|
function SidebarMenuSub({ className, ...props }: React.ComponentProps<'ul'>) {
|
|
return (
|
|
<ul
|
|
data-sidebar="menu-sub"
|
|
data-slot="sidebar-menu-sub"
|
|
className={cn(
|
|
'mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l border-sidebar-border px-2.5 py-0.5',
|
|
'group-data-[collapsible=icon]:hidden',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarMenuSubItem({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'li'>) {
|
|
return (
|
|
<li
|
|
data-sidebar="menu-sub-item"
|
|
data-slot="sidebar-menu-sub-item"
|
|
className={cn('group/menu-sub-item relative', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function SidebarMenuSubButton({
|
|
asChild = false,
|
|
size = 'md',
|
|
isActive,
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'a'> & {
|
|
asChild?: boolean;
|
|
size?: 'sm' | 'md';
|
|
isActive?: boolean;
|
|
}) {
|
|
const Comp = asChild ? Slot : 'a';
|
|
return (
|
|
<Comp
|
|
data-sidebar="menu-sub-button"
|
|
data-slot="sidebar-menu-sub-button"
|
|
data-size={size}
|
|
data-active={isActive}
|
|
className={cn(
|
|
'flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 text-sidebar-foreground outline-none ring-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 [&>span:last-child]:truncate [&>svg]: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
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export {
|
|
Sidebar,
|
|
SidebarContent,
|
|
SidebarFooter,
|
|
SidebarGroup,
|
|
SidebarGroupAction,
|
|
SidebarGroupContent,
|
|
SidebarGroupLabel,
|
|
SidebarHeader,
|
|
SidebarInset,
|
|
SidebarMenu,
|
|
SidebarMenuAction,
|
|
SidebarMenuBadge,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
SidebarMenuSkeleton,
|
|
SidebarMenuSub,
|
|
SidebarMenuSubButton,
|
|
SidebarMenuSubItem,
|
|
SidebarProvider,
|
|
SidebarRail,
|
|
SidebarSeparator,
|
|
SidebarTrigger,
|
|
useSidebar,
|
|
};
|