45 lines
1.2 KiB
Vue
45 lines
1.2 KiB
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { useForwardPropsEmits } from "reka-ui";
|
|
import { DrawerContent, DrawerPortal } from "vaul-vue";
|
|
import { cn } from "@/lib/utils";
|
|
import DrawerOverlay from "./DrawerOverlay.vue";
|
|
|
|
const props = defineProps({
|
|
forceMount: { type: Boolean, required: false },
|
|
disableOutsidePointerEvents: { type: Boolean, required: false },
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
const emits = defineEmits([
|
|
"escapeKeyDown",
|
|
"pointerDownOutside",
|
|
"focusOutside",
|
|
"interactOutside",
|
|
"openAutoFocus",
|
|
"closeAutoFocus",
|
|
]);
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
const forwardedProps = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerPortal>
|
|
<DrawerOverlay />
|
|
<DrawerContent
|
|
v-bind="forwardedProps"
|
|
:class="
|
|
cn(
|
|
'fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background',
|
|
props.class,
|
|
)
|
|
"
|
|
>
|
|
<div class="mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" />
|
|
<slot />
|
|
</DrawerContent>
|
|
</DrawerPortal>
|
|
</template>
|