33 lines
1.1 KiB
Vue
33 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { ChevronRight } from 'lucide-vue-next'
|
|
import {
|
|
ContextMenuSubTrigger,
|
|
type ContextMenuSubTriggerProps,
|
|
useForwardProps,
|
|
} from 'reka-ui'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<ContextMenuSubTriggerProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class')
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuSubTrigger
|
|
data-slot="context-menu-sub-trigger"
|
|
:data-inset="inset ? '' : undefined"
|
|
v-bind="forwardedProps"
|
|
:class="cn(
|
|
`focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`,
|
|
props.class,
|
|
)"
|
|
>
|
|
<slot />
|
|
<ChevronRight class="ml-auto" />
|
|
</ContextMenuSubTrigger>
|
|
</template>
|