mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
41 lines
1.6 KiB
Vue
41 lines
1.6 KiB
Vue
<script setup lang="ts">
|
|
import type { DropdownMenuItemProps } from 'reka-ui'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { DropdownMenuItem, useForwardProps } from 'reka-ui'
|
|
import { cn } from '#/lib/utils'
|
|
|
|
const props = withDefaults(defineProps<DropdownMenuItemProps & {
|
|
class?: HTMLAttributes['class']
|
|
inset?: boolean
|
|
variant?: 'default' | 'destructive'
|
|
}>(), {
|
|
variant: 'default',
|
|
})
|
|
|
|
const delegatedProps = reactiveOmit(props, 'inset', 'variant', 'class')
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuItem
|
|
data-slot="dropdown-menu-item"
|
|
:data-inset="inset ? '' : undefined"
|
|
:data-variant="variant"
|
|
v-bind="forwardedProps"
|
|
:class="cn(
|
|
'relative flex cursor-default items-center gap-2 rounded-md px-2 py-1.5 text-sm outline-hidden select-none transition-colors',
|
|
'focus:bg-gray-100 dark:focus:bg-gray-700 focus:text-gray-900 dark:focus:text-gray-100',
|
|
'data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-red-50 dark:data-[variant=destructive]:focus:bg-red-950/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:!text-destructive',
|
|
'[&_svg:not([class*=\'text-\'])]:text-gray-500 dark:[&_svg:not([class*=\'text-\'])]:text-gray-400',
|
|
'data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
|
|
'data-[inset]:pl-8',
|
|
'[&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
|
|
props.class
|
|
)"
|
|
>
|
|
<slot />
|
|
</DropdownMenuItem>
|
|
</template>
|