|
| 1 | +'use client'; |
| 2 | + |
| 3 | +import * as React from 'react'; |
| 4 | +import * as DialogPrimitive from '@radix-ui/react-dialog'; |
| 5 | +import { XIcon } from 'lucide-react'; |
| 6 | + |
| 7 | +import { cn } from '@/lib/utils'; |
| 8 | + |
| 9 | +function Dialog({ ...props }: React.ComponentProps<typeof DialogPrimitive.Root>) { |
| 10 | + return <DialogPrimitive.Root data-slot="dialog" {...props} />; |
| 11 | +} |
| 12 | + |
| 13 | +function DialogTrigger({ ...props }: React.ComponentProps<typeof DialogPrimitive.Trigger>) { |
| 14 | + return <DialogPrimitive.Trigger data-slot="dialog-trigger" {...props} />; |
| 15 | +} |
| 16 | + |
| 17 | +function DialogPortal({ ...props }: React.ComponentProps<typeof DialogPrimitive.Portal>) { |
| 18 | + return <DialogPrimitive.Portal data-slot="dialog-portal" {...props} />; |
| 19 | +} |
| 20 | + |
| 21 | +function DialogClose({ ...props }: React.ComponentProps<typeof DialogPrimitive.Close>) { |
| 22 | + return <DialogPrimitive.Close data-slot="dialog-close" {...props} />; |
| 23 | +} |
| 24 | + |
| 25 | +function DialogOverlay({ |
| 26 | + className, |
| 27 | + ...props |
| 28 | +}: React.ComponentProps<typeof DialogPrimitive.Overlay>) { |
| 29 | + return ( |
| 30 | + <DialogPrimitive.Overlay |
| 31 | + data-slot="dialog-overlay" |
| 32 | + className={cn( |
| 33 | + 'data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50', |
| 34 | + className, |
| 35 | + )} |
| 36 | + {...props} |
| 37 | + /> |
| 38 | + ); |
| 39 | +} |
| 40 | + |
| 41 | +function DialogContent({ |
| 42 | + className, |
| 43 | + children, |
| 44 | + ...props |
| 45 | +}: React.ComponentProps<typeof DialogPrimitive.Content>) { |
| 46 | + return ( |
| 47 | + <DialogPortal data-slot="dialog-portal"> |
| 48 | + <DialogOverlay /> |
| 49 | + <DialogPrimitive.Content |
| 50 | + data-slot="dialog-content" |
| 51 | + className={cn( |
| 52 | + 'bg-background 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 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg', |
| 53 | + className, |
| 54 | + )} |
| 55 | + {...props} |
| 56 | + > |
| 57 | + {children} |
| 58 | + <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-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4"> |
| 59 | + <XIcon /> |
| 60 | + <span className="sr-only">Close</span> |
| 61 | + </DialogPrimitive.Close> |
| 62 | + </DialogPrimitive.Content> |
| 63 | + </DialogPortal> |
| 64 | + ); |
| 65 | +} |
| 66 | + |
| 67 | +function DialogHeader({ className, ...props }: React.ComponentProps<'div'>) { |
| 68 | + return ( |
| 69 | + <div |
| 70 | + data-slot="dialog-header" |
| 71 | + className={cn('flex flex-col gap-2 text-center sm:text-left', className)} |
| 72 | + {...props} |
| 73 | + /> |
| 74 | + ); |
| 75 | +} |
| 76 | + |
| 77 | +function DialogFooter({ className, ...props }: React.ComponentProps<'div'>) { |
| 78 | + return ( |
| 79 | + <div |
| 80 | + data-slot="dialog-footer" |
| 81 | + className={cn('flex flex-col-reverse gap-2 sm:flex-row sm:justify-end', className)} |
| 82 | + {...props} |
| 83 | + /> |
| 84 | + ); |
| 85 | +} |
| 86 | + |
| 87 | +function DialogTitle({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>) { |
| 88 | + return ( |
| 89 | + <DialogPrimitive.Title |
| 90 | + data-slot="dialog-title" |
| 91 | + className={cn('text-lg leading-none font-semibold', className)} |
| 92 | + {...props} |
| 93 | + /> |
| 94 | + ); |
| 95 | +} |
| 96 | + |
| 97 | +function DialogDescription({ |
| 98 | + className, |
| 99 | + ...props |
| 100 | +}: React.ComponentProps<typeof DialogPrimitive.Description>) { |
| 101 | + return ( |
| 102 | + <DialogPrimitive.Description |
| 103 | + data-slot="dialog-description" |
| 104 | + className={cn('text-muted-foreground text-sm', className)} |
| 105 | + {...props} |
| 106 | + /> |
| 107 | + ); |
| 108 | +} |
| 109 | + |
| 110 | +export { |
| 111 | + Dialog, |
| 112 | + DialogClose, |
| 113 | + DialogContent, |
| 114 | + DialogDescription, |
| 115 | + DialogFooter, |
| 116 | + DialogHeader, |
| 117 | + DialogOverlay, |
| 118 | + DialogPortal, |
| 119 | + DialogTitle, |
| 120 | + DialogTrigger, |
| 121 | +}; |
0 commit comments