152 lines
3.8 KiB
TypeScript
152 lines
3.8 KiB
TypeScript
'use client';
|
|
|
|
import type * as React from 'react';
|
|
import { XIcon } from 'lucide-react';
|
|
import { Dialog as DialogPrimitive } from 'radix-ui';
|
|
|
|
import { Button, cn } from '@gib/ui';
|
|
|
|
const Dialog = ({
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Root>) => (
|
|
<DialogPrimitive.Root data-slot='dialog' {...props} />
|
|
);
|
|
|
|
const DialogTrigger = ({
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Trigger>) => (
|
|
<DialogPrimitive.Trigger data-slot='dialog-trigger' {...props} />
|
|
);
|
|
|
|
const DialogPortal = ({
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Portal>) => (
|
|
<DialogPrimitive.Portal data-slot='dialog-portal' {...props} />
|
|
);
|
|
|
|
const DialogClose = ({
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Close>) => (
|
|
<DialogPrimitive.Close data-slot='dialog-close' {...props} />
|
|
);
|
|
|
|
const DialogOverlay = ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Overlay>) => (
|
|
<DialogPrimitive.Overlay
|
|
data-slot='dialog-overlay'
|
|
className={cn(
|
|
'data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 fixed inset-0 isolate z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
const DialogContent = ({
|
|
className,
|
|
children,
|
|
showCloseButton = true,
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
showCloseButton?: boolean;
|
|
}) => (
|
|
<DialogPortal>
|
|
<DialogOverlay />
|
|
<DialogPrimitive.Content
|
|
data-slot='dialog-content'
|
|
className={cn(
|
|
'bg-background data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 ring-foreground/10 fixed top-1/2 left-1/2 z-50 grid w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl p-4 text-sm ring-1 duration-100 outline-none sm:max-w-sm',
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
{showCloseButton && (
|
|
<DialogPrimitive.Close data-slot='dialog-close' asChild>
|
|
<Button
|
|
variant='ghost'
|
|
className='absolute top-2 right-2'
|
|
size='icon-sm'
|
|
>
|
|
<XIcon />
|
|
<span className='sr-only'>Close</span>
|
|
</Button>
|
|
</DialogPrimitive.Close>
|
|
)}
|
|
</DialogPrimitive.Content>
|
|
</DialogPortal>
|
|
);
|
|
|
|
const DialogHeader = ({ className, ...props }: React.ComponentProps<'div'>) => (
|
|
<div
|
|
data-slot='dialog-header'
|
|
className={cn('flex flex-col gap-2', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
const DialogFooter = ({
|
|
className,
|
|
showCloseButton = false,
|
|
children,
|
|
...props
|
|
}: React.ComponentProps<'div'> & {
|
|
showCloseButton?: boolean;
|
|
}) => (
|
|
<div
|
|
data-slot='dialog-footer'
|
|
className={cn(
|
|
'bg-muted/50 -mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t p-4 sm:flex-row sm:justify-end',
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
{showCloseButton && (
|
|
<DialogPrimitive.Close asChild>
|
|
<Button variant='outline'>Close</Button>
|
|
</DialogPrimitive.Close>
|
|
)}
|
|
</div>
|
|
);
|
|
|
|
const DialogTitle = ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Title>) => (
|
|
<DialogPrimitive.Title
|
|
data-slot='dialog-title'
|
|
className={cn('text-base leading-none font-medium', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
const DialogDescription = ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof DialogPrimitive.Description>) => (
|
|
<DialogPrimitive.Description
|
|
data-slot='dialog-description'
|
|
className={cn(
|
|
'text-muted-foreground *:[a]:hover:text-foreground text-sm *:[a]:underline *:[a]:underline-offset-3',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
export {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogOverlay,
|
|
DialogPortal,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
};
|