Spaces:
Paused
Paused
| "use client"; | |
| import * as React from "react"; | |
| import * as DialogPrimitive from "@radix-ui/react-dialog"; | |
| import { X } from "lucide-react"; | |
| import { cn } from "@/utils/cn"; | |
| const Dialog = DialogPrimitive.Root; | |
| const DialogTrigger = DialogPrimitive.Trigger; | |
| const DialogPortal = DialogPrimitive.Portal; | |
| const DialogClose = DialogPrimitive.Close; | |
| 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-[1000] bg-background-base/80 backdrop-blur-md data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| )); | |
| DialogOverlay.displayName = DialogPrimitive.Overlay.displayName; | |
| const DialogContent = React.forwardRef< | |
| React.ElementRef<typeof DialogPrimitive.Content>, | |
| React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & { | |
| hideCloseButton?: boolean; | |
| } | |
| >(({ className, children, hideCloseButton = false, ...props }, ref) => ( | |
| <DialogPortal> | |
| <DialogOverlay /> | |
| <div className="fixed z-[1001] inset-0 flex items-end sm:items-center justify-center p-16 sm:p-0"> | |
| <DialogPrimitive.Content | |
| ref={ref} | |
| className={cn( | |
| "relative w-full max-w-[520px] border border-border-faint bg-white p-0 duration-200 sm:rounded-16 shadow-2xl data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-bottom-10 data-[state=open]:slide-in-from-bottom-10 sm:data-[state=closed]:slide-out-to-left-1/2 sm:data-[state=closed]:slide-out-to-top-[-2%] sm:data-[state=open]:slide-in-from-left-1/2 sm:data-[state=open]:slide-in-from-top-[-2%]", | |
| className, | |
| )} | |
| {...props} | |
| > | |
| {children} | |
| {!hideCloseButton && ( | |
| <DialogPrimitive.Close className="absolute top-20 right-20 w-32 h-32 rounded-8 flex items-center justify-center hover:bg-black-alpha-4 transition-colors"> | |
| <X className="h-16 w-16 text-black-alpha-56" /> | |
| <span className="sr-only">Close</span> | |
| </DialogPrimitive.Close> | |
| )} | |
| </DialogPrimitive.Content> | |
| </div> | |
| </DialogPortal> | |
| )); | |
| DialogContent.displayName = DialogPrimitive.Content.displayName; | |
| const DialogHeader = ({ | |
| className, | |
| ...props | |
| }: React.HTMLAttributes<HTMLDivElement>) => ( | |
| <div | |
| className={cn( | |
| "flex flex-col space-y-6 text-center sm:text-left", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| DialogHeader.displayName = "DialogHeader"; | |
| const DialogFooter = ({ | |
| className, | |
| ...props | |
| }: React.HTMLAttributes<HTMLDivElement>) => ( | |
| <div | |
| className={cn( | |
| "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-8", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| DialogFooter.displayName = "DialogFooter"; | |
| const DialogTitle = React.forwardRef< | |
| React.ElementRef<typeof DialogPrimitive.Title>, | |
| React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title> | |
| >(({ className, ...props }, ref) => ( | |
| <DialogPrimitive.Title | |
| ref={ref} | |
| className={cn( | |
| "text-title-h5 font-semibold leading-none tracking-tight text-accent-black", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| )); | |
| DialogTitle.displayName = DialogPrimitive.Title.displayName; | |
| const DialogDescription = React.forwardRef< | |
| React.ElementRef<typeof DialogPrimitive.Description>, | |
| React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description> | |
| >(({ className, ...props }, ref) => ( | |
| <DialogPrimitive.Description | |
| ref={ref} | |
| className={cn("text-body-medium text-black-alpha-72", className)} | |
| {...props} | |
| /> | |
| )); | |
| DialogDescription.displayName = DialogPrimitive.Description.displayName; | |
| export { | |
| Dialog, | |
| DialogPortal, | |
| DialogOverlay, | |
| DialogClose, | |
| DialogTrigger, | |
| DialogContent, | |
| DialogHeader, | |
| DialogFooter, | |
| DialogTitle, | |
| DialogDescription, | |
| }; | |