93 lines
2.9 KiB
TypeScript
93 lines
2.9 KiB
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import * as React from "react";
|
||
|
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
||
|
|
import { X } from "lucide-react";
|
||
|
|
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
|
||
|
|
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-50 bg-black/70 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 = 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(
|
||
|
|
"fixed left-1/2 top-1/2 z-50 w-full max-w-md -translate-x-1/2 -translate-y-1/2 rounded-xl border border-gray-700 bg-gray-900 p-6 text-white shadow-xl focus:outline-none",
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
{children}
|
||
|
|
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-md text-gray-400 hover:text-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary-500">
|
||
|
|
<X className="h-4 w-4" />
|
||
|
|
<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("mb-4 flex flex-col gap-1", className)} {...props} />
|
||
|
|
);
|
||
|
|
|
||
|
|
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-white", 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-gray-400", className)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
));
|
||
|
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
||
|
|
|
||
|
|
export {
|
||
|
|
Dialog,
|
||
|
|
DialogClose,
|
||
|
|
DialogContent,
|
||
|
|
DialogDescription,
|
||
|
|
DialogHeader,
|
||
|
|
DialogTitle,
|
||
|
|
DialogTrigger,
|
||
|
|
};
|