widgetInputs.js 20.6 KB
Newer Older
pythongosssss's avatar
pythongosssss committed
1
import { ComfyWidgets, addValueControlWidgets } from "../../scripts/widgets.js";
2
import { app } from "../../scripts/app.js";
3
4

const CONVERTED_TYPE = "converted-widget";
5
const VALID_TYPES = ["STRING", "combo", "number", "BOOLEAN"];
6
const CONFIG = Symbol();
7
const GET_CONFIG = Symbol();
8
9
10
11
12
const TARGET = Symbol(); // Used for reroutes to specify the real target widget

export function getWidgetConfig(slot) {
	return slot.widget[CONFIG] ?? slot.widget[GET_CONFIG]();
}
13

14
15
16
17
18
function getConfig(widgetName) {
	const { nodeData } = this.constructor;
	return nodeData?.input?.required[widgetName] ?? nodeData?.input?.optional?.[widgetName];
}

19
function isConvertableWidget(widget, config) {
20
	return (VALID_TYPES.includes(widget.type) || VALID_TYPES.includes(config[0])) && !widget.options?.forceInput;
21
22
23
24
25
26
27
28
29
30
}

function hideWidget(node, widget, suffix = "") {
	widget.origType = widget.type;
	widget.origComputeSize = widget.computeSize;
	widget.origSerializeValue = widget.serializeValue;
	widget.computeSize = () => [0, -4]; // -4 is due to the gap litegraph adds between widgets automatically
	widget.type = CONVERTED_TYPE + suffix;
	widget.serializeValue = () => {
		// Prevent serializing the widget if we have no input linked
31
32
33
		if (!node.inputs) {
			return undefined;
		}
34
35
36
		let node_input = node.inputs.find((i) => i.widget?.name === widget.name);

		if (!node_input || !node_input.link) {
37
38
			return undefined;
		}
39
		return widget.origSerializeValue ? widget.origSerializeValue() : widget.value;
40
41
	};

42
	// Hide any linked widgets, e.g. seed+seedControl
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
	if (widget.linkedWidgets) {
		for (const w of widget.linkedWidgets) {
			hideWidget(node, w, ":" + widget.name);
		}
	}
}

function showWidget(widget) {
	widget.type = widget.origType;
	widget.computeSize = widget.origComputeSize;
	widget.serializeValue = widget.origSerializeValue;

	delete widget.origType;
	delete widget.origComputeSize;
	delete widget.origSerializeValue;

59
	// Hide any linked widgets, e.g. seed+seedControl
60
61
62
63
64
65
66
67
68
69
	if (widget.linkedWidgets) {
		for (const w of widget.linkedWidgets) {
			showWidget(w);
		}
	}
}

function convertToInput(node, widget, config) {
	hideWidget(node, widget);

pythongosssss's avatar
pythongosssss committed
70
	const { type } = getWidgetType(config);
71
72

	// Add input and store widget config for creating on primitive node
73
	const sz = node.size;
pythongosssss's avatar
pythongosssss committed
74
	node.addInput(widget.name, type, {
75
		widget: { name: widget.name, [GET_CONFIG]: () => config },
76
	});
77

78
79
80
81
	for (const widget of node.widgets) {
		widget.last_y += LiteGraph.NODE_SLOT_HEIGHT;
	}

82
83
	// Restore original size but grow if needed
	node.setSize([Math.max(sz[0], node.size[0]), Math.max(sz[1], node.size[1])]);
84
85
86
87
}

function convertToWidget(node, widget) {
	showWidget(widget);
88
	const sz = node.size;
89
	node.removeInput(node.inputs.findIndex((i) => i.widget?.name === widget.name));
90

91
92
93
94
	for (const widget of node.widgets) {
		widget.last_y -= LiteGraph.NODE_SLOT_HEIGHT;
	}

95
96
	// Restore original size but grow if needed
	node.setSize([Math.max(sz[0], node.size[0]), Math.max(sz[1], node.size[1])]);
97
98
}

pythongosssss's avatar
pythongosssss committed
99
function getWidgetType(config) {
100
101
102
103
104
	// Special handling for COMBO so we restrict links based on the entries
	let type = config[0];
	if (type instanceof Array) {
		type = "COMBO";
	}
pythongosssss's avatar
pythongosssss committed
105
	return { type };
106
107
}

108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
function isValidCombo(combo, obj) {
	// New input isnt a combo
	if (!(obj instanceof Array)) {
		console.log(`connection rejected: tried to connect combo to ${obj}`);
		return false;
	}
	// New imput combo has a different size
	if (combo.length !== obj.length) {
		console.log(`connection rejected: combo lists dont match`);
		return false;
	}
	// New input combo has different elements
	if (combo.find((v, i) => obj[i] !== v)) {
		console.log(`connection rejected: combo lists dont match`);
		return false;
	}

	return true;
}

128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
export function setWidgetConfig(slot, config, target) {
	if (!slot.widget) return;
	if (config) {
		slot.widget[GET_CONFIG] = () => config;
		slot.widget[TARGET] = target;
	} else {
		delete slot.widget;
	}

	if (slot.link) {
		const link = app.graph.links[slot.link];
		if (link) {
			const originNode = app.graph.getNodeById(link.origin_id);
			if (originNode.type === "PrimitiveNode") {
				if (config) {
					originNode.recreateWidget();
				} else if(!app.configuringGraph) {
					originNode.disconnectOutput(0);
					originNode.onLastDisconnect();
				}
			}
		}
	}
}

pythongosssss's avatar
pythongosssss committed
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
export function mergeIfValid(output, config2, forceUpdate, recreateWidget, config1) {
	if (!config1) {
		config1 = output.widget[CONFIG] ?? output.widget[GET_CONFIG]();
	}

	if (config1[0] instanceof Array) {
		if (!isValidCombo(config1[0], config2[0])) return false;
	} else if (config1[0] !== config2[0]) {
		// Types dont match
		console.log(`connection rejected: types dont match`, config1[0], config2[0]);
		return false;
	}

	const keys = new Set([...Object.keys(config1[1] ?? {}), ...Object.keys(config2[1] ?? {})]);

	let customConfig;
	const getCustomConfig = () => {
		if (!customConfig) {
			if (typeof structuredClone === "undefined") {
				customConfig = JSON.parse(JSON.stringify(config1[1] ?? {}));
			} else {
				customConfig = structuredClone(config1[1] ?? {});
			}
		}
		return customConfig;
	};

	const isNumber = config1[0] === "INT" || config1[0] === "FLOAT";
	for (const k of keys.values()) {
		if (k !== "default" && k !== "forceInput" && k !== "defaultInput") {
			let v1 = config1[1][k];
			let v2 = config2[1]?.[k];

			if (v1 === v2 || (!v1 && !v2)) continue;

			if (isNumber) {
				if (k === "min") {
					const theirMax = config2[1]?.["max"];
					if (theirMax != null && v1 > theirMax) {
						console.log("connection rejected: min > max", v1, theirMax);
						return false;
					}
					getCustomConfig()[k] = v1 == null ? v2 : v2 == null ? v1 : Math.max(v1, v2);
					continue;
				} else if (k === "max") {
					const theirMin = config2[1]?.["min"];
					if (theirMin != null && v1 < theirMin) {
						console.log("connection rejected: max < min", v1, theirMin);
						return false;
					}
					getCustomConfig()[k] = v1 == null ? v2 : v2 == null ? v1 : Math.min(v1, v2);
					continue;
				} else if (k === "step") {
					let step;
					if (v1 == null) {
						// No current step
						step = v2;
					} else if (v2 == null) {
						// No new step
						step = v1;
					} else {
						if (v1 < v2) {
							// Ensure v1 is larger for the mod
							const a = v2;
							v2 = v1;
							v1 = a;
						}
						if (v1 % v2) {
							console.log("connection rejected: steps not divisible", "current:", v1, "new:", v2);
							return false;
						}

						step = v1;
					}

					getCustomConfig()[k] = step;
					continue;
				}
			}

			console.log(`connection rejected: config ${k} values dont match`, v1, v2);
			return false;
		}
	}

	if (customConfig || forceUpdate) {
		if (customConfig) {
			output.widget[CONFIG] = [config1[0], customConfig];
		}

		const widget = recreateWidget?.call(this);
		// When deleting a node this can be null
		if (widget) {
			const min = widget.options.min;
			const max = widget.options.max;
			if (min != null && widget.value < min) widget.value = min;
			if (max != null && widget.value > max) widget.value = max;
			widget.callback(widget.value);
		}
	}

	return { customConfig };
}

257
258
259
260
261
262
263
264
265
266
267
268
app.registerExtension({
	name: "Comfy.WidgetInputs",
	async beforeRegisterNodeDef(nodeType, nodeData, app) {
		// Add menu options to conver to/from widgets
		const origGetExtraMenuOptions = nodeType.prototype.getExtraMenuOptions;
		nodeType.prototype.getExtraMenuOptions = function (_, options) {
			const r = origGetExtraMenuOptions ? origGetExtraMenuOptions.apply(this, arguments) : undefined;

			if (this.widgets) {
				let toInput = [];
				let toWidget = [];
				for (const w of this.widgets) {
269
270
271
					if (w.options?.forceInput) {
						continue;
					}
272
273
274
275
276
277
					if (w.type === CONVERTED_TYPE) {
						toWidget.push({
							content: `Convert ${w.name} to widget`,
							callback: () => convertToWidget(this, w),
						});
					} else {
278
						const config = getConfig.call(this, w.name) ?? [w.type, w.options || {}];
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
						if (isConvertableWidget(w, config)) {
							toInput.push({
								content: `Convert ${w.name} to input`,
								callback: () => convertToInput(this, w, config),
							});
						}
					}
				}
				if (toInput.length) {
					options.push(...toInput, null);
				}

				if (toWidget.length) {
					options.push(...toWidget, null);
				}
			}

			return r;
		};

299
300
301
302
303
		nodeType.prototype.onGraphConfigured = function () {
			if (!this.inputs) return;

			for (const input of this.inputs) {
				if (input.widget) {
304
305
					if (!input.widget[GET_CONFIG]) {
						input.widget[GET_CONFIG] = () => getConfig.call(this, input.widget.name);
306
307
					}

pythongosssss's avatar
pythongosssss committed
308
309
310
311
312
313
314
315
316
317
318
319
320
321
					// Cleanup old widget config
					if (input.widget.config) {
						if (input.widget.config[0] instanceof Array) {
							// If we are an old converted combo then replace the input type and the stored link data
							input.type = "COMBO";

							const link = app.graph.links[input.link];
							if (link) {
								link.type = input.type;
							}
						}
						delete input.widget.config;
					}

322
323
324
325
326
327
328
329
330
331
332
					const w = this.widgets.find((w) => w.name === input.widget.name);
					if (w) {
						hideWidget(this, w);
					} else {
						convertToWidget(this, input);
					}
				}
			}
		};

		const origOnNodeCreated = nodeType.prototype.onNodeCreated;
333
334
		nodeType.prototype.onNodeCreated = function () {
			const r = origOnNodeCreated ? origOnNodeCreated.apply(this) : undefined;
335
336
337

			// When node is created, convert any force/default inputs
			if (!app.configuringGraph && this.widgets) {
338
				for (const w of this.widgets) {
Chris's avatar
Chris committed
339
					if (w?.options?.forceInput || w?.options?.defaultInput) {
340
						const config = getConfig.call(this, w.name) ?? [w.type, w.options || {}];
341
342
343
344
						convertToInput(this, w, config);
					}
				}
			}
345

346
			return r;
347
		};
348

349
350
351
		const origOnConfigure = nodeType.prototype.onConfigure;
		nodeType.prototype.onConfigure = function () {
			const r = origOnConfigure ? origOnConfigure.apply(this, arguments) : undefined;
352
353
			if (!app.configuringGraph && this.inputs) {
				// On copy + paste of nodes, ensure that widget configs are set up
354
				for (const input of this.inputs) {
355
356
					if (input.widget && !input.widget[GET_CONFIG]) {
						input.widget[GET_CONFIG] = () => getConfig.call(this, input.widget.name);
357
358
359
360
						const w = this.widgets.find((w) => w.name === input.widget.name);
						if (w) {
							hideWidget(this, w);
						}
361
362
363
364
365
366
367
					}
				}
			}

			return r;
		};

368
369
370
371
372
373
374
375
376
		function isNodeAtPos(pos) {
			for (const n of app.graph._nodes) {
				if (n.pos[0] === pos[0] && n.pos[1] === pos[1]) {
					return true;
				}
			}
			return false;
		}

377
378
		// Double click a widget input to automatically attach a primitive
		const origOnInputDblClick = nodeType.prototype.onInputDblClick;
379
		const ignoreDblClick = Symbol();
380
381
382
		nodeType.prototype.onInputDblClick = function (slot) {
			const r = origOnInputDblClick ? origOnInputDblClick.apply(this, arguments) : undefined;

383
			const input = this.inputs[slot];
384
385
			if (!input.widget || !input[ignoreDblClick]) {
				// Not a widget input or already handled input
386
				if (!(input.type in ComfyWidgets) && !(input.widget[GET_CONFIG]?.()?.[0] instanceof Array)) {
387
388
					return r; //also Not a ComfyWidgets input or combo (do nothing)
				}
389
			}
390

391
392
393
			// Create a primitive node
			const node = LiteGraph.createNode("PrimitiveNode");
			app.graph.add(node);
394

395
396
397
398
			// Calculate a position that wont directly overlap another node
			const pos = [this.pos[0] - node.size[0] - 30, this.pos[1]];
			while (isNodeAtPos(pos)) {
				pos[1] += LiteGraph.NODE_TITLE_HEIGHT;
399
400
			}

401
402
403
404
405
406
407
408
409
410
			node.pos = pos;
			node.connect(0, this, slot);
			node.title = input.name;

			// Prevent adding duplicates due to triple clicking
			input[ignoreDblClick] = true;
			setTimeout(() => {
				delete input[ignoreDblClick];
			}, 300);

411
412
			return r;
		};
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434

		// Prevent connecting COMBO lists to converted inputs that dont match types
		const onConnectInput = nodeType.prototype.onConnectInput;
		nodeType.prototype.onConnectInput = function (targetSlot, type, output, originNode, originSlot) {
			const v = onConnectInput?.(this, arguments);
			// Not a combo, ignore
			if (type !== "COMBO") return v;
			// Primitive output, allow that to handle
			if (originNode.outputs[originSlot].widget) return v;

			// Ensure target is also a combo
			const targetCombo = this.inputs[targetSlot].widget?.[GET_CONFIG]?.()?.[0];
			if (!targetCombo || !(targetCombo instanceof Array)) return v;

			// Check they match
			const originConfig = originNode.constructor?.nodeData?.output?.[originSlot];
			if (!originConfig || !isValidCombo(targetCombo, originConfig)) {
				return false;
			}

			return v;
		};
435
436
437
438
439
440
441
442
443
	},
	registerCustomNodes() {
		class PrimitiveNode {
			constructor() {
				this.addOutput("connect to widget input", "*");
				this.serialize_widgets = true;
				this.isVirtualNode = true;
			}

pythongosssss's avatar
pythongosssss committed
444
			applyToGraph(extraLinks = []) {
445
446
				if (!this.outputs[0].links?.length) return;

447
448
449
450
451
452
453
454
455
456
457
458
459
460
				function get_links(node) {
					let links = [];
					for (const l of node.outputs[0].links) {
						const linkInfo = app.graph.links[l];
						const n = node.graph.getNodeById(linkInfo.target_id);
						if (n.type == "Reroute") {
							links = links.concat(get_links(n));
						} else {
							links.push(l);
						}
					}
					return links;
				}

pythongosssss's avatar
pythongosssss committed
461
				let links = [...get_links(this).map((l) => app.graph.links[l]), ...extraLinks];
462
				// For each output link copy our value over the original widget value
pythongosssss's avatar
pythongosssss committed
463
				for (const linkInfo of links) {
464
465
					const node = this.graph.getNodeById(linkInfo.target_id);
					const input = node.inputs[linkInfo.target_slot];
466
467
468
469
470
471
472
473
474
475
476
477
478
479
					let widget;
					if (input.widget[TARGET]) {
						widget = input.widget[TARGET];
					} else {
						const widgetName = input.widget.name;
						if (widgetName) {
							widget = node.widgets.find((w) => w.name === widgetName);
						}
					}

					if (widget) {
						widget.value = this.widgets[0].value;
						if (widget.callback) {
							widget.callback(widget.value, app.canvas, node, app.canvas.graph_mouse, {});
480
481
482
483
484
						}
					}
				}
			}

485
486
487
			refreshComboInNode() {
				const widget = this.widgets?.[0];
				if (widget?.type === "combo") {
488
					widget.options.values = this.outputs[0].widget[GET_CONFIG]()[0];
489
490
491
492
493
494
495
496
497
498

					if (!widget.options.values.includes(widget.value)) {
						widget.value = widget.options.values[0];
						widget.callback(widget.value);
					}
				}
			}

			onAfterGraphConfigured() {
				if (this.outputs[0].links?.length && !this.widgets?.length) {
499
					if (!this.#onFirstConnection()) return;
500
501

					// Populate widget values from config data
502
503
504
505
506
507
508
					if (this.widgets) {
						for (let i = 0; i < this.widgets_values.length; i++) {
							const w = this.widgets[i];
							if (w) {
								w.value = this.widgets_values[i];
							}
						}
509
					}
510
511
512

					// Merge values if required
					this.#mergeWidgetConfig();
513
514
515
				}
			}

516
			onConnectionsChange(_, index, connected) {
517
518
519
520
521
				if (app.configuringGraph) {
					// Dont run while the graph is still setting up
					return;
				}

522
				const links = this.outputs[0].links;
523
				if (connected) {
524
					if (links?.length && !this.widgets?.length) {
525
						this.#onFirstConnection();
526
					}
527
528
529
530
531
				} else {
					// We may have removed a link that caused the constraints to change
					this.#mergeWidgetConfig();

					if (!links?.length) {
532
						this.onLastDisconnect();
533
					}
534
535
536
537
538
539
				}
			}

			onConnectOutput(slot, type, input, target_node, target_slot) {
				// Fires before the link is made allowing us to reject it if it isn't valid
				// No widget, we cant connect
540
541
542
				if (!input.widget) {
					if (!(input.type in ComfyWidgets)) return false;
				}
543
544

				if (this.outputs[slot].links?.length) {
pythongosssss's avatar
pythongosssss committed
545
546
547
548
549
550
					const valid = this.#isValidConnection(input);
					if (valid) {
						// On connect of additional outputs, copy our value to their widget
						this.applyToGraph([{ target_id: target_node.id, target_slot }]);
					}
					return valid;
551
552
553
				}
			}

554
			#onFirstConnection(recreating) {
555
				// First connection can fire before the graph is ready on initial load so random things can be missing
556
557
558
559
				if (!this.outputs[0].links) {
					this.onLastDisconnect();
					return;
				}
560
561
562
563
564
565
566
567
568
569
				const linkId = this.outputs[0].links[0];
				const link = this.graph.links[linkId];
				if (!link) return;

				const theirNode = this.graph.getNodeById(link.target_id);
				if (!theirNode || !theirNode.inputs) return;

				const input = theirNode.inputs[link.target_slot];
				if (!input) return;

570
				let widget;
571
572
				if (!input.widget) {
					if (!(input.type in ComfyWidgets)) return;
573
					widget = { name: input.name, [GET_CONFIG]: () => [input.type, {}] }; //fake widget
574
				} else {
575
					widget = input.widget;
576
577
				}

578
579
580
581
				const config = widget[GET_CONFIG]?.();
				if (!config) return;

				const { type } = getWidgetType(config);
582
				// Update our output to restrict to the widget type
pythongosssss's avatar
pythongosssss committed
583
				this.outputs[0].type = type;
584
585
586
				this.outputs[0].name = type;
				this.outputs[0].widget = widget;

587
				this.#createWidget(widget[CONFIG] ?? config, theirNode, widget.name, recreating, widget[TARGET]);
588
589
			}

590
			#createWidget(inputData, node, widgetName, recreating, targetWidget) {
591
592
593
594
595
596
597
598
599
600
				let type = inputData[0];

				if (type instanceof Array) {
					type = "COMBO";
				}

				let widget;
				if (type in ComfyWidgets) {
					widget = (ComfyWidgets[type](this, "value", inputData, app) || {}).widget;
				} else {
601
					widget = this.addWidget(type, "value", null, () => {}, {});
602
603
				}

604
605
606
				if (targetWidget) {
					widget.value = targetWidget.value;
				} else if (node?.widgets && widget) {
607
608
609
610
611
612
					const theirWidget = node.widgets.find((w) => w.name === widgetName);
					if (theirWidget) {
						widget.value = theirWidget.value;
					}
				}

pythongosssss's avatar
pythongosssss committed
613
				if (!inputData?.[1]?.control_after_generate && (widget.type === "number" || widget.type === "combo")) {
614
615
616
617
					let control_value = this.widgets_values?.[1];
					if (!control_value) {
						control_value = "fixed";
					}
pythongosssss's avatar
pythongosssss committed
618
					addValueControlWidgets(this, widget, control_value, undefined, inputData);
pythongosssss's avatar
pythongosssss committed
619
					let filter = this.widgets_values?.[2];
620
					if (filter && this.widgets.length === 3) {
pythongosssss's avatar
pythongosssss committed
621
622
						this.widgets[2].value = filter;
					}
623
624
				}

pythongosssss's avatar
pythongosssss committed
625
626
627
628
629
630
631
632
633
634
				// When our value changes, update other widgets to reflect our changes
				// e.g. so LoadImage shows correct image
				const callback = widget.callback;
				const self = this;
				widget.callback = function () {
					const r = callback ? callback.apply(this, arguments) : undefined;
					self.applyToGraph();
					return r;
				};

635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
				if (!recreating) {
					// Grow our node if required
					const sz = this.computeSize();
					if (this.size[0] < sz[0]) {
						this.size[0] = sz[0];
					}
					if (this.size[1] < sz[1]) {
						this.size[1] = sz[1];
					}

					requestAnimationFrame(() => {
						if (this.onResize) {
							this.onResize(this.size);
						}
					});
650
				}
651
652
			}

653
654
			recreateWidget() {
				const values = this.widgets?.map((w) => w.value);
655
656
				this.#removeWidgets();
				this.#onFirstConnection(true);
657
658
659
660
				if (values?.length) {
					for (let i = 0; i < this.widgets?.length; i++) this.widgets[i].value = values[i];
				}
				return this.widgets?.[0];
661
662
663
664
665
666
667
668
669
670
			}

			#mergeWidgetConfig() {
				// Merge widget configs if the node has multiple outputs
				const output = this.outputs[0];
				const links = output.links;

				const hasConfig = !!output.widget[CONFIG];
				if (hasConfig) {
					delete output.widget[CONFIG];
671
672
				}

673
674
675
				if (links?.length < 2 && hasConfig) {
					// Copy the widget options from the source
					if (links.length) {
676
						this.recreateWidget();
677
					}
678
679
680
681

					return;
				}

682
				const config1 = output.widget[GET_CONFIG]();
683
684
685
686
687
688
689
690
691
692
693
694
695
				const isNumber = config1[0] === "INT" || config1[0] === "FLOAT";
				if (!isNumber) return;

				for (const linkId of links) {
					const link = app.graph.links[linkId];
					if (!link) continue; // Can be null when removing a node

					const theirNode = app.graph.getNodeById(link.target_id);
					const theirInput = theirNode.inputs[link.target_slot];

					// Call is valid connection so it can merge the configs when validating
					this.#isValidConnection(theirInput, hasConfig);
				}
696
697
			}

698
			#isValidConnection(input, forceUpdate) {
699
				// Only allow connections where the configs match
700
				const output = this.outputs[0];
701
				const config2 = input.widget[GET_CONFIG]();
702
				return !!mergeIfValid.call(this, output, config2, forceUpdate, this.recreateWidget);
703
704
			}

705
			#removeWidgets() {
706
707
708
709
710
711
712
713
714
715
				if (this.widgets) {
					// Allow widgets to cleanup
					for (const w of this.widgets) {
						if (w.onRemove) {
							w.onRemove();
						}
					}
					this.widgets.length = 0;
				}
			}
716

717
			onLastDisconnect() {
718
719
720
721
722
723
724
725
				// We cant remove + re-add the output here as if you drag a link over the same link
				// it removes, then re-adds, causing it to break
				this.outputs[0].type = "*";
				this.outputs[0].name = "connect to widget input";
				delete this.outputs[0].widget;

				this.#removeWidgets();
			}
726
727
728
729
730
731
732
733
734
735
736
		}

		LiteGraph.registerNodeType(
			"PrimitiveNode",
			Object.assign(PrimitiveNode, {
				title: "Primitive",
			})
		);
		PrimitiveNode.category = "utils";
	},
});