mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-07 08:30:06 +00:00
* lint: turn on type import rules setting up for verbatimModuleSyntax * lint: --fix for type imports
128 lines
3.0 KiB
Vue
128 lines
3.0 KiB
Vue
<template>
|
|
<Popover
|
|
ref="popover"
|
|
:auto-z-index="true"
|
|
:base-z-index="1100"
|
|
:dismissable="true"
|
|
:close-on-escape="true"
|
|
unstyled
|
|
:pt="submenuPt"
|
|
>
|
|
<div
|
|
:class="
|
|
isColorSubmenu
|
|
? 'flex flex-col gap-1 p-2'
|
|
: 'flex flex-col p-2 min-w-40'
|
|
"
|
|
>
|
|
<div
|
|
v-for="subOption in option.submenu"
|
|
:key="subOption.label"
|
|
:class="
|
|
isColorSubmenu
|
|
? 'w-7 h-7 flex items-center justify-center hover:bg-gray-100 dark-theme:hover:bg-zinc-700 rounded cursor-pointer'
|
|
: 'flex items-center gap-2 px-3 py-1.5 text-sm hover:bg-gray-100 dark-theme:hover:bg-zinc-700 rounded cursor-pointer'
|
|
"
|
|
:title="subOption.label"
|
|
@click="handleSubmenuClick(subOption)"
|
|
>
|
|
<div
|
|
v-if="subOption.color"
|
|
class="w-5 h-5 rounded-full border border-gray-300 dark-theme:border-zinc-600"
|
|
:style="{ backgroundColor: subOption.color }"
|
|
/>
|
|
<template v-else-if="!subOption.color">
|
|
<i-lucide:check
|
|
v-if="isShapeSelected(subOption)"
|
|
class="w-4 h-4 flex-shrink-0"
|
|
/>
|
|
<div v-else class="w-4 flex-shrink-0" />
|
|
<span>{{ subOption.label }}</span>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</Popover>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Popover from 'primevue/popover'
|
|
import { computed, ref } from 'vue'
|
|
|
|
import type {
|
|
MenuOption,
|
|
SubMenuOption
|
|
} from '@/composables/graph/useMoreOptionsMenu'
|
|
import { useNodeCustomization } from '@/composables/graph/useNodeCustomization'
|
|
|
|
interface Props {
|
|
option: MenuOption
|
|
containerStyles: {
|
|
width: string
|
|
height: string
|
|
backgroundColor: string
|
|
border: string
|
|
borderRadius: string
|
|
}
|
|
}
|
|
|
|
interface Emits {
|
|
(e: 'submenu-click', subOption: SubMenuOption): void
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
const emit = defineEmits<Emits>()
|
|
|
|
const { getCurrentShape } = useNodeCustomization()
|
|
|
|
const popover = ref<InstanceType<typeof Popover>>()
|
|
|
|
const show = (event: Event, target?: HTMLElement) => {
|
|
popover.value?.show(event, target)
|
|
}
|
|
|
|
const hide = () => {
|
|
popover.value?.hide()
|
|
}
|
|
|
|
defineExpose({
|
|
show,
|
|
hide
|
|
})
|
|
|
|
const handleSubmenuClick = (subOption: SubMenuOption) => {
|
|
emit('submenu-click', subOption)
|
|
}
|
|
|
|
const isShapeSelected = (subOption: SubMenuOption): boolean => {
|
|
if (subOption.color) return false
|
|
|
|
const currentShape = getCurrentShape()
|
|
if (!currentShape) return false
|
|
|
|
return currentShape.localizedName === subOption.label
|
|
}
|
|
|
|
const isColorSubmenu = computed(() => {
|
|
return (
|
|
props.option.submenu &&
|
|
props.option.submenu.length > 0 &&
|
|
props.option.submenu.every((item) => item.color && !item.icon)
|
|
)
|
|
})
|
|
|
|
const submenuPt = computed(() => ({
|
|
root: {
|
|
class: 'absolute z-[60]'
|
|
},
|
|
content: {
|
|
class: [
|
|
'text-neutral dark-theme:text-white rounded-lg',
|
|
'shadow-lg border border-zinc-200 dark-theme:border-zinc-700'
|
|
],
|
|
style: {
|
|
backgroundColor: props.containerStyles.backgroundColor
|
|
}
|
|
}
|
|
}))
|
|
</script>
|