64 lines
2.1 KiB
Svelte
64 lines
2.1 KiB
Svelte
<script lang="ts" module>
|
|
import type { VariantProps } from 'tailwind-variants';
|
|
import { tv } from 'tailwind-variants';
|
|
|
|
export const sheetVariants = tv({
|
|
base: 'bg-mantle border-surface data-[state=open]:animate-in data-[state=closed]:animate-out fixed z-50 gap-4 p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500',
|
|
variants: {
|
|
side: {
|
|
top: 'data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top inset-x-0 top-0 border-b',
|
|
bottom:
|
|
'data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom inset-x-0 bottom-0 border-t',
|
|
left: 'data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left inset-y-0 left-0 h-full w-3/4 border-r sm:max-w-sm',
|
|
right:
|
|
'data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right inset-y-0 right-0 h-full w-3/4 max-w-2xs border-l'
|
|
}
|
|
},
|
|
defaultVariants: {
|
|
side: 'right'
|
|
}
|
|
});
|
|
|
|
export type Side = VariantProps<typeof sheetVariants>['side'];
|
|
</script>
|
|
|
|
<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 SheetPrimitive } from 'bits-ui';
|
|
import SheetOverlay from './sheet-overlay.svelte';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
side = 'right',
|
|
portalProps,
|
|
children,
|
|
...restProps
|
|
}: WithoutChildrenOrChild<SheetPrimitive.ContentProps> & {
|
|
portalProps?: SheetPrimitive.PortalProps;
|
|
side?: Side;
|
|
children: Snippet;
|
|
} = $props();
|
|
</script>
|
|
|
|
<SheetPrimitive.Portal {...portalProps}>
|
|
<SheetOverlay />
|
|
<SheetPrimitive.Content
|
|
bind:ref
|
|
data-slot="sheet-content"
|
|
class={cn(sheetVariants({ side }), className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
<SheetPrimitive.Close
|
|
class="absolute top-4 right-4 cursor-pointer rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:outline-hidden disabled:pointer-events-none"
|
|
>
|
|
<X class="size-4" />
|
|
<span class="sr-only">Close</span>
|
|
</SheetPrimitive.Close>
|
|
</SheetPrimitive.Content>
|
|
</SheetPrimitive.Portal>
|