You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
5.7 KiB
178 lines
5.7 KiB
import * as React from 'react' |
|
import * as SheetPrimitive from '@radix-ui/react-dialog' |
|
import { cva, type VariantProps } from 'class-variance-authority' |
|
import { X } from 'lucide-react' |
|
|
|
import { randomString } from '@/lib/random' |
|
import { cn } from '@/lib/utils' |
|
import modalManager from '@/services/modal-manager.service' |
|
|
|
type SheetProps = SheetPrimitive.DialogProps & { |
|
/** |
|
* When true (default), the sheet registers with {@link modalManager} so the global popstate |
|
* handler can close it on browser back. Disable for overlays that are driven by the same |
|
* history stack as the SPA (e.g. note drawer); otherwise back pops the modal first and fights |
|
* {@link PageManager}'s secondary navigation. |
|
*/ |
|
registerWithModalManager?: boolean |
|
} |
|
|
|
const Sheet = ({ |
|
children, |
|
open, |
|
onOpenChange, |
|
registerWithModalManager = true, |
|
...props |
|
}: SheetProps) => { |
|
const [innerOpen, setInnerOpen] = React.useState(open ?? false) |
|
const id = React.useMemo(() => `sheet-${randomString()}`, []) |
|
|
|
React.useEffect(() => { |
|
if (!registerWithModalManager) return |
|
if (open) { |
|
modalManager.register(id, () => { |
|
onOpenChange?.(false) |
|
}) |
|
} else { |
|
modalManager.unregister(id) |
|
} |
|
}, [open, registerWithModalManager]) |
|
|
|
React.useEffect(() => { |
|
if (!registerWithModalManager) return |
|
if (open !== undefined) { |
|
return |
|
} |
|
|
|
if (innerOpen) { |
|
modalManager.register(id, () => { |
|
setInnerOpen(false) |
|
}) |
|
} else { |
|
modalManager.unregister(id) |
|
} |
|
}, [innerOpen, open, registerWithModalManager]) |
|
|
|
return ( |
|
<SheetPrimitive.Root |
|
open={open ?? innerOpen} |
|
onOpenChange={onOpenChange ?? setInnerOpen} |
|
{...props} |
|
> |
|
{children} |
|
</SheetPrimitive.Root> |
|
) |
|
} |
|
|
|
const SheetTrigger = SheetPrimitive.Trigger |
|
|
|
const SheetClose = SheetPrimitive.Close |
|
|
|
const SheetPortal = SheetPrimitive.Portal |
|
|
|
const SheetOverlay = React.forwardRef< |
|
React.ElementRef<typeof SheetPrimitive.Overlay>, |
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Overlay> |
|
>(({ className, ...props }, ref) => ( |
|
<SheetPrimitive.Overlay |
|
className={cn( |
|
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0', |
|
className |
|
)} |
|
{...props} |
|
ref={ref} |
|
/> |
|
)) |
|
SheetOverlay.displayName = SheetPrimitive.Overlay.displayName |
|
|
|
const sheetVariants = cva( |
|
'fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out', |
|
{ |
|
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-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm', |
|
right: |
|
'inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm' |
|
} |
|
}, |
|
defaultVariants: { |
|
side: 'right' |
|
} |
|
} |
|
) |
|
|
|
interface SheetContentProps |
|
extends React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, |
|
VariantProps<typeof sheetVariants> {} |
|
|
|
const SheetContent = React.forwardRef< |
|
React.ElementRef<typeof SheetPrimitive.Content>, |
|
SheetContentProps & { hideClose?: boolean } |
|
>(({ side = 'right', className, children, hideClose = false, ...props }, ref) => ( |
|
<SheetPortal> |
|
<SheetOverlay /> |
|
<SheetPrimitive.Content ref={ref} className={cn(sheetVariants({ side }), className)} {...props}> |
|
{!hideClose && ( |
|
<SheetPrimitive.Close className="absolute right-4 top-4 z-[60] rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary"> |
|
<X className="h-4 w-4" /> |
|
<span className="sr-only">Close</span> |
|
</SheetPrimitive.Close> |
|
)} |
|
{children} |
|
</SheetPrimitive.Content> |
|
</SheetPortal> |
|
)) |
|
SheetContent.displayName = SheetPrimitive.Content.displayName |
|
|
|
const SheetHeader = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
|
<div className={cn('flex flex-col space-y-2 text-center sm:text-left', className)} {...props} /> |
|
) |
|
SheetHeader.displayName = 'SheetHeader' |
|
|
|
const SheetFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
|
<div |
|
className={cn('flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2', className)} |
|
{...props} |
|
/> |
|
) |
|
SheetFooter.displayName = 'SheetFooter' |
|
|
|
const SheetTitle = React.forwardRef< |
|
React.ElementRef<typeof SheetPrimitive.Title>, |
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Title> |
|
>(({ className, ...props }, ref) => ( |
|
<SheetPrimitive.Title |
|
ref={ref} |
|
className={cn('app-chrome-title text-foreground', className)} |
|
{...props} |
|
/> |
|
)) |
|
SheetTitle.displayName = SheetPrimitive.Title.displayName |
|
|
|
const SheetDescription = React.forwardRef< |
|
React.ElementRef<typeof SheetPrimitive.Description>, |
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Description> |
|
>(({ className, ...props }, ref) => ( |
|
<SheetPrimitive.Description |
|
ref={ref} |
|
className={cn('text-sm text-muted-foreground', className)} |
|
{...props} |
|
/> |
|
)) |
|
SheetDescription.displayName = SheetPrimitive.Description.displayName |
|
|
|
export { |
|
Sheet, |
|
SheetPortal, |
|
SheetOverlay, |
|
SheetTrigger, |
|
SheetClose, |
|
SheetContent, |
|
SheetHeader, |
|
SheetFooter, |
|
SheetTitle, |
|
SheetDescription |
|
}
|
|
|