86 lines
2.8 KiB
TypeScript
86 lines
2.8 KiB
TypeScript
import * as React from 'react'
|
|
import * as DialogPrimitive from '@radix-ui/react-dialog'
|
|
import { X } from 'lucide-react'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
function Dialog(props: React.ComponentProps<typeof DialogPrimitive.Root>) {
|
|
return <DialogPrimitive.Root data-slot="dialog" {...props} />
|
|
}
|
|
|
|
function DialogPortal(props: React.ComponentProps<typeof DialogPrimitive.Portal>) {
|
|
return <DialogPrimitive.Portal {...props} />
|
|
}
|
|
|
|
const DialogOverlay = React.forwardRef<
|
|
React.ElementRef<typeof DialogPrimitive.Overlay>,
|
|
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
|
|
>(({ className, ...props }, ref) => (
|
|
<DialogPrimitive.Overlay
|
|
ref={ref}
|
|
className={cn('fixed inset-0 z-50 bg-black/50', className)}
|
|
{...props}
|
|
/>
|
|
))
|
|
DialogOverlay.displayName = 'DialogOverlay'
|
|
|
|
const DialogContent = React.forwardRef<
|
|
React.ElementRef<typeof DialogPrimitive.Content>,
|
|
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & { showCloseButton?: boolean }
|
|
>(({ className, children, showCloseButton = true, ...props }, ref) => (
|
|
<DialogPortal>
|
|
<DialogOverlay />
|
|
<DialogPrimitive.Content
|
|
ref={ref}
|
|
aria-describedby={undefined}
|
|
className={cn(
|
|
'fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-4 rounded-lg border bg-background p-6 shadow-lg sm:max-w-lg',
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
{showCloseButton && (
|
|
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none">
|
|
<X className="h-4 w-4" />
|
|
<span className="sr-only">Close</span>
|
|
</DialogPrimitive.Close>
|
|
)}
|
|
</DialogPrimitive.Content>
|
|
</DialogPortal>
|
|
))
|
|
DialogContent.displayName = 'DialogContent'
|
|
|
|
function DialogHeader({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return <div className={cn('flex flex-col gap-2 text-center sm:text-left', className)} {...props} />
|
|
}
|
|
|
|
function DialogFooter({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
className={cn('flex flex-col-reverse gap-2 sm:flex-row sm:justify-end', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function DialogTitle(props: React.ComponentProps<typeof DialogPrimitive.Title>) {
|
|
return <DialogPrimitive.Title className="text-lg font-semibold leading-none" {...props} />
|
|
}
|
|
|
|
function DialogDescription(props: React.ComponentProps<typeof DialogPrimitive.Description>) {
|
|
return <DialogPrimitive.Description className="text-sm text-muted-foreground" {...props} />
|
|
}
|
|
|
|
export {
|
|
Dialog,
|
|
DialogPortal,
|
|
DialogOverlay,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogFooter,
|
|
DialogTitle,
|
|
DialogDescription,
|
|
}
|
|
export const DialogClose = DialogPrimitive.Close
|
|
export const DialogTrigger = DialogPrimitive.Trigger
|