35bcb63300
Componentes React accesibles basados en Radix UI con soporte de temas via CSS variables. Incluye barrel export en index.ts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
119 lines
4.1 KiB
TypeScript
119 lines
4.1 KiB
TypeScript
import * as React from "react"
|
|
import { Dialog as DialogPrimitive } from "@base-ui/react/dialog"
|
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
import { XIcon } from "lucide-react"
|
|
import { cn } from "../core/cn"
|
|
|
|
function Sheet({ ...props }: DialogPrimitive.Root.Props) {
|
|
return <DialogPrimitive.Root data-slot="sheet" {...props} />
|
|
}
|
|
|
|
function SheetTrigger({ ...props }: DialogPrimitive.Trigger.Props) {
|
|
return <DialogPrimitive.Trigger data-slot="sheet-trigger" {...props} />
|
|
}
|
|
|
|
function SheetClose({ ...props }: DialogPrimitive.Close.Props) {
|
|
return <DialogPrimitive.Close data-slot="sheet-close" {...props} />
|
|
}
|
|
|
|
function SheetPortal({ ...props }: DialogPrimitive.Portal.Props) {
|
|
return <DialogPrimitive.Portal data-slot="sheet-portal" {...props} />
|
|
}
|
|
|
|
function SheetOverlay({ className, ...props }: DialogPrimitive.Backdrop.Props) {
|
|
return (
|
|
<DialogPrimitive.Backdrop
|
|
data-slot="sheet-overlay"
|
|
className={cn(
|
|
"fixed inset-0 z-50 bg-black/50",
|
|
"data-open:animate-in data-open:fade-in-0",
|
|
"data-closed:animate-out data-closed:fade-out-0",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
const sheetVariants = cva(
|
|
"fixed z-50 flex flex-col gap-4 bg-background p-6 shadow-lg transition ease-in-out",
|
|
{
|
|
variants: {
|
|
side: {
|
|
top: "inset-x-0 top-0 border-b data-open:animate-in data-open:slide-in-from-top data-closed:animate-out data-closed:slide-out-to-top",
|
|
bottom: "inset-x-0 bottom-0 border-t data-open:animate-in data-open:slide-in-from-bottom data-closed:animate-out data-closed:slide-out-to-bottom",
|
|
left: "inset-y-0 left-0 h-full w-3/4 border-r data-open:animate-in data-open:slide-in-from-left data-closed:animate-out data-closed:slide-out-to-left sm:max-w-sm",
|
|
right: "inset-y-0 right-0 h-full w-3/4 border-l data-open:animate-in data-open:slide-in-from-right data-closed:animate-out data-closed:slide-out-to-right sm:max-w-sm",
|
|
},
|
|
},
|
|
defaultVariants: { side: "right" },
|
|
}
|
|
)
|
|
|
|
interface SheetContentProps
|
|
extends DialogPrimitive.Popup.Props,
|
|
VariantProps<typeof sheetVariants> {
|
|
showCloseButton?: boolean
|
|
}
|
|
|
|
function SheetContent({ className, children, side = "right", showCloseButton = true, ...props }: SheetContentProps) {
|
|
return (
|
|
<SheetPortal>
|
|
<SheetOverlay />
|
|
<DialogPrimitive.Popup
|
|
data-slot="sheet-content"
|
|
className={cn(sheetVariants({ side }), className)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
{showCloseButton && (
|
|
<DialogPrimitive.Close
|
|
data-slot="sheet-close-button"
|
|
className="absolute top-4 right-4 inline-flex size-7 items-center justify-center rounded-md opacity-70 transition-opacity hover:opacity-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
|
|
>
|
|
<XIcon className="size-4" />
|
|
<span className="sr-only">Close</span>
|
|
</DialogPrimitive.Close>
|
|
)}
|
|
</DialogPrimitive.Popup>
|
|
</SheetPortal>
|
|
)
|
|
}
|
|
|
|
function SheetHeader({ className, ...props }: React.ComponentProps<"div">) {
|
|
return <div data-slot="sheet-header" className={cn("flex flex-col gap-1.5", className)} {...props} />
|
|
}
|
|
|
|
function SheetFooter({ className, ...props }: React.ComponentProps<"div">) {
|
|
return (
|
|
<div
|
|
data-slot="sheet-footer"
|
|
className={cn("mt-auto flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function SheetTitle({ className, ...props }: DialogPrimitive.Title.Props) {
|
|
return (
|
|
<DialogPrimitive.Title
|
|
data-slot="sheet-title"
|
|
className={cn("text-base font-semibold leading-none", className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function SheetDescription({ className, ...props }: DialogPrimitive.Description.Props) {
|
|
return (
|
|
<DialogPrimitive.Description
|
|
data-slot="sheet-description"
|
|
className={cn("text-sm text-muted-foreground", className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, sheetVariants }
|
|
export type { SheetContentProps }
|