Spaces:
Paused
Paused
| 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 DialogTrigger( | |
| props: React.ComponentProps<typeof DialogPrimitive.Trigger>, | |
| ) { | |
| return <DialogPrimitive.Trigger data-slot="dialog-trigger" {...props} />; | |
| } | |
| function DialogPortal( | |
| props: React.ComponentProps<typeof DialogPrimitive.Portal>, | |
| ) { | |
| return <DialogPrimitive.Portal data-slot="dialog-portal" {...props} />; | |
| } | |
| function DialogClose(props: React.ComponentProps<typeof DialogPrimitive.Close>) { | |
| return <DialogPrimitive.Close data-slot="dialog-close" {...props} />; | |
| } | |
| function DialogOverlay({ | |
| className, | |
| ...props | |
| }: React.ComponentProps<typeof DialogPrimitive.Overlay>) { | |
| return ( | |
| <DialogPrimitive.Overlay | |
| data-slot="dialog-overlay" | |
| className={cn( | |
| "data-[state=open]:animate-in data-[state=closed]:animate-out fixed inset-0 z-50 bg-black/30 backdrop-blur-[2px]", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| function DialogContent({ | |
| className, | |
| children, | |
| showCloseButton = true, | |
| ...props | |
| }: React.ComponentProps<typeof DialogPrimitive.Content> & { | |
| showCloseButton?: boolean; | |
| }) { | |
| return ( | |
| <DialogPortal> | |
| <DialogOverlay /> | |
| <DialogPrimitive.Content | |
| data-slot="dialog-content" | |
| className={cn( | |
| "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed top-[50%] left-[50%] z-50 grid w-[min(92vw,560px)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-[28px] border border-white/80 p-6 shadow-[0_36px_120px_-45px_rgba(16,24,40,0.4)] duration-200", | |
| className, | |
| )} | |
| {...props} | |
| > | |
| {children} | |
| {showCloseButton ? ( | |
| <DialogPrimitive.Close className="ring-offset-background focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground absolute top-4 right-4 rounded-full p-1 opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:outline-none disabled:pointer-events-none"> | |
| <X className="size-4" /> | |
| <span className="sr-only">Close</span> | |
| </DialogPrimitive.Close> | |
| ) : null} | |
| </DialogPrimitive.Content> | |
| </DialogPortal> | |
| ); | |
| } | |
| function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { | |
| return ( | |
| <div | |
| data-slot="dialog-header" | |
| className={cn("flex flex-col gap-2 text-left", className)} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| function DialogFooter({ className, ...props }: React.ComponentProps<"div">) { | |
| return ( | |
| <div | |
| data-slot="dialog-footer" | |
| className={cn( | |
| "flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| function DialogTitle({ | |
| className, | |
| ...props | |
| }: React.ComponentProps<typeof DialogPrimitive.Title>) { | |
| return ( | |
| <DialogPrimitive.Title | |
| data-slot="dialog-title" | |
| className={cn("text-xl leading-none font-semibold", className)} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| function DialogDescription({ | |
| className, | |
| ...props | |
| }: React.ComponentProps<typeof DialogPrimitive.Description>) { | |
| return ( | |
| <DialogPrimitive.Description | |
| data-slot="dialog-description" | |
| className={cn("text-muted-foreground text-sm", className)} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| export { | |
| Dialog, | |
| DialogClose, | |
| DialogContent, | |
| DialogDescription, | |
| DialogFooter, | |
| DialogHeader, | |
| DialogTitle, | |
| DialogTrigger, | |
| }; | |