@vendure-io/ui 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/package.json +59 -0
  2. package/src/components/ui/accordion.tsx +74 -0
  3. package/src/components/ui/alert-dialog.tsx +187 -0
  4. package/src/components/ui/alert.tsx +76 -0
  5. package/src/components/ui/aspect-ratio.tsx +22 -0
  6. package/src/components/ui/avatar.tsx +109 -0
  7. package/src/components/ui/badge.tsx +52 -0
  8. package/src/components/ui/breadcrumb.tsx +125 -0
  9. package/src/components/ui/button-group.tsx +87 -0
  10. package/src/components/ui/button.tsx +60 -0
  11. package/src/components/ui/calendar.tsx +221 -0
  12. package/src/components/ui/card.tsx +103 -0
  13. package/src/components/ui/carousel.tsx +242 -0
  14. package/src/components/ui/chart.tsx +356 -0
  15. package/src/components/ui/checkbox.tsx +29 -0
  16. package/src/components/ui/collapsible.tsx +21 -0
  17. package/src/components/ui/combobox.tsx +297 -0
  18. package/src/components/ui/command.tsx +196 -0
  19. package/src/components/ui/context-menu.tsx +271 -0
  20. package/src/components/ui/dialog.tsx +157 -0
  21. package/src/components/ui/direction.tsx +6 -0
  22. package/src/components/ui/drawer.tsx +131 -0
  23. package/src/components/ui/dropdown-menu.tsx +271 -0
  24. package/src/components/ui/empty.tsx +101 -0
  25. package/src/components/ui/field.tsx +238 -0
  26. package/src/components/ui/hover-card.tsx +51 -0
  27. package/src/components/ui/input-group.tsx +158 -0
  28. package/src/components/ui/input-otp.tsx +87 -0
  29. package/src/components/ui/input.tsx +20 -0
  30. package/src/components/ui/item.tsx +201 -0
  31. package/src/components/ui/kbd.tsx +26 -0
  32. package/src/components/ui/label.tsx +20 -0
  33. package/src/components/ui/menubar.tsx +283 -0
  34. package/src/components/ui/native-select.tsx +52 -0
  35. package/src/components/ui/navigation-menu.tsx +168 -0
  36. package/src/components/ui/pagination.tsx +130 -0
  37. package/src/components/ui/popover.tsx +90 -0
  38. package/src/components/ui/progress.tsx +83 -0
  39. package/src/components/ui/radio-group.tsx +38 -0
  40. package/src/components/ui/resizable.tsx +50 -0
  41. package/src/components/ui/scroll-area.tsx +55 -0
  42. package/src/components/ui/select.tsx +201 -0
  43. package/src/components/ui/separator.tsx +25 -0
  44. package/src/components/ui/sheet.tsx +135 -0
  45. package/src/components/ui/sidebar.tsx +723 -0
  46. package/src/components/ui/skeleton.tsx +13 -0
  47. package/src/components/ui/slider.tsx +59 -0
  48. package/src/components/ui/sonner.tsx +49 -0
  49. package/src/components/ui/spinner.tsx +10 -0
  50. package/src/components/ui/switch.tsx +32 -0
  51. package/src/components/ui/table.tsx +116 -0
  52. package/src/components/ui/tabs.tsx +82 -0
  53. package/src/components/ui/textarea.tsx +18 -0
  54. package/src/components/ui/toggle-group.tsx +89 -0
  55. package/src/components/ui/toggle.tsx +44 -0
  56. package/src/components/ui/tooltip.tsx +66 -0
  57. package/src/hooks/use-mobile.ts +19 -0
  58. package/src/lib/utils.ts +25 -0
@@ -0,0 +1,723 @@
1
+ "use client"
2
+
3
+ import * as React from "react"
4
+ import { mergeProps } from "@base-ui/react/merge-props"
5
+ import { useRender } from "@base-ui/react/use-render"
6
+ import { cva, type VariantProps } from "class-variance-authority"
7
+
8
+ import { useIsMobile } from "@/hooks/use-mobile"
9
+ import { cn } from "@/lib/utils"
10
+ import { Button } from "@/components/ui/button"
11
+ import { Input } from "@/components/ui/input"
12
+ import { Separator } from "@/components/ui/separator"
13
+ import {
14
+ Sheet,
15
+ SheetContent,
16
+ SheetDescription,
17
+ SheetHeader,
18
+ SheetTitle,
19
+ } from "@/components/ui/sheet"
20
+ import { Skeleton } from "@/components/ui/skeleton"
21
+ import {
22
+ Tooltip,
23
+ TooltipContent,
24
+ TooltipTrigger,
25
+ } from "@/components/ui/tooltip"
26
+ import { PanelLeftIcon } from "lucide-react"
27
+
28
+ const SIDEBAR_COOKIE_NAME = "sidebar_state"
29
+ const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7
30
+ const SIDEBAR_WIDTH = "16rem"
31
+ const SIDEBAR_WIDTH_MOBILE = "18rem"
32
+ const SIDEBAR_WIDTH_ICON = "3rem"
33
+ const SIDEBAR_KEYBOARD_SHORTCUT = "b"
34
+
35
+ type SidebarContextProps = {
36
+ state: "expanded" | "collapsed"
37
+ open: boolean
38
+ setOpen: (open: boolean) => void
39
+ openMobile: boolean
40
+ setOpenMobile: (open: boolean) => void
41
+ isMobile: boolean
42
+ toggleSidebar: () => void
43
+ }
44
+
45
+ const SidebarContext = React.createContext<SidebarContextProps | null>(null)
46
+
47
+ function useSidebar() {
48
+ const context = React.useContext(SidebarContext)
49
+ if (!context) {
50
+ throw new Error("useSidebar must be used within a SidebarProvider.")
51
+ }
52
+
53
+ return context
54
+ }
55
+
56
+ function SidebarProvider({
57
+ defaultOpen = true,
58
+ open: openProp,
59
+ onOpenChange: setOpenProp,
60
+ className,
61
+ style,
62
+ children,
63
+ ...props
64
+ }: React.ComponentProps<"div"> & {
65
+ defaultOpen?: boolean
66
+ open?: boolean
67
+ onOpenChange?: (open: boolean) => void
68
+ }) {
69
+ const isMobile = useIsMobile()
70
+ const [openMobile, setOpenMobile] = React.useState(false)
71
+
72
+ // This is the internal state of the sidebar.
73
+ // We use openProp and setOpenProp for control from outside the component.
74
+ const [_open, _setOpen] = React.useState(defaultOpen)
75
+ const open = openProp ?? _open
76
+ const setOpen = React.useCallback(
77
+ (value: boolean | ((value: boolean) => boolean)) => {
78
+ const openState = typeof value === "function" ? value(open) : value
79
+ if (setOpenProp) {
80
+ setOpenProp(openState)
81
+ } else {
82
+ _setOpen(openState)
83
+ }
84
+
85
+ // This sets the cookie to keep the sidebar state.
86
+ document.cookie = `${SIDEBAR_COOKIE_NAME}=${openState}; path=/; max-age=${SIDEBAR_COOKIE_MAX_AGE}`
87
+ },
88
+ [setOpenProp, open]
89
+ )
90
+
91
+ // Helper to toggle the sidebar.
92
+ const toggleSidebar = React.useCallback(() => {
93
+ return isMobile ? setOpenMobile((open) => !open) : setOpen((open) => !open)
94
+ }, [isMobile, setOpen, setOpenMobile])
95
+
96
+ // Adds a keyboard shortcut to toggle the sidebar.
97
+ React.useEffect(() => {
98
+ const handleKeyDown = (event: KeyboardEvent) => {
99
+ if (
100
+ event.key === SIDEBAR_KEYBOARD_SHORTCUT &&
101
+ (event.metaKey || event.ctrlKey)
102
+ ) {
103
+ event.preventDefault()
104
+ toggleSidebar()
105
+ }
106
+ }
107
+
108
+ window.addEventListener("keydown", handleKeyDown)
109
+ return () => window.removeEventListener("keydown", handleKeyDown)
110
+ }, [toggleSidebar])
111
+
112
+ // We add a state so that we can do data-state="expanded" or "collapsed".
113
+ // This makes it easier to style the sidebar with Tailwind classes.
114
+ const state = open ? "expanded" : "collapsed"
115
+
116
+ const contextValue = React.useMemo<SidebarContextProps>(
117
+ () => ({
118
+ state,
119
+ open,
120
+ setOpen,
121
+ isMobile,
122
+ openMobile,
123
+ setOpenMobile,
124
+ toggleSidebar,
125
+ }),
126
+ [state, open, setOpen, isMobile, openMobile, setOpenMobile, toggleSidebar]
127
+ )
128
+
129
+ return (
130
+ <SidebarContext.Provider value={contextValue}>
131
+ <div
132
+ data-slot="sidebar-wrapper"
133
+ style={
134
+ {
135
+ "--sidebar-width": SIDEBAR_WIDTH,
136
+ "--sidebar-width-icon": SIDEBAR_WIDTH_ICON,
137
+ ...style,
138
+ } as React.CSSProperties
139
+ }
140
+ className={cn(
141
+ "group/sidebar-wrapper has-data-[variant=inset]:bg-sidebar flex min-h-svh w-full",
142
+ className
143
+ )}
144
+ {...props}
145
+ >
146
+ {children}
147
+ </div>
148
+ </SidebarContext.Provider>
149
+ )
150
+ }
151
+
152
+ function Sidebar({
153
+ side = "left",
154
+ variant = "sidebar",
155
+ collapsible = "offcanvas",
156
+ className,
157
+ children,
158
+ dir,
159
+ ...props
160
+ }: React.ComponentProps<"div"> & {
161
+ side?: "left" | "right"
162
+ variant?: "sidebar" | "floating" | "inset"
163
+ collapsible?: "offcanvas" | "icon" | "none"
164
+ }) {
165
+ const { isMobile, state, openMobile, setOpenMobile } = useSidebar()
166
+
167
+ if (collapsible === "none") {
168
+ return (
169
+ <div
170
+ data-slot="sidebar"
171
+ className={cn(
172
+ "bg-sidebar text-sidebar-foreground flex h-full w-(--sidebar-width) flex-col",
173
+ className
174
+ )}
175
+ {...props}
176
+ >
177
+ {children}
178
+ </div>
179
+ )
180
+ }
181
+
182
+ if (isMobile) {
183
+ return (
184
+ <Sheet open={openMobile} onOpenChange={setOpenMobile} {...props}>
185
+ <SheetContent
186
+ dir={dir}
187
+ data-sidebar="sidebar"
188
+ data-slot="sidebar"
189
+ data-mobile="true"
190
+ className="bg-sidebar text-sidebar-foreground w-(--sidebar-width) p-0 [&>button]:hidden"
191
+ style={
192
+ {
193
+ "--sidebar-width": SIDEBAR_WIDTH_MOBILE,
194
+ } as React.CSSProperties
195
+ }
196
+ side={side}
197
+ >
198
+ <SheetHeader className="sr-only">
199
+ <SheetTitle>Sidebar</SheetTitle>
200
+ <SheetDescription>Displays the mobile sidebar.</SheetDescription>
201
+ </SheetHeader>
202
+ <div className="flex h-full w-full flex-col">{children}</div>
203
+ </SheetContent>
204
+ </Sheet>
205
+ )
206
+ }
207
+
208
+ return (
209
+ <div
210
+ className="group peer text-sidebar-foreground hidden md:block"
211
+ data-state={state}
212
+ data-collapsible={state === "collapsed" ? collapsible : ""}
213
+ data-variant={variant}
214
+ data-side={side}
215
+ data-slot="sidebar"
216
+ >
217
+ {/* This is what handles the sidebar gap on desktop */}
218
+ <div
219
+ data-slot="sidebar-gap"
220
+ className={cn(
221
+ "relative w-(--sidebar-width) bg-transparent transition-[width] duration-200 ease-linear",
222
+ "group-data-[collapsible=offcanvas]:w-0",
223
+ "group-data-[side=right]:rotate-180",
224
+ variant === "floating" || variant === "inset"
225
+ ? "group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4)))]"
226
+ : "group-data-[collapsible=icon]:w-(--sidebar-width-icon)"
227
+ )}
228
+ />
229
+ <div
230
+ data-slot="sidebar-container"
231
+ data-side={side}
232
+ className={cn(
233
+ "fixed inset-y-0 z-10 hidden h-svh w-(--sidebar-width) transition-[left,right,width] duration-200 ease-linear data-[side=left]:left-0 data-[side=left]:group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)] data-[side=right]:right-0 data-[side=right]:group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)] md:flex",
234
+ // Adjust the padding for floating and inset variants.
235
+ variant === "floating" || variant === "inset"
236
+ ? "p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4))+2px)]"
237
+ : "group-data-[collapsible=icon]:w-(--sidebar-width-icon) group-data-[side=left]:border-r group-data-[side=right]:border-l",
238
+ className
239
+ )}
240
+ {...props}
241
+ >
242
+ <div
243
+ data-sidebar="sidebar"
244
+ data-slot="sidebar-inner"
245
+ className="bg-sidebar group-data-[variant=floating]:ring-sidebar-border flex size-full flex-col group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:shadow-sm group-data-[variant=floating]:ring-1"
246
+ >
247
+ {children}
248
+ </div>
249
+ </div>
250
+ </div>
251
+ )
252
+ }
253
+
254
+ function SidebarTrigger({
255
+ className,
256
+ onClick,
257
+ ...props
258
+ }: React.ComponentProps<typeof Button>) {
259
+ const { toggleSidebar } = useSidebar()
260
+
261
+ return (
262
+ <Button
263
+ data-sidebar="trigger"
264
+ data-slot="sidebar-trigger"
265
+ variant="ghost"
266
+ size="icon-sm"
267
+ className={cn(className)}
268
+ onClick={(event) => {
269
+ onClick?.(event)
270
+ toggleSidebar()
271
+ }}
272
+ {...props}
273
+ >
274
+ <PanelLeftIcon />
275
+ <span className="sr-only">Toggle Sidebar</span>
276
+ </Button>
277
+ )
278
+ }
279
+
280
+ function SidebarRail({ className, ...props }: React.ComponentProps<"button">) {
281
+ const { toggleSidebar } = useSidebar()
282
+
283
+ return (
284
+ <button
285
+ data-sidebar="rail"
286
+ data-slot="sidebar-rail"
287
+ aria-label="Toggle Sidebar"
288
+ tabIndex={-1}
289
+ onClick={toggleSidebar}
290
+ title="Toggle Sidebar"
291
+ className={cn(
292
+ "hover:after:bg-sidebar-border absolute inset-y-0 z-20 hidden w-4 transition-all ease-linear group-data-[side=left]:-right-4 group-data-[side=right]:left-0 after:absolute after:inset-y-0 after:start-1/2 after:w-[2px] sm:flex ltr:-translate-x-1/2 rtl:-translate-x-1/2",
293
+ "in-data-[side=left]:cursor-w-resize in-data-[side=right]:cursor-e-resize",
294
+ "[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize",
295
+ "hover:group-data-[collapsible=offcanvas]:bg-sidebar group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full",
296
+ "[[data-side=left][data-collapsible=offcanvas]_&]:-right-2",
297
+ "[[data-side=right][data-collapsible=offcanvas]_&]:-left-2",
298
+ className
299
+ )}
300
+ {...props}
301
+ />
302
+ )
303
+ }
304
+
305
+ function SidebarInset({ className, ...props }: React.ComponentProps<"main">) {
306
+ return (
307
+ <main
308
+ data-slot="sidebar-inset"
309
+ className={cn(
310
+ "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-[variant=inset]:peer-data-[state=collapsed]:ml-2",
311
+ className
312
+ )}
313
+ {...props}
314
+ />
315
+ )
316
+ }
317
+
318
+ function SidebarInput({
319
+ className,
320
+ ...props
321
+ }: React.ComponentProps<typeof Input>) {
322
+ return (
323
+ <Input
324
+ data-slot="sidebar-input"
325
+ data-sidebar="input"
326
+ className={cn("bg-background h-8 w-full shadow-none", className)}
327
+ {...props}
328
+ />
329
+ )
330
+ }
331
+
332
+ function SidebarHeader({ className, ...props }: React.ComponentProps<"div">) {
333
+ return (
334
+ <div
335
+ data-slot="sidebar-header"
336
+ data-sidebar="header"
337
+ className={cn("flex flex-col gap-2 p-2", className)}
338
+ {...props}
339
+ />
340
+ )
341
+ }
342
+
343
+ function SidebarFooter({ className, ...props }: React.ComponentProps<"div">) {
344
+ return (
345
+ <div
346
+ data-slot="sidebar-footer"
347
+ data-sidebar="footer"
348
+ className={cn("flex flex-col gap-2 p-2", className)}
349
+ {...props}
350
+ />
351
+ )
352
+ }
353
+
354
+ function SidebarSeparator({
355
+ className,
356
+ ...props
357
+ }: React.ComponentProps<typeof Separator>) {
358
+ return (
359
+ <Separator
360
+ data-slot="sidebar-separator"
361
+ data-sidebar="separator"
362
+ className={cn("bg-sidebar-border mx-2 w-auto", className)}
363
+ {...props}
364
+ />
365
+ )
366
+ }
367
+
368
+ function SidebarContent({ className, ...props }: React.ComponentProps<"div">) {
369
+ return (
370
+ <div
371
+ data-slot="sidebar-content"
372
+ data-sidebar="content"
373
+ className={cn(
374
+ "no-scrollbar flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden",
375
+ className
376
+ )}
377
+ {...props}
378
+ />
379
+ )
380
+ }
381
+
382
+ function SidebarGroup({ className, ...props }: React.ComponentProps<"div">) {
383
+ return (
384
+ <div
385
+ data-slot="sidebar-group"
386
+ data-sidebar="group"
387
+ className={cn("relative flex w-full min-w-0 flex-col p-2", className)}
388
+ {...props}
389
+ />
390
+ )
391
+ }
392
+
393
+ function SidebarGroupLabel({
394
+ className,
395
+ render,
396
+ ...props
397
+ }: useRender.ComponentProps<"div"> & React.ComponentProps<"div">) {
398
+ return useRender({
399
+ defaultTagName: "div",
400
+ props: mergeProps<"div">(
401
+ {
402
+ className: cn(
403
+ "text-sidebar-foreground/70 ring-sidebar-ring h-8 rounded-md px-2 text-xs font-medium transition-[margin,opacity] duration-200 ease-linear group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0 focus-visible:ring-2 [&>svg]:size-4 flex shrink-0 items-center outline-hidden [&>svg]:shrink-0",
404
+ className
405
+ ),
406
+ },
407
+ props
408
+ ),
409
+ render,
410
+ state: {
411
+ slot: "sidebar-group-label",
412
+ sidebar: "group-label",
413
+ },
414
+ })
415
+ }
416
+
417
+ function SidebarGroupAction({
418
+ className,
419
+ render,
420
+ ...props
421
+ }: useRender.ComponentProps<"button"> & React.ComponentProps<"button">) {
422
+ return useRender({
423
+ defaultTagName: "button",
424
+ props: mergeProps<"button">(
425
+ {
426
+ className: cn(
427
+ "text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground absolute top-3.5 right-3 w-5 rounded-md p-0 focus-visible:ring-2 [&>svg]:size-4 flex aspect-square items-center justify-center outline-hidden transition-transform [&>svg]:shrink-0 after:absolute after:-inset-2 md:after:hidden group-data-[collapsible=icon]:hidden",
428
+ className
429
+ ),
430
+ },
431
+ props
432
+ ),
433
+ render,
434
+ state: {
435
+ slot: "sidebar-group-action",
436
+ sidebar: "group-action",
437
+ },
438
+ })
439
+ }
440
+
441
+ function SidebarGroupContent({
442
+ className,
443
+ ...props
444
+ }: React.ComponentProps<"div">) {
445
+ return (
446
+ <div
447
+ data-slot="sidebar-group-content"
448
+ data-sidebar="group-content"
449
+ className={cn("w-full text-sm", className)}
450
+ {...props}
451
+ />
452
+ )
453
+ }
454
+
455
+ function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">) {
456
+ return (
457
+ <ul
458
+ data-slot="sidebar-menu"
459
+ data-sidebar="menu"
460
+ className={cn("flex w-full min-w-0 flex-col gap-1", className)}
461
+ {...props}
462
+ />
463
+ )
464
+ }
465
+
466
+ function SidebarMenuItem({ className, ...props }: React.ComponentProps<"li">) {
467
+ return (
468
+ <li
469
+ data-slot="sidebar-menu-item"
470
+ data-sidebar="menu-item"
471
+ className={cn("group/menu-item relative", className)}
472
+ {...props}
473
+ />
474
+ )
475
+ }
476
+
477
+ const sidebarMenuButtonVariants = cva(
478
+ "ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground data-open:hover:bg-sidebar-accent data-open:hover:text-sidebar-accent-foreground gap-2 rounded-md p-2 text-left text-sm transition-[width,height,padding] group-has-data-[sidebar=menu-action]/menu-item:pr-8 group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! focus-visible:ring-2 data-active:font-medium peer/menu-button flex w-full items-center overflow-hidden outline-hidden group/menu-button 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",
479
+ {
480
+ variants: {
481
+ variant: {
482
+ default: "hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",
483
+ outline:
484
+ "bg-background hover:bg-sidebar-accent hover:text-sidebar-accent-foreground shadow-[0_0_0_1px_var(--sidebar-border)] hover:shadow-[0_0_0_1px_var(--sidebar-accent)]",
485
+ },
486
+ size: {
487
+ default: "h-8 text-sm",
488
+ sm: "h-7 text-xs",
489
+ lg: "h-12 text-sm group-data-[collapsible=icon]:p-0!",
490
+ },
491
+ },
492
+ defaultVariants: {
493
+ variant: "default",
494
+ size: "default",
495
+ },
496
+ }
497
+ )
498
+
499
+ function SidebarMenuButton({
500
+ render,
501
+ isActive = false,
502
+ variant = "default",
503
+ size = "default",
504
+ tooltip,
505
+ className,
506
+ ...props
507
+ }: useRender.ComponentProps<"button"> &
508
+ React.ComponentProps<"button"> & {
509
+ isActive?: boolean
510
+ tooltip?: string | React.ComponentProps<typeof TooltipContent>
511
+ } & VariantProps<typeof sidebarMenuButtonVariants>) {
512
+ const { isMobile, state } = useSidebar()
513
+ const comp = useRender({
514
+ defaultTagName: "button",
515
+ props: mergeProps<"button">(
516
+ {
517
+ className: cn(sidebarMenuButtonVariants({ variant, size }), className),
518
+ },
519
+ props
520
+ ),
521
+ render: !tooltip ? render : TooltipTrigger,
522
+ state: {
523
+ slot: "sidebar-menu-button",
524
+ sidebar: "menu-button",
525
+ size,
526
+ active: isActive,
527
+ },
528
+ })
529
+
530
+ if (!tooltip) {
531
+ return comp
532
+ }
533
+
534
+ if (typeof tooltip === "string") {
535
+ tooltip = {
536
+ children: tooltip,
537
+ }
538
+ }
539
+
540
+ return (
541
+ <Tooltip>
542
+ {comp}
543
+ <TooltipContent
544
+ side="right"
545
+ align="center"
546
+ hidden={state !== "collapsed" || isMobile}
547
+ {...tooltip}
548
+ />
549
+ </Tooltip>
550
+ )
551
+ }
552
+
553
+ function SidebarMenuAction({
554
+ className,
555
+ render,
556
+ showOnHover = false,
557
+ ...props
558
+ }: useRender.ComponentProps<"button"> &
559
+ React.ComponentProps<"button"> & {
560
+ showOnHover?: boolean
561
+ }) {
562
+ return useRender({
563
+ defaultTagName: "button",
564
+ props: mergeProps<"button">(
565
+ {
566
+ className: cn(
567
+ "text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground peer-hover/menu-button:text-sidebar-accent-foreground absolute top-1.5 right-1 aspect-square w-5 rounded-md p-0 peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 peer-data-[size=sm]/menu-button:top-1 focus-visible:ring-2 [&>svg]:size-4 flex items-center justify-center outline-hidden transition-transform group-data-[collapsible=icon]:hidden after:absolute after:-inset-2 md:after:hidden [&>svg]:shrink-0",
568
+ showOnHover &&
569
+ "peer-data-active/menu-button:text-sidebar-accent-foreground group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 aria-expanded:opacity-100 md:opacity-0",
570
+ className
571
+ ),
572
+ },
573
+ props
574
+ ),
575
+ render,
576
+ state: {
577
+ slot: "sidebar-menu-action",
578
+ sidebar: "menu-action",
579
+ },
580
+ })
581
+ }
582
+
583
+ function SidebarMenuBadge({
584
+ className,
585
+ ...props
586
+ }: React.ComponentProps<"div">) {
587
+ return (
588
+ <div
589
+ data-slot="sidebar-menu-badge"
590
+ data-sidebar="menu-badge"
591
+ className={cn(
592
+ "text-sidebar-foreground peer-hover/menu-button:text-sidebar-accent-foreground peer-data-active/menu-button:text-sidebar-accent-foreground pointer-events-none absolute right-1 flex h-5 min-w-5 items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums select-none group-data-[collapsible=icon]:hidden peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 peer-data-[size=sm]/menu-button:top-1",
593
+ className
594
+ )}
595
+ {...props}
596
+ />
597
+ )
598
+ }
599
+
600
+ function SidebarMenuSkeleton({
601
+ className,
602
+ showIcon = false,
603
+ ...props
604
+ }: React.ComponentProps<"div"> & {
605
+ showIcon?: boolean
606
+ }) {
607
+ // Random width between 50 to 90%.
608
+ const [width] = React.useState(() => {
609
+ return `${Math.floor(Math.random() * 40) + 50}%`
610
+ })
611
+
612
+ return (
613
+ <div
614
+ data-slot="sidebar-menu-skeleton"
615
+ data-sidebar="menu-skeleton"
616
+ className={cn("flex h-8 items-center gap-2 rounded-md px-2", className)}
617
+ {...props}
618
+ >
619
+ {showIcon && (
620
+ <Skeleton
621
+ className="size-4 rounded-md"
622
+ data-sidebar="menu-skeleton-icon"
623
+ />
624
+ )}
625
+ <Skeleton
626
+ className="h-4 max-w-(--skeleton-width) flex-1"
627
+ data-sidebar="menu-skeleton-text"
628
+ style={
629
+ {
630
+ "--skeleton-width": width,
631
+ } as React.CSSProperties
632
+ }
633
+ />
634
+ </div>
635
+ )
636
+ }
637
+
638
+ function SidebarMenuSub({ className, ...props }: React.ComponentProps<"ul">) {
639
+ return (
640
+ <ul
641
+ data-slot="sidebar-menu-sub"
642
+ data-sidebar="menu-sub"
643
+ className={cn(
644
+ "border-sidebar-border mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l px-2.5 py-0.5 group-data-[collapsible=icon]:hidden",
645
+ className
646
+ )}
647
+ {...props}
648
+ />
649
+ )
650
+ }
651
+
652
+ function SidebarMenuSubItem({
653
+ className,
654
+ ...props
655
+ }: React.ComponentProps<"li">) {
656
+ return (
657
+ <li
658
+ data-slot="sidebar-menu-sub-item"
659
+ data-sidebar="menu-sub-item"
660
+ className={cn("group/menu-sub-item relative", className)}
661
+ {...props}
662
+ />
663
+ )
664
+ }
665
+
666
+ function SidebarMenuSubButton({
667
+ render,
668
+ size = "md",
669
+ isActive = false,
670
+ className,
671
+ ...props
672
+ }: useRender.ComponentProps<"a"> &
673
+ React.ComponentProps<"a"> & {
674
+ size?: "sm" | "md"
675
+ isActive?: boolean
676
+ }) {
677
+ return useRender({
678
+ defaultTagName: "a",
679
+ props: mergeProps<"a">(
680
+ {
681
+ className: cn(
682
+ "text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground [&>svg]:text-sidebar-accent-foreground data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground h-7 gap-2 rounded-md px-2 focus-visible:ring-2 data-[size=md]:text-sm data-[size=sm]:text-xs [&>svg]:size-4 flex min-w-0 -translate-x-px items-center overflow-hidden outline-hidden group-data-[collapsible=icon]:hidden disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:shrink-0",
683
+ className
684
+ ),
685
+ },
686
+ props
687
+ ),
688
+ render,
689
+ state: {
690
+ slot: "sidebar-menu-sub-button",
691
+ sidebar: "menu-sub-button",
692
+ size,
693
+ active: isActive,
694
+ },
695
+ })
696
+ }
697
+
698
+ export {
699
+ Sidebar,
700
+ SidebarContent,
701
+ SidebarFooter,
702
+ SidebarGroup,
703
+ SidebarGroupAction,
704
+ SidebarGroupContent,
705
+ SidebarGroupLabel,
706
+ SidebarHeader,
707
+ SidebarInput,
708
+ SidebarInset,
709
+ SidebarMenu,
710
+ SidebarMenuAction,
711
+ SidebarMenuBadge,
712
+ SidebarMenuButton,
713
+ SidebarMenuItem,
714
+ SidebarMenuSkeleton,
715
+ SidebarMenuSub,
716
+ SidebarMenuSubButton,
717
+ SidebarMenuSubItem,
718
+ SidebarProvider,
719
+ SidebarRail,
720
+ SidebarSeparator,
721
+ SidebarTrigger,
722
+ useSidebar,
723
+ }