122 lines
3.0 KiB
TypeScript
122 lines
3.0 KiB
TypeScript
import * as React from "react"
|
|
import { X } from "lucide-react"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { useDialogKeyboardShortcuts } from "@/lib/keyboard-shortcuts"
|
|
|
|
const Dialog = React.forwardRef<
|
|
HTMLDivElement,
|
|
React.HTMLAttributes<HTMLDivElement> & {
|
|
open?: boolean
|
|
onOpenChange?: (open: boolean) => void
|
|
}
|
|
>(({ className, open, onOpenChange, children, ...props }, ref) => {
|
|
// Add keyboard shortcut support for closing dialog with Esc
|
|
useDialogKeyboardShortcuts(() => {
|
|
if (open && onOpenChange) {
|
|
onOpenChange(false);
|
|
}
|
|
});
|
|
|
|
if (!open) return null
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-[60] flex items-center justify-center p-4">
|
|
<div
|
|
className="fixed inset-0 bg-black/50"
|
|
onClick={() => onOpenChange?.(false)}
|
|
/>
|
|
<div
|
|
ref={ref}
|
|
className={cn(
|
|
"relative z-[60] grid w-full max-w-lg gap-4 border bg-background p-6 shadow-lg duration-200 sm:rounded-lg",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
<button
|
|
className="absolute right-4 top-4 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"
|
|
onClick={() => onOpenChange?.(false)}
|
|
>
|
|
<X className="h-4 w-4" />
|
|
<span className="sr-only">Close</span>
|
|
</button>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
)
|
|
})
|
|
Dialog.displayName = "Dialog"
|
|
|
|
const DialogHeader = ({
|
|
className,
|
|
...props
|
|
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
<div
|
|
className={cn(
|
|
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
DialogHeader.displayName = "DialogHeader"
|
|
|
|
const DialogTitle = React.forwardRef<
|
|
HTMLParagraphElement,
|
|
React.HTMLAttributes<HTMLHeadingElement>
|
|
>(({ className, ...props }, ref) => (
|
|
<h3
|
|
ref={ref}
|
|
className={cn(
|
|
"text-lg font-semibold leading-none tracking-tight",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
))
|
|
DialogTitle.displayName = "DialogTitle"
|
|
|
|
const DialogDescription = React.forwardRef<
|
|
HTMLParagraphElement,
|
|
React.HTMLAttributes<HTMLParagraphElement>
|
|
>(({ className, ...props }, ref) => (
|
|
<p
|
|
ref={ref}
|
|
className={cn("text-sm text-muted-foreground", className)}
|
|
{...props}
|
|
/>
|
|
))
|
|
DialogDescription.displayName = "DialogDescription"
|
|
|
|
const DialogContent = React.forwardRef<
|
|
HTMLDivElement,
|
|
React.HTMLAttributes<HTMLDivElement>
|
|
>(({ className, ...props }, ref) => (
|
|
<div ref={ref} className={cn("grid gap-4", className)} {...props} />
|
|
))
|
|
DialogContent.displayName = "DialogContent"
|
|
|
|
const DialogFooter = ({
|
|
className,
|
|
...props
|
|
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
<div
|
|
className={cn(
|
|
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
DialogFooter.displayName = "DialogFooter"
|
|
|
|
export {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
}
|