mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 14:54:37 +00:00
* Add node opacity setting * Add colorUtil unit test * Add playwright test * Update test expectations [skip ci] --------- Co-authored-by: github-actions <github-actions@github.com>
177 lines
5.2 KiB
Vue
177 lines
5.2 KiB
Vue
<template>
|
|
<teleport to=".graph-canvas-container">
|
|
<LiteGraphCanvasSplitterOverlay v-if="betaMenuEnabled">
|
|
<template #side-bar-panel>
|
|
<SideToolbar />
|
|
</template>
|
|
</LiteGraphCanvasSplitterOverlay>
|
|
<TitleEditor />
|
|
<canvas ref="canvasRef" id="graph-canvas" tabindex="1" />
|
|
</teleport>
|
|
<NodeSearchboxPopover />
|
|
<NodeTooltip />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import TitleEditor from '@/components/graph/TitleEditor.vue'
|
|
import SideToolbar from '@/components/sidebar/SideToolbar.vue'
|
|
import LiteGraphCanvasSplitterOverlay from '@/components/LiteGraphCanvasSplitterOverlay.vue'
|
|
import NodeSearchboxPopover from '@/components/searchbox/NodeSearchBoxPopover.vue'
|
|
import NodeTooltip from '@/components/graph/NodeTooltip.vue'
|
|
import { ref, computed, onUnmounted, onMounted, watchEffect } from 'vue'
|
|
import { app as comfyApp } from '@/scripts/app'
|
|
import { useSettingStore } from '@/stores/settingStore'
|
|
import { dropTargetForElements } from '@atlaskit/pragmatic-drag-and-drop/element/adapter'
|
|
import {
|
|
ComfyNodeDefImpl,
|
|
useNodeDefStore,
|
|
useNodeFrequencyStore
|
|
} from '@/stores/nodeDefStore'
|
|
import { useWorkspaceStore } from '@/stores/workspaceStateStore'
|
|
import {
|
|
LiteGraph,
|
|
LGraph,
|
|
LLink,
|
|
LGraphNode,
|
|
LGraphGroup,
|
|
DragAndScale,
|
|
LGraphCanvas,
|
|
ContextMenu,
|
|
LGraphBadge
|
|
} from '@comfyorg/litegraph'
|
|
import type { RenderedTreeExplorerNode } from '@/types/treeExplorerTypes'
|
|
import { useNodeBookmarkStore } from '@/stores/nodeBookmarkStore'
|
|
import { useCanvasStore } from '@/stores/graphStore'
|
|
import { applyOpacity } from '@/utils/colorUtil'
|
|
import { getColorPalette } from '@/extensions/core/colorPalette'
|
|
import { debounce } from 'lodash'
|
|
|
|
const emit = defineEmits(['ready'])
|
|
const canvasRef = ref<HTMLCanvasElement | null>(null)
|
|
const settingStore = useSettingStore()
|
|
const nodeDefStore = useNodeDefStore()
|
|
const workspaceStore = useWorkspaceStore()
|
|
const canvasStore = useCanvasStore()
|
|
|
|
const betaMenuEnabled = computed(
|
|
() => settingStore.get('Comfy.UseNewMenu') !== 'Disabled'
|
|
)
|
|
|
|
watchEffect(() => {
|
|
const canvasInfoEnabled = settingStore.get('Comfy.Graph.CanvasInfo')
|
|
if (canvasStore.canvas) {
|
|
canvasStore.canvas.show_info = canvasInfoEnabled
|
|
}
|
|
})
|
|
|
|
watchEffect(() => {
|
|
const zoomSpeed = settingStore.get('Comfy.Graph.ZoomSpeed')
|
|
if (canvasStore.canvas) {
|
|
canvasStore.canvas.zoom_speed = zoomSpeed
|
|
}
|
|
})
|
|
|
|
watchEffect(() => {
|
|
nodeDefStore.showDeprecated = settingStore.get('Comfy.Node.ShowDeprecated')
|
|
})
|
|
|
|
watchEffect(() => {
|
|
nodeDefStore.showExperimental = settingStore.get(
|
|
'Comfy.Node.ShowExperimental'
|
|
)
|
|
})
|
|
|
|
watchEffect(() => {
|
|
const spellcheckEnabled = settingStore.get('Comfy.TextareaWidget.Spellcheck')
|
|
const textareas = document.querySelectorAll('textarea.comfy-multiline-input')
|
|
|
|
textareas.forEach((textarea: HTMLTextAreaElement) => {
|
|
textarea.spellcheck = spellcheckEnabled
|
|
// Force recheck to ensure visual update
|
|
textarea.focus()
|
|
textarea.blur()
|
|
})
|
|
})
|
|
|
|
const updateNodeOpacity = (nodeOpacity: number) => {
|
|
const colorPalette = getColorPalette()
|
|
|
|
if (!canvasStore.canvas) return
|
|
|
|
const nodeBgColor = colorPalette?.colors?.litegraph_base?.NODE_DEFAULT_BGCOLOR
|
|
if (nodeBgColor) {
|
|
LiteGraph.NODE_DEFAULT_BGCOLOR = applyOpacity(nodeBgColor, nodeOpacity)
|
|
}
|
|
}
|
|
|
|
const debouncedUpdateNodeOpacity = debounce(updateNodeOpacity, 128)
|
|
|
|
watchEffect(() => {
|
|
const nodeOpacity = settingStore.get('Comfy.Node.Opacity')
|
|
debouncedUpdateNodeOpacity(nodeOpacity)
|
|
})
|
|
|
|
let dropTargetCleanup = () => {}
|
|
|
|
onMounted(async () => {
|
|
// Backward compatible
|
|
// Assign all properties of lg to window
|
|
window['LiteGraph'] = LiteGraph
|
|
window['LGraph'] = LGraph
|
|
window['LLink'] = LLink
|
|
window['LGraphNode'] = LGraphNode
|
|
window['LGraphGroup'] = LGraphGroup
|
|
window['DragAndScale'] = DragAndScale
|
|
window['LGraphCanvas'] = LGraphCanvas
|
|
window['ContextMenu'] = ContextMenu
|
|
window['LGraphBadge'] = LGraphBadge
|
|
|
|
comfyApp.vueAppReady = true
|
|
|
|
workspaceStore.spinner = true
|
|
await comfyApp.setup(canvasRef.value)
|
|
canvasStore.canvas = comfyApp.canvas
|
|
workspaceStore.spinner = false
|
|
|
|
window['app'] = comfyApp
|
|
window['graph'] = comfyApp.graph
|
|
|
|
dropTargetCleanup = dropTargetForElements({
|
|
element: canvasRef.value,
|
|
onDrop: (event) => {
|
|
const loc = event.location.current.input
|
|
const dndData = event.source.data
|
|
|
|
if (dndData.type === 'tree-explorer-node') {
|
|
const node = dndData.data as RenderedTreeExplorerNode
|
|
if (node.data instanceof ComfyNodeDefImpl) {
|
|
const nodeDef = node.data
|
|
// Add an offset on x to make sure after adding the node, the cursor
|
|
// is on the node (top left corner)
|
|
const pos = comfyApp.clientPosToCanvasPos([
|
|
loc.clientX - 20,
|
|
loc.clientY
|
|
])
|
|
comfyApp.addNodeOnGraph(nodeDef, { pos })
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
// Migrate legacy bookmarks
|
|
useNodeBookmarkStore().migrateLegacyBookmarks()
|
|
|
|
// Explicitly initialize nodeSearchService to avoid indexing delay when
|
|
// node search is triggered
|
|
useNodeDefStore().nodeSearchService.endsWithFilterStartSequence('')
|
|
|
|
// Non-blocking load of node frequencies
|
|
useNodeFrequencyStore().loadNodeFrequencies()
|
|
emit('ready')
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
dropTargetCleanup()
|
|
})
|
|
</script>
|