52 lines
1.6 KiB
Svelte
52 lines
1.6 KiB
Svelte
<script lang="ts">
|
|
import type { WithoutChildrenOrChild } from 'bits-ui';
|
|
import type { Snippet } from 'svelte';
|
|
import X from '@lucide/svelte/icons/x';
|
|
import { cn } from '$lib/utils.js';
|
|
import { Dialog as DialogPrimitive } from 'bits-ui';
|
|
import * as Dialog from './index.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
portalProps,
|
|
children,
|
|
...restProps
|
|
}: WithoutChildrenOrChild<DialogPrimitive.ContentProps> & {
|
|
portalProps?: DialogPrimitive.PortalProps;
|
|
children: Snippet;
|
|
} = $props();
|
|
</script>
|
|
|
|
<Dialog.Portal {...portalProps}>
|
|
<Dialog.Overlay />
|
|
<DialogPrimitive.Content
|
|
bind:ref
|
|
data-slot="dialog-content"
|
|
class={cn(
|
|
'bg-mantle text-text border-surface-1 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg sm:max-w-lg',
|
|
|
|
// Animations
|
|
'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 duration-200',
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
<DialogPrimitive.Close
|
|
class={cn(
|
|
'text-text hover:bg-crust absolute top-4 right-4 cursor-pointer rounded p-1 transition-all disabled:pointer-events-none',
|
|
|
|
// Focus
|
|
'focus-visible:outline-accent focus-visible:outline-2 focus-visible:outline-offset-2',
|
|
|
|
// Images
|
|
"[&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4"
|
|
)}
|
|
>
|
|
<X />
|
|
<span class="sr-only">Close</span>
|
|
</DialogPrimitive.Close>
|
|
</DialogPrimitive.Content>
|
|
</Dialog.Portal>
|