Spaces:
Running
Running
| import * as DialogPrimitive from "@radix-ui/react-dialog"; | |
| import * as React from "react"; | |
| import { cn } from "@/lib/utils"; | |
| export const Dialog = DialogPrimitive.Root; | |
| export const DialogTrigger = DialogPrimitive.Trigger; | |
| export const DialogClose = DialogPrimitive.Close; | |
| export const DialogPortal = DialogPrimitive.Portal; | |
| export 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/60 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| )); | |
| DialogOverlay.displayName = "DialogOverlay"; | |
| export const DialogContent = React.forwardRef< | |
| React.ElementRef<typeof DialogPrimitive.Content>, | |
| React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> | |
| >(({ className, children, ...props }, ref) => ( | |
| <DialogPortal> | |
| <DialogOverlay /> | |
| <DialogPrimitive.Content | |
| ref={ref} | |
| className={cn( | |
| "fixed left-1/2 top-1/2 z-50 grid w-[min(48rem,calc(100vw-2rem))] max-h-[calc(100vh-4rem)] -translate-x-1/2 -translate-y-1/2 gap-4 overflow-y-auto rounded-lg border bg-[var(--color-card)] p-6 text-[var(--color-card-foreground)] shadow-lg outline-none 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", | |
| className, | |
| )} | |
| {...props} | |
| > | |
| {children} | |
| <DialogPrimitive.Close | |
| aria-label="Close" | |
| className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-[var(--color-background)] transition-opacity hover:opacity-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[var(--color-ring)] focus-visible:ring-offset-2" | |
| > | |
| <svg | |
| xmlns="http://www.w3.org/2000/svg" | |
| width="16" | |
| height="16" | |
| viewBox="0 0 24 24" | |
| fill="none" | |
| stroke="currentColor" | |
| strokeWidth="2" | |
| strokeLinecap="round" | |
| strokeLinejoin="round" | |
| aria-hidden | |
| > | |
| <line x1="18" y1="6" x2="6" y2="18" /> | |
| <line x1="6" y1="6" x2="18" y2="18" /> | |
| </svg> | |
| </DialogPrimitive.Close> | |
| </DialogPrimitive.Content> | |
| </DialogPortal> | |
| )); | |
| DialogContent.displayName = "DialogContent"; | |
| export function DialogHeader({ | |
| className, | |
| ...props | |
| }: React.HTMLAttributes<HTMLDivElement>) { | |
| return ( | |
| <div | |
| className={cn("flex flex-col space-y-1.5 text-left pr-8", className)} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| export const DialogTitle = React.forwardRef< | |
| React.ElementRef<typeof DialogPrimitive.Title>, | |
| React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title> | |
| >(({ className, ...props }, ref) => ( | |
| <DialogPrimitive.Title | |
| ref={ref} | |
| className={cn( | |
| "text-lg font-semibold leading-none tracking-tight", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| )); | |
| DialogTitle.displayName = "DialogTitle"; | |
| export const DialogDescription = React.forwardRef< | |
| React.ElementRef<typeof DialogPrimitive.Description>, | |
| React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description> | |
| >(({ className, ...props }, ref) => ( | |
| <DialogPrimitive.Description | |
| ref={ref} | |
| className={cn("text-sm text-[var(--color-muted-foreground)]", className)} | |
| {...props} | |
| /> | |
| )); | |
| DialogDescription.displayName = "DialogDescription"; | |