mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
Adds a workflow progress panel component underneath the `actionbar-container`. I suggest starting a review at the extraneous changes that were needed. Including but not limited to: - `get createTime()` in queueStore - `promptIdToWorkflowId`, `initializingPromptIds`, and `nodeProgressStatesByPrompt` in executionStore - `create_time` handling in v2ToV1Adapter - `pointer-events-auto` on ComfyActionbar.vue The rest of the changes should be contained under `QueueProgressOverlay.vue`, and has less of a blast radius in case something goes wrong. --------- Co-authored-by: pythongosssss <125205205+pythongosssss@users.noreply.github.com> Co-authored-by: GitHub Action <action@github.com> Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Jin Yi <jin12cc@gmail.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Alexander Brown <drjkl@comfy.org> Co-authored-by: Johnpaul Chiwetelu <49923152+Myestery@users.noreply.github.com> Co-authored-by: Christian Byrne <cbyrne@comfy.org> Co-authored-by: Comfy Org PR Bot <snomiao+comfy-pr@gmail.com> Co-authored-by: christian-byrne <72887196+christian-byrne@users.noreply.github.com>
73 lines
1.9 KiB
Vue
73 lines
1.9 KiB
Vue
<template>
|
|
<Popover
|
|
ref="jobItemPopoverRef"
|
|
:dismissable="true"
|
|
:close-on-escape="true"
|
|
unstyled
|
|
:pt="{
|
|
root: { class: 'absolute z-50' },
|
|
content: {
|
|
class: [
|
|
'bg-transparent border-none p-0 pt-2 rounded-lg shadow-lg font-inter'
|
|
]
|
|
}
|
|
}"
|
|
>
|
|
<div
|
|
class="flex min-w-[14rem] flex-col items-stretch rounded-lg border border-interface-stroke bg-interface-panel-surface px-2 py-3 font-inter"
|
|
>
|
|
<template v-for="entry in entries" :key="entry.key">
|
|
<div v-if="entry.kind === 'divider'" class="px-2 py-1">
|
|
<div class="h-px bg-interface-stroke" />
|
|
</div>
|
|
<button
|
|
v-else
|
|
class="inline-flex w-full cursor-pointer items-center justify-start gap-2 rounded-lg border-0 bg-transparent p-2 font-inter text-[12px] leading-none text-text-primary transition-colors duration-150 hover:bg-interface-panel-hover-surface"
|
|
:aria-label="entry.label"
|
|
@click="onEntry(entry)"
|
|
>
|
|
<i
|
|
v-if="entry.icon"
|
|
:class="[
|
|
entry.icon,
|
|
'block size-4 shrink-0 leading-none text-text-secondary'
|
|
]"
|
|
/>
|
|
<span>{{ entry.label }}</span>
|
|
</button>
|
|
</template>
|
|
</div>
|
|
</Popover>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Popover from 'primevue/popover'
|
|
import { ref } from 'vue'
|
|
|
|
import type { MenuEntry } from '@/composables/queue/useJobMenu'
|
|
|
|
defineProps<{ entries: MenuEntry[] }>()
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'action', entry: MenuEntry): void
|
|
}>()
|
|
|
|
const jobItemPopoverRef = ref<InstanceType<typeof Popover> | null>(null)
|
|
|
|
function open(event: Event) {
|
|
if (jobItemPopoverRef.value) {
|
|
jobItemPopoverRef.value.toggle(event)
|
|
}
|
|
}
|
|
|
|
function hide() {
|
|
jobItemPopoverRef.value?.hide()
|
|
}
|
|
|
|
function onEntry(entry: MenuEntry) {
|
|
emit('action', entry)
|
|
}
|
|
|
|
defineExpose({ open, hide })
|
|
</script>
|