95 lines
3.0 KiB
TypeScript
95 lines
3.0 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/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 = 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(
|
||
|
|
"pixel-panel fixed left-1/2 top-1/2 z-50 grid w-[min(100vw-2rem,32rem)] max-h-[min(90dvh,40rem)] -translate-x-1/2 -translate-y-1/2 gap-4 overflow-y-auto p-5 shadow-lg duration-200 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 className="absolute right-4 top-4 flex h-8 w-8 items-center justify-center rounded-md text-muted-foreground hover:bg-accent hover:text-foreground">
|
||
|
|
<X className="h-4 w-4" />
|
||
|
|
<span className="sr-only">關閉</span>
|
||
|
|
</DialogPrimitive.Close>
|
||
|
|
</DialogPrimitive.Content>
|
||
|
|
</DialogPortal>
|
||
|
|
));
|
||
|
|
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
||
|
|
|
||
|
|
function DialogHeader({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
||
|
|
return <div className={cn("flex flex-col gap-1 pr-8", className)} {...props} />;
|
||
|
|
}
|
||
|
|
|
||
|
|
function DialogFooter({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
||
|
|
return <div className={cn("flex flex-wrap gap-2 pt-2", className)} {...props} />;
|
||
|
|
}
|
||
|
|
|
||
|
|
function DialogTitle({
|
||
|
|
className,
|
||
|
|
...props
|
||
|
|
}: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>) {
|
||
|
|
return (
|
||
|
|
<DialogPrimitive.Title
|
||
|
|
className={cn("text-[15px] font-semibold leading-none tracking-tight", className)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
function DialogDescription({
|
||
|
|
className,
|
||
|
|
...props
|
||
|
|
}: React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>) {
|
||
|
|
return (
|
||
|
|
<DialogPrimitive.Description
|
||
|
|
className={cn("text-[13px] text-muted-foreground", className)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export {
|
||
|
|
Dialog,
|
||
|
|
DialogPortal,
|
||
|
|
DialogOverlay,
|
||
|
|
DialogClose,
|
||
|
|
DialogTrigger,
|
||
|
|
DialogContent,
|
||
|
|
DialogHeader,
|
||
|
|
DialogFooter,
|
||
|
|
DialogTitle,
|
||
|
|
DialogDescription,
|
||
|
|
};
|