mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-30 12:59:55 +00:00
* [refactor] Improve renderer architecture organization Building on PR #5388, this refines the renderer domain structure: **Key improvements:** - Group all transform utilities in `transform/` subdirectory for better cohesion - Move canvas state to dedicated `renderer/core/canvas/` domain - Consolidate coordinate system logic (TransformPane, useTransformState, sync utilities) **File organization:** - `renderer/core/canvas/canvasStore.ts` (was `stores/graphStore.ts`) - `renderer/core/layout/transform/` contains all coordinate system utilities - Transform sync utilities co-located with core transform logic This creates clearer domain boundaries and groups related functionality while building on the foundation established in PR #5388. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: Clean up linter-modified files * Fix import paths and clean up unused imports after rebase - Update all remaining @/stores/graphStore references to @/renderer/core/canvas/canvasStore - Remove unused imports from selection toolbox components - All tests pass, only reka-ui upstream issue remains in typecheck 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * [auto-fix] Apply ESLint and Prettier fixes --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: GitHub Action <action@github.com>
54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import { computed, ref, watchEffect } from 'vue'
|
|
|
|
import type { LGraphNode } from '@/lib/litegraph/src/litegraph'
|
|
import { useCanvasStore } from '@/renderer/core/canvas/canvasStore'
|
|
import { isLGraphNode } from '@/utils/litegraphUtil'
|
|
|
|
interface RefreshableItem {
|
|
refresh: () => Promise<void> | void
|
|
}
|
|
|
|
const isRefreshableWidget = (widget: unknown): widget is RefreshableItem =>
|
|
widget != null &&
|
|
typeof widget === 'object' &&
|
|
'refresh' in widget &&
|
|
typeof widget.refresh === 'function'
|
|
|
|
/**
|
|
* Tracks selected nodes and their refreshable widgets
|
|
*/
|
|
export const useRefreshableSelection = () => {
|
|
const graphStore = useCanvasStore()
|
|
const selectedNodes = ref<LGraphNode[]>([])
|
|
|
|
watchEffect(() => {
|
|
selectedNodes.value = graphStore.selectedItems.filter(isLGraphNode)
|
|
})
|
|
|
|
const refreshableWidgets = computed<RefreshableItem[]>(() =>
|
|
selectedNodes.value.flatMap((node) => {
|
|
if (!node.widgets) return []
|
|
const items: RefreshableItem[] = []
|
|
for (const widget of node.widgets) {
|
|
if (isRefreshableWidget(widget)) {
|
|
items.push(widget)
|
|
}
|
|
}
|
|
return items
|
|
})
|
|
)
|
|
|
|
const isRefreshable = computed(() => refreshableWidgets.value.length > 0)
|
|
|
|
async function refreshSelected() {
|
|
if (!isRefreshable.value) return
|
|
|
|
await Promise.all(refreshableWidgets.value.map((item) => item.refresh()))
|
|
}
|
|
|
|
return {
|
|
isRefreshable,
|
|
refreshSelected
|
|
}
|
|
}
|