mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-02 20:22:08 +00:00
## Summary For users who don't use subgraphs, the workflow name in the top left can be unnecessarily obstructive so this updated collapses it to a simple icon until a subgraph is entered. ## Changes - Add menu button to WorkflowTab for quick workflow actions - Add menu and back button to SubgraphBreadcrumb - Extract shared menu items to useBreadcrumbMenu composable - Add Comfy.RenameWorkflow command for renaming persisted workflows - Menu always shows root workflow menu, even when in subgraph ## Screenshots (if applicable) <img width="399" height="396" alt="image" src="https://github.com/user-attachments/assets/701ab60e-790f-4d1e-a817-dc42b2d98712" /> <img width="569" height="381" alt="image" src="https://github.com/user-attachments/assets/fcea3ab0-8388-4c72-a649-1428c1defd6a" /> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7852-Subgraph-workflow-breadcrumbs-menu-updates-2df6d73d3650815b8490ca0a9a92d540) by [Unito](https://www.unito.io) --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: GitHub Action <action@github.com>
218 lines
5.7 KiB
Vue
218 lines
5.7 KiB
Vue
<template>
|
|
<a
|
|
ref="wrapperRef"
|
|
v-tooltip.bottom="{
|
|
value: tooltipText,
|
|
showDelay: 512
|
|
}"
|
|
draggable="false"
|
|
href="#"
|
|
class="p-breadcrumb-item-link h-8 cursor-pointer px-2"
|
|
:class="{
|
|
'flex items-center gap-1': isActive,
|
|
'p-breadcrumb-item-link-menu-visible': menu?.overlayVisible,
|
|
'p-breadcrumb-item-link-icon-visible': isActive,
|
|
'active-breadcrumb-item': isActive
|
|
}"
|
|
@click="handleClick"
|
|
>
|
|
<i
|
|
v-if="hasMissingNodes && isRoot"
|
|
class="icon-[lucide--triangle-alert] text-warning-background"
|
|
/>
|
|
<span class="p-breadcrumb-item-label px-2">{{ item.label }}</span>
|
|
<Tag v-if="item.isBlueprint" value="Blueprint" severity="primary" />
|
|
<i v-if="isActive" class="pi pi-angle-down text-[10px]"></i>
|
|
</a>
|
|
<Menu
|
|
v-if="isActive || isRoot"
|
|
ref="menu"
|
|
:model="menuItems"
|
|
:popup="true"
|
|
:pt="{
|
|
root: {
|
|
style: 'background-color: var(--comfy-menu-bg)'
|
|
},
|
|
itemLink: {
|
|
class: 'py-2'
|
|
}
|
|
}"
|
|
/>
|
|
<InputText
|
|
v-if="isEditing"
|
|
ref="itemInputRef"
|
|
v-model="itemLabel"
|
|
class="fixed z-10000 px-2 py-2 text-[.8rem]"
|
|
@blur="inputBlur(false)"
|
|
@click.stop
|
|
@keydown.enter="inputBlur(true)"
|
|
@keydown.esc="inputBlur(false)"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import InputText from 'primevue/inputtext'
|
|
import type { MenuState } from 'primevue/menu'
|
|
import Menu from 'primevue/menu'
|
|
import type { MenuItem } from 'primevue/menuitem'
|
|
import Tag from 'primevue/tag'
|
|
import { computed, nextTick, ref } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import { useWorkflowActionsMenu } from '@/composables/useWorkflowActionsMenu'
|
|
import { useWorkflowService } from '@/platform/workflow/core/services/workflowService'
|
|
import {
|
|
ComfyWorkflow,
|
|
useWorkflowStore
|
|
} from '@/platform/workflow/management/stores/workflowStore'
|
|
import { app } from '@/scripts/app'
|
|
import { useDialogService } from '@/services/dialogService'
|
|
import { useCommandStore } from '@/stores/commandStore'
|
|
import { useNodeDefStore } from '@/stores/nodeDefStore'
|
|
import { useSubgraphNavigationStore } from '@/stores/subgraphNavigationStore'
|
|
import { appendJsonExt } from '@/utils/formatUtil'
|
|
import { graphHasMissingNodes } from '@/workbench/extensions/manager/utils/graphHasMissingNodes'
|
|
|
|
interface Props {
|
|
item: MenuItem
|
|
isActive?: boolean
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
isActive: false
|
|
})
|
|
|
|
const nodeDefStore = useNodeDefStore()
|
|
const hasMissingNodes = computed(() =>
|
|
graphHasMissingNodes(app.rootGraph, nodeDefStore.nodeDefsByName)
|
|
)
|
|
|
|
const { t } = useI18n()
|
|
const menu = ref<InstanceType<typeof Menu> & MenuState>()
|
|
const dialogService = useDialogService()
|
|
const workflowStore = useWorkflowStore()
|
|
const workflowService = useWorkflowService()
|
|
const isEditing = ref(false)
|
|
const itemLabel = ref<string>()
|
|
const itemInputRef = ref<{ $el?: HTMLInputElement }>()
|
|
const wrapperRef = ref<HTMLAnchorElement>()
|
|
|
|
const rename = async (
|
|
newName: string | null | undefined,
|
|
initialName: string
|
|
) => {
|
|
if (newName && newName !== initialName) {
|
|
// Synchronize the node titles with the new name
|
|
props.item.updateTitle?.(newName)
|
|
|
|
if (workflowStore.activeSubgraph) {
|
|
workflowStore.activeSubgraph.name = newName
|
|
} else if (workflowStore.activeWorkflow) {
|
|
try {
|
|
await workflowService.renameWorkflow(
|
|
workflowStore.activeWorkflow,
|
|
ComfyWorkflow.basePath + appendJsonExt(newName)
|
|
)
|
|
} catch (error) {
|
|
console.error(error)
|
|
dialogService.showErrorDialog(error)
|
|
return
|
|
}
|
|
}
|
|
|
|
// Force the navigation stack to recompute the labels
|
|
// TODO: investigate if there is a better way to do this
|
|
const navigationStore = useSubgraphNavigationStore()
|
|
navigationStore.restoreState(navigationStore.exportState())
|
|
}
|
|
}
|
|
|
|
const isRoot = props.item.key === 'root'
|
|
|
|
const tooltipText = computed(() => {
|
|
if (hasMissingNodes.value && isRoot) {
|
|
return t('breadcrumbsMenu.missingNodesWarning')
|
|
}
|
|
return props.item.label
|
|
})
|
|
|
|
const startRename = async () => {
|
|
// Check if element is hidden (collapsed breadcrumb)
|
|
// When collapsed, root item is hidden via CSS display:none, so use rename command
|
|
if (isRoot && wrapperRef.value?.offsetParent === null) {
|
|
await useCommandStore().execute('Comfy.RenameWorkflow')
|
|
return
|
|
}
|
|
|
|
isEditing.value = true
|
|
itemLabel.value = props.item.label as string
|
|
void nextTick(() => {
|
|
if (itemInputRef.value?.$el) {
|
|
itemInputRef.value.$el.focus()
|
|
itemInputRef.value.$el.select()
|
|
if (wrapperRef.value) {
|
|
itemInputRef.value.$el.style.width = `${Math.max(200, wrapperRef.value.offsetWidth)}px`
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
const { menuItems } = useWorkflowActionsMenu(startRename, { isRoot })
|
|
|
|
const handleClick = (event: MouseEvent) => {
|
|
if (isEditing.value) {
|
|
return
|
|
}
|
|
|
|
if (event.detail === 1) {
|
|
if (props.isActive) {
|
|
menu.value?.toggle(event)
|
|
} else {
|
|
props.item.command?.({ item: props.item, originalEvent: event })
|
|
}
|
|
} else if (props.isActive && event.detail === 2) {
|
|
menu.value?.hide()
|
|
event.stopPropagation()
|
|
event.preventDefault()
|
|
startRename()
|
|
}
|
|
}
|
|
|
|
const inputBlur = async (doRename: boolean) => {
|
|
if (doRename) {
|
|
await rename(itemLabel.value, props.item.label as string)
|
|
}
|
|
|
|
isEditing.value = false
|
|
}
|
|
|
|
const toggleMenu = (event: MouseEvent) => {
|
|
menu.value?.toggle(event)
|
|
}
|
|
|
|
defineExpose({
|
|
toggleMenu
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
@reference '../../assets/css/style.css';
|
|
|
|
.p-breadcrumb-item-link,
|
|
.p-breadcrumb-item-icon {
|
|
@apply select-none;
|
|
}
|
|
|
|
.p-breadcrumb-item-link {
|
|
@apply overflow-hidden;
|
|
}
|
|
|
|
.p-breadcrumb-item-label {
|
|
@apply whitespace-nowrap text-ellipsis overflow-hidden;
|
|
}
|
|
|
|
.active-breadcrumb-item {
|
|
color: var(--text-primary);
|
|
}
|
|
</style>
|