32 lines
1.3 KiB
Vue
32 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import type { DropdownMenuSubContentEmits, DropdownMenuSubContentProps } from "reka-ui";
|
|
import type { HTMLAttributes } from "vue";
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { ContextMenuPortal, ContextMenuSubContent, useForwardPropsEmits } from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<DropdownMenuSubContentProps & { class?: HTMLAttributes["class"] }>();
|
|
const emits = defineEmits<DropdownMenuSubContentEmits>();
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuPortal>
|
|
<ContextMenuSubContent
|
|
data-slot="context-menu-sub-content"
|
|
v-bind="forwarded"
|
|
:class="
|
|
cn(
|
|
'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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 text-popover-foreground min-w-32 rounded-[6px] ring-foreground/10 ring-1 p-1 duration-100 cn-menu-translucent z-50 origin-(--reka-context-menu-content-transform-origin) overflow-hidden',
|
|
props.class,
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</ContextMenuSubContent>
|
|
</ContextMenuPortal>
|
|
</template>
|