Spaces:
Runtime error
Runtime error
import * as React from 'react'; | |
import * as DialogPrimitive from '@radix-ui/react-dialog'; | |
import { Button } from '../ui/Button'; | |
import { X } from 'lucide-react'; | |
import { cn } from '../../utils'; | |
const Dialog = DialogPrimitive.Root; | |
const DialogTrigger = DialogPrimitive.Trigger; | |
const DialogPortal = ({ className, children, ...props }: DialogPrimitive.DialogPortalProps) => ( | |
<DialogPrimitive.Portal className={cn(className)} {...props}> | |
<div className="fixed inset-0 z-[999] flex items-start justify-center sm:items-center"> | |
{children} | |
</div> | |
</DialogPrimitive.Portal> | |
); | |
DialogPortal.displayName = DialogPrimitive.Portal.displayName; | |
const DialogOverlay = React.forwardRef< | |
React.ElementRef<typeof DialogPrimitive.Overlay>, | |
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay> | |
>(({ className, ...props }, ref) => ( | |
<DialogPrimitive.Overlay | |
className={cn( | |
'data-[state=closed]:animate-out data-[state=open]:fade-in data-[state=closed]:fade-out fixed inset-0 z-[999] bg-gray-500/90 transition-all duration-100 dark:bg-gray-800/90', | |
className, | |
)} | |
{...props} | |
ref={ref} | |
/> | |
)); | |
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName; | |
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( | |
'animate-in data-[state=open]:fade-in-90 data-[state=open]:slide-in-from-bottom-10 sm:zoom-in-90 data-[state=open]:sm:slide-in-from-bottom-0 fixed z-[999] grid w-full gap-4 overflow-y-auto rounded-b-lg bg-white pb-6 sm:rounded-lg md:w-[680px]', | |
'dark:bg-slate-900', | |
className, | |
)} | |
{...props} | |
> | |
{children} | |
<DialogPrimitive.Close className="absolute right-4 top-[1.88rem] rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-slate-100 dark:focus:ring-slate-400 dark:focus:ring-offset-slate-900 dark:data-[state=open]:bg-slate-800"> | |
<X className="h-4 w-4 text-black dark:text-white" /> | |
<span className="sr-only">Close</span> | |
</DialogPrimitive.Close> | |
</DialogPrimitive.Content> | |
</DialogPortal> | |
)); | |
DialogContent.displayName = DialogPrimitive.Content.displayName; | |
const DialogHeader = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( | |
<div | |
className={cn( | |
'flex flex-col space-y-2 border-b border-black/10 p-6 text-center dark:border-white/10 sm:text-left', | |
className, | |
)} | |
{...props} | |
/> | |
); | |
DialogHeader.displayName = 'DialogHeader'; | |
const DialogFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( | |
<div | |
className={cn( | |
'flex flex-col-reverse px-6 sm:flex-row sm:justify-between sm:space-x-2', | |
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-lg font-semibold text-slate-900', 'dark:text-slate-50', 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-sm text-slate-500', 'dark:text-slate-400', className)} | |
{...props} | |
/> | |
)); | |
DialogDescription.displayName = DialogPrimitive.Description.displayName; | |
const DialogClose = React.forwardRef< | |
React.ElementRef<typeof DialogPrimitive.Close>, | |
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Close> | |
>(({ className, ...props }, ref) => ( | |
<DialogPrimitive.Close | |
ref={ref} | |
className={cn( | |
'mt-2 inline-flex h-10 items-center justify-center rounded-md border border-slate-200 bg-transparent px-4 py-2 text-sm font-semibold text-slate-900 transition-colors hover:bg-slate-100 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 dark:border-slate-700 dark:text-slate-100 dark:hover:bg-gray-900 dark:focus:ring-slate-400 dark:focus:ring-offset-slate-900 sm:mt-0', | |
className, | |
)} | |
{...props} | |
/> | |
)); | |
DialogClose.displayName = DialogPrimitive.Title.displayName; | |
const DialogButton = React.forwardRef< | |
React.ElementRef<typeof Button>, | |
React.ComponentPropsWithoutRef<typeof Button> | |
>(({ className, ...props }, ref) => ( | |
<Button | |
ref={ref} | |
variant="outline" | |
className={cn( | |
'mt-2 inline-flex h-10 items-center justify-center rounded-md border border-slate-200 bg-transparent px-4 py-2 text-sm font-semibold text-slate-900 transition-colors hover:bg-slate-100 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 dark:border-slate-700 dark:text-slate-100 dark:hover:bg-gray-900 dark:focus:ring-slate-400 dark:focus:ring-offset-slate-900 sm:mt-0', | |
className, | |
)} | |
{...props} | |
/> | |
)); | |
DialogButton.displayName = DialogPrimitive.Title.displayName; | |
export { | |
Dialog, | |
DialogTrigger, | |
DialogContent, | |
DialogHeader, | |
DialogFooter, | |
DialogTitle, | |
DialogDescription, | |
DialogClose, | |
DialogButton, | |
}; | |