| import { app } from "../../../scripts/app.js"; |
| import { ComfyWidgets } from "../../../scripts/widgets.js"; |
|
|
| |
|
|
| app.registerExtension({ |
| name: "pysssss.ShowText", |
| async beforeRegisterNodeDef(nodeType, nodeData, app) { |
| if (nodeData.name === "ShowText|pysssss") { |
| function populate(text) { |
| if (this.widgets) { |
| const pos = this.widgets.findIndex((w) => w.name === "text"); |
| if (pos !== -1) { |
| for (let i = pos; i < this.widgets.length; i++) { |
| this.widgets[i].onRemove?.(); |
| } |
| this.widgets.length = pos; |
| } |
| } |
|
|
| for (const list of text) { |
| const w = ComfyWidgets["STRING"](this, "text", ["STRING", { multiline: true }], app).widget; |
| w.inputEl.readOnly = true; |
| w.inputEl.style.opacity = 0.6; |
| w.value = list; |
| } |
|
|
| requestAnimationFrame(() => { |
| const sz = this.computeSize(); |
| if (sz[0] < this.size[0]) { |
| sz[0] = this.size[0]; |
| } |
| if (sz[1] < this.size[1]) { |
| sz[1] = this.size[1]; |
| } |
| this.onResize?.(sz); |
| app.graph.setDirtyCanvas(true, false); |
| }); |
| } |
|
|
| |
| const onExecuted = nodeType.prototype.onExecuted; |
| nodeType.prototype.onExecuted = function (message) { |
| onExecuted?.apply(this, arguments); |
| populate.call(this, message.text); |
| }; |
|
|
| const onConfigure = nodeType.prototype.onConfigure; |
| nodeType.prototype.onConfigure = function () { |
| onConfigure?.apply(this, arguments); |
| if (this.widgets_values?.length) { |
| populate.call(this, this.widgets_values); |
| } |
| }; |
| } |
| }, |
| }); |
|
|