mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-31 13:29:55 +00:00
## Summary
Backport of #6965 onto core/1.33 (clean cherry-pick of 83f04490b).
## Testing
- pnpm typecheck
┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-6974-backport-core-1-33-fix-don-t-use-registry-when-only-checking-for-presence-of-missing-n-2b86d73d3650813dac37e224f857f296)
by [Unito](https://www.unito.io)
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { unref } from 'vue'
|
|
import type { MaybeRef } from 'vue'
|
|
|
|
import type {
|
|
LGraph,
|
|
LGraphNode,
|
|
Subgraph
|
|
} from '@/lib/litegraph/src/litegraph'
|
|
import type { ComfyNodeDefImpl } from '@/stores/nodeDefStore'
|
|
import { collectAllNodes } from '@/utils/graphTraversalUtil'
|
|
|
|
export type NodeDefLookup = Record<string, ComfyNodeDefImpl | undefined>
|
|
|
|
const isNodeMissingDefinition = (
|
|
node: LGraphNode,
|
|
nodeDefsByName: NodeDefLookup
|
|
) => {
|
|
const nodeName = node?.type
|
|
if (!nodeName) return false
|
|
return !nodeDefsByName[nodeName]
|
|
}
|
|
|
|
export const collectMissingNodes = (
|
|
graph: LGraph | Subgraph | null | undefined,
|
|
nodeDefsByName: MaybeRef<NodeDefLookup>
|
|
): LGraphNode[] => {
|
|
if (!graph) return []
|
|
const lookup = unref(nodeDefsByName)
|
|
return collectAllNodes(graph, (node) => isNodeMissingDefinition(node, lookup))
|
|
}
|
|
|
|
export const graphHasMissingNodes = (
|
|
graph: LGraph | Subgraph | null | undefined,
|
|
nodeDefsByName: MaybeRef<NodeDefLookup>
|
|
) => {
|
|
return collectMissingNodes(graph, nodeDefsByName).length > 0
|
|
}
|