118 lines
2.9 KiB
TypeScript
118 lines
2.9 KiB
TypeScript
"use client";
|
|
|
|
import { Dialog as DialogPrimitive } from "@base-ui/react/dialog";
|
|
import { XIcon } from "lucide-react";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
const Dialog = (props: DialogPrimitive.Root.Props) => {
|
|
return <DialogPrimitive.Root data-slot="dialog" {...props} />;
|
|
};
|
|
|
|
const DialogTrigger = (props: DialogPrimitive.Trigger.Props) => {
|
|
return <DialogPrimitive.Trigger data-slot="dialog-trigger" {...props} />;
|
|
};
|
|
|
|
const DialogPortal = (props: DialogPrimitive.Portal.Props) => {
|
|
return <DialogPrimitive.Portal data-slot="dialog-portal" {...props} />;
|
|
};
|
|
|
|
const DialogClose = (props: DialogPrimitive.Close.Props) => {
|
|
return <DialogPrimitive.Close data-slot="dialog-close" {...props} />;
|
|
};
|
|
|
|
const DialogOverlay = ({
|
|
className,
|
|
...props
|
|
}: DialogPrimitive.Backdrop.Props) => {
|
|
return (
|
|
<DialogPrimitive.Backdrop
|
|
data-slot="dialog-overlay"
|
|
className={cn(
|
|
"fixed inset-0 z-50 bg-black/50 transition-opacity duration-150 data-ending-style:opacity-0 data-starting-style:opacity-0",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const DialogContent = ({
|
|
className,
|
|
children,
|
|
showCloseButton = true,
|
|
overlayClassName,
|
|
...props
|
|
}: DialogPrimitive.Popup.Props & {
|
|
showCloseButton?: boolean;
|
|
overlayClassName?: string;
|
|
}) => {
|
|
return (
|
|
<DialogPortal>
|
|
<DialogOverlay className={overlayClassName} />
|
|
<DialogPrimitive.Popup
|
|
data-slot="dialog-content"
|
|
className={cn(
|
|
"fixed top-1/2 left-1/2 z-50 w-full max-w-lg -translate-x-1/2 -translate-y-1/2 rounded-xl bg-background p-4 text-sm ring-1 ring-foreground/10 outline-none duration-150 data-ending-style:scale-95 data-ending-style:opacity-0 data-starting-style:scale-95 data-starting-style:opacity-0",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
{showCloseButton && (
|
|
<DialogPrimitive.Close
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
className="absolute top-2 right-2"
|
|
/>
|
|
}
|
|
>
|
|
<XIcon />
|
|
<span className="sr-only">关闭</span>
|
|
</DialogPrimitive.Close>
|
|
)}
|
|
</DialogPrimitive.Popup>
|
|
</DialogPortal>
|
|
);
|
|
};
|
|
|
|
const DialogTitle = ({
|
|
className,
|
|
...props
|
|
}: DialogPrimitive.Title.Props) => {
|
|
return (
|
|
<DialogPrimitive.Title
|
|
data-slot="dialog-title"
|
|
className={cn("text-base font-medium", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const DialogDescription = ({
|
|
className,
|
|
...props
|
|
}: DialogPrimitive.Description.Props) => {
|
|
return (
|
|
<DialogPrimitive.Description
|
|
data-slot="dialog-description"
|
|
className={cn("text-sm text-muted-foreground", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export {
|
|
Dialog,
|
|
DialogTrigger,
|
|
DialogPortal,
|
|
DialogClose,
|
|
DialogOverlay,
|
|
DialogContent,
|
|
DialogTitle,
|
|
DialogDescription
|
|
};
|