Add TS types / merge ComfyLGraphNode (#902)

* Add TS type for LGraphNodeConstructor

* Add TS type & move shared prop to parent

* Add TS types - Comfy augmentations

* nit - TS type

* Merge ComfyLGNode into existing augmentations

* nit - fix missed explicit type on import
This commit is contained in:
filtered
2024-09-21 19:18:27 +10:00
committed by GitHub
parent 88acabb355
commit c7f123766e
7 changed files with 42 additions and 42 deletions

View File

@@ -1,6 +1,6 @@
import { app, type ComfyApp } from '@/scripts/app'
import type { ComfyExtension } from '@/types/comfy'
import type { ComfyLGraphNode } from '@/types/comfyLGraphNode'
import type { LGraphNode } from '@comfyorg/litegraph'
import { LGraphBadge } from '@comfyorg/litegraph'
import { useSettingStore } from '@/stores/settingStore'
import { computed, ComputedRef, watch } from 'vue'
@@ -12,9 +12,8 @@ import type { Palette } from '@/types/colorPalette'
import type { ComfyNodeDef } from '@/types/apiTypes'
import { useNodeDefStore } from '@/stores/nodeDefStore'
function getNodeSource(node: ComfyLGraphNode): NodeSource | null {
const nodeDef = (node.constructor as typeof ComfyLGraphNode)
.nodeData as ComfyNodeDef
function getNodeSource(node: LGraphNode): NodeSource | null {
const nodeDef = node.constructor.nodeData
// Frontend-only nodes don't have nodeDef
if (!nodeDef) {
return null
@@ -23,29 +22,23 @@ function getNodeSource(node: ComfyLGraphNode): NodeSource | null {
return nodeDefStore.nodeDefsByName[nodeDef.name]?.nodeSource ?? null
}
function isCoreNode(node: ComfyLGraphNode) {
function isCoreNode(node: LGraphNode) {
return getNodeSource(node)?.type === NodeSourceType.Core
}
function badgeTextVisible(
node: ComfyLGraphNode,
badgeMode: NodeBadgeMode
): boolean {
function badgeTextVisible(node: LGraphNode, badgeMode: NodeBadgeMode): boolean {
return (
badgeMode === NodeBadgeMode.None ||
(isCoreNode(node) && badgeMode === NodeBadgeMode.HideBuiltIn)
)
}
function getNodeIdBadgeText(
node: ComfyLGraphNode,
nodeIdBadgeMode: NodeBadgeMode
) {
function getNodeIdBadgeText(node: LGraphNode, nodeIdBadgeMode: NodeBadgeMode) {
return badgeTextVisible(node, nodeIdBadgeMode) ? '' : `#${node.id}`
}
function getNodeSourceBadgeText(
node: ComfyLGraphNode,
node: LGraphNode,
nodeSourceBadgeMode: NodeBadgeMode
) {
const nodeSource = getNodeSource(node)
@@ -55,11 +48,11 @@ function getNodeSourceBadgeText(
}
function getNodeLifeCycleBadgeText(
node: ComfyLGraphNode,
node: LGraphNode,
nodeLifeCycleBadgeMode: NodeBadgeMode
) {
let text = ''
const nodeDef = (node.constructor as typeof ComfyLGraphNode).nodeData
const nodeDef = node.constructor.nodeData
// Frontend-only nodes don't have nodeDef
if (!nodeDef) {
@@ -118,7 +111,7 @@ class NodeBadgeExtension implements ComfyExtension {
})
}
nodeCreated(node: ComfyLGraphNode, app: ComfyApp) {
nodeCreated(node: LGraphNode, app: ComfyApp) {
node.badgePosition = BadgePosition.TopRight
// @ts-expect-error Disable ComfyUI-Manager's badge drawing by setting badge_enabled to true. Remove this when ComfyUI-Manager's badge drawing is removed.
node.badge_enabled = true

View File

@@ -378,7 +378,6 @@ app.registerExtension({
const nodeIds = Object.keys(app.canvas.selected_nodes)
for (let i = 0; i < nodeIds.length; i++) {
const node = app.graph.getNodeById(nodeIds[i])
// @ts-expect-error
const nodeData = node?.constructor.nodeData
let groupData = GroupNodeHandler.getGroupData(node)

View File

@@ -74,7 +74,6 @@ app.registerExtension({
const link = app.graph.links[linkId]
if (!link) return
const node = app.graph.getNodeById(link.origin_id)
// @ts-expect-error Nodes that extend LGraphNode will not have a static type property
const type = node.constructor.type
if (type === 'Reroute') {
if (node === this) {
@@ -113,7 +112,6 @@ app.registerExtension({
if (!link) continue
const node = app.graph.getNodeById(link.target_id)
// @ts-expect-error Nodes that extend LGraphNode will not have a static type property
const type = node.constructor.type
if (type === 'Reroute') {
@@ -179,7 +177,6 @@ app.registerExtension({
}
if (!targetWidget) {
targetWidget = targetNode.widgets?.find(
// @ts-expect-error fix widget types
(w) => w.name === targetInput.widget.name
)
}