import { ComponentPropsWithoutRef, forwardRef, ElementRef, PropsWithChildren, } from 'react'; import * as SheetPrimitive from '@radix-ui/react-dialog'; import { cva, type VariantProps } from 'class-variance-authority'; import clsx from 'clsx'; import { RefreshCw, X } from 'lucide-react'; import { Button } from './buttons'; // modified from shadcn sheet component const Sheet = SheetPrimitive.Root; const SheetTrigger = SheetPrimitive.Trigger; const SheetClose = SheetPrimitive.Close; const SheetPortal = SheetPrimitive.Portal; const SheetDescription = SheetPrimitive.Description; type SheetTitleProps = { title: string; onReload?(): Promise | void; }; // similar to the PageHeader component with simplified props and no breadcrumbs function SheetHeader({ onReload, title, children, }: PropsWithChildren) { return (
{title} {onReload ? ( ) : null}
{children}
); } const SheetOverlay = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); SheetOverlay.displayName = SheetPrimitive.Overlay.displayName; const sheetVariants = cva( 'fixed gap-4 bg-widget-color p-5 shadow-lg transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500', { variants: { side: { top: 'inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top', bottom: 'inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom', left: 'inset-y-0 left-0 h-full w-[70vw] lg:w-[50vw] border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left max-w-2xl', right: 'inset-y-0 right-0 h-full w-[70vw] lg:w-[50vw] border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right max-w-2xl', }, }, defaultVariants: { side: 'right', }, } ); interface SheetContentProps extends ComponentPropsWithoutRef, VariantProps { showCloseButton?: boolean; } const SheetContent = forwardRef< ElementRef, SheetContentProps >( ( { side = 'right', className, children, title, showCloseButton = true, ...props }, ref ) => ( {title ? : null} {children} {showCloseButton && ( )} ) ); SheetContent.displayName = SheetPrimitive.Content.displayName; export { Sheet, SheetPortal, SheetOverlay, SheetTrigger, SheetClose, SheetContent, SheetDescription, SheetHeader, };