2024-11-30 00:58:04 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { cn } from "@/lib/utils";
|
2025-04-10 13:55:56 +02:00
|
|
|
import { reactiveOmit } from "@vueuse/core";
|
2024-11-30 00:58:04 +01:00
|
|
|
import { X } from "lucide-vue-next";
|
|
|
|
|
import {
|
|
|
|
|
DialogClose,
|
|
|
|
|
DialogContent,
|
|
|
|
|
type DialogContentEmits,
|
|
|
|
|
type DialogContentProps,
|
|
|
|
|
DialogPortal,
|
|
|
|
|
useForwardPropsEmits,
|
2025-03-28 01:16:24 +01:00
|
|
|
} from "reka-ui";
|
2025-04-10 13:55:56 +02:00
|
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
|
import SheetOverlay from "./SheetOverlay.vue";
|
2024-11-30 00:58:04 +01:00
|
|
|
|
|
|
|
|
interface SheetContentProps extends DialogContentProps {
|
|
|
|
|
class?: HTMLAttributes["class"];
|
2025-04-10 13:55:56 +02:00
|
|
|
side?: "top" | "right" | "bottom" | "left";
|
2024-11-30 00:58:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defineOptions({
|
|
|
|
|
inheritAttrs: false,
|
|
|
|
|
});
|
|
|
|
|
|
2025-04-10 13:55:56 +02:00
|
|
|
const props = withDefaults(defineProps<SheetContentProps>(), {
|
|
|
|
|
side: "right",
|
|
|
|
|
});
|
2024-11-30 00:58:04 +01:00
|
|
|
const emits = defineEmits<DialogContentEmits>();
|
|
|
|
|
|
2025-04-10 13:55:56 +02:00
|
|
|
const delegatedProps = reactiveOmit(props, "class", "side");
|
2024-11-30 00:58:04 +01:00
|
|
|
|
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<DialogPortal>
|
2025-04-10 13:55:56 +02:00
|
|
|
<SheetOverlay />
|
2024-11-30 00:58:04 +01:00
|
|
|
<DialogContent
|
2025-04-10 13:55:56 +02:00
|
|
|
data-slot="sheet-content"
|
|
|
|
|
:class="cn(
|
|
|
|
|
'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed z-50 flex flex-col gap-4 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500',
|
|
|
|
|
side === '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 border-l sm:max-w-sm',
|
|
|
|
|
side === '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',
|
|
|
|
|
side === 'top'
|
|
|
|
|
&& 'data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top inset-x-0 top-0 h-auto border-b',
|
|
|
|
|
side === 'bottom'
|
|
|
|
|
&& 'data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom inset-x-0 bottom-0 h-auto border-t',
|
|
|
|
|
props.class)"
|
2024-11-30 00:58:04 +01:00
|
|
|
v-bind="{ ...forwarded, ...$attrs }"
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
|
|
|
|
|
<DialogClose
|
2025-04-10 13:55:56 +02:00
|
|
|
class="ring-offset-background focus:ring-ring data-[state=open]:bg-secondary absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none"
|
2024-11-30 00:58:04 +01:00
|
|
|
>
|
2025-04-10 13:55:56 +02:00
|
|
|
<X class="size-4" />
|
|
|
|
|
<span class="sr-only">Close</span>
|
2024-11-30 00:58:04 +01:00
|
|
|
</DialogClose>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</DialogPortal>
|
|
|
|
|
</template>
|