+ my-ui/confirmation/confirmation noTrueSlot from record-confirmation + my-ui/confirmation/confirmation additional message + my-ui/confirmation/record-confirmation supplies noTrueSlot + my-ui/modal/modal text size + my-ui/doc-entry semicolon export
96 lines
2.4 KiB
Vue
96 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
import type { LinkItem, ListItemDto } from './types'
|
|
import { ActionEvents } from './types'
|
|
|
|
interface Props {
|
|
rec: ListItemDto
|
|
size?: 'default' | 'sm' | 'lg'
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
size: 'lg',
|
|
})
|
|
|
|
const recId = inject<Ref<number>>('rec_id')!
|
|
const recAction = inject<Ref<string>>('rec_action')!
|
|
const recItem = inject<Ref<any>>('rec_item')!
|
|
const activeKey = ref<string | null>(null)
|
|
const linkItems: LinkItem[] = [
|
|
{
|
|
label: 'Detail',
|
|
onClick: () => {
|
|
detail()
|
|
},
|
|
icon: 'i-lucide-eye',
|
|
},
|
|
{
|
|
label: 'Submit',
|
|
onClick: () => {
|
|
submit()
|
|
},
|
|
icon: 'i-lucide-check',
|
|
},
|
|
{
|
|
label: 'Hapus',
|
|
onClick: () => {
|
|
del()
|
|
},
|
|
icon: 'i-lucide-trash',
|
|
},
|
|
]
|
|
|
|
function detail() {
|
|
recId.value = props.rec.id || 0
|
|
recAction.value = ActionEvents.showDetail
|
|
recItem.value = props.rec
|
|
}
|
|
|
|
function submit() {
|
|
recId.value = props.rec.id || 0
|
|
recAction.value = ActionEvents.showConfirmSubmit
|
|
recItem.value = props.rec
|
|
}
|
|
|
|
function del() {
|
|
recId.value = props.rec.id || 0
|
|
recAction.value = ActionEvents.showConfirmDelete
|
|
recItem.value = props.rec
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<SidebarMenuButton
|
|
:size="size"
|
|
class="data-[state=open]:text-sidebar-accent-foreground data-[state=open]:bg-white dark:data-[state=open]:bg-slate-800"
|
|
>
|
|
<Icon
|
|
name="i-lucide-chevrons-up-down"
|
|
class="ml-auto size-4"
|
|
/>
|
|
</SidebarMenuButton>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
class="w-[--radix-dropdown-menu-trigger-width] min-w-40 rounded-lg border border-slate-200 bg-white text-black dark:border-slate-700 dark:bg-slate-800 dark:text-white"
|
|
align="end"
|
|
>
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuItem
|
|
v-for="item in linkItems"
|
|
:key="item.label"
|
|
class="hover:bg-gray-100 dark:hover:bg-slate-700"
|
|
@click="item.onClick"
|
|
@mouseenter="activeKey = item.label"
|
|
@mouseleave="activeKey = null"
|
|
>
|
|
<Icon :name="item.icon ?? ''" />
|
|
<span :class="activeKey === item.label ? 'text-sidebar-accent-foreground' : ''">{{ item.label }}</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuGroup>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</template>
|