|
|
|
import { app } from "../../scripts/app.js";
|
|
|
|
import { api } from "../../scripts/api.js";
|
|
|
|
|
|
|
|
function addMenuHandler(nodeType, cb) {
|
|
|
|
const getOpts = nodeType.prototype.getExtraMenuOptions;
|
|
|
|
nodeType.prototype.getExtraMenuOptions = function () {
|
|
|
|
const r = getOpts.apply(this, arguments);
|
|
|
|
cb.apply(this, arguments);
|
|
|
|
return r;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function distance(node1, node2) {
|
|
|
|
let dx = node1.pos[0] - node2.pos[0];
|
|
|
|
let dy = node1.pos[1] - node2.pos[1];
|
|
|
|
return Math.sqrt(dx * dx + dy * dy);
|
|
|
|
}
|
|
|
|
|
|
|
|
function lookup_nearest_nodes(node) {
|
|
|
|
let x = node.pos[0] + node.size[0]/2;
|
|
|
|
let y = node.pos[1] + node.size[1]/2;
|
|
|
|
|
|
|
|
let nearest_distance = Infinity;
|
|
|
|
let nearest_node = null;
|
|
|
|
for(let other of app.graph._nodes) {
|
|
|
|
if(other === node)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
let dist = distance(node, other);
|
|
|
|
if (dist < nearest_distance) {
|
|
|
|
nearest_distance = dist;
|
|
|
|
nearest_node = other;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nearest_node;
|
|
|
|
}
|
|
|
|
|
|
|
|
function copy_connections(src, dest) {
|
|
|
|
if(src.inputs && dest.inputs) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(src.outputs && dest.outputs) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function node_info_copy(src, dest) {
|
|
|
|
// copy input connections
|
|
|
|
for(let i in src.inputs) {
|
|
|
|
let input = src.inputs[i];
|
|
|
|
if(input.link) {
|
|
|
|
let link = app.graph.links[input.link];
|
|
|
|
let src_node = app.graph.getNodeById(link.origin_id);
|
|
|
|
src_node.connect(link.origin_slot, dest.id, input.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy output connections
|
|
|
|
let output_links = {};
|
|
|
|
for(let i in src.outputs) {
|
|
|
|
let output = src.outputs[i];
|
|
|
|
if(output.links) {
|
|
|
|
let links = [];
|
|
|
|
for(let j in output.links) {
|
|
|
|
links.push(app.graph.links[output.links[j]]);
|
|
|
|
}
|
|
|
|
output_links[output.name] = links;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(let i in dest.outputs) {
|
|
|
|
let links = output_links[dest.outputs[i].name];
|
|
|
|
if(links) {
|
|
|
|
for(let j in links) {
|
|
|
|
let link = links[j];
|
|
|
|
let target_node = app.graph.getNodeById(link.target_id);
|
|
|
|
dest.connect(parseInt(i), target_node, link.target_slot);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
app.graph.afterChange();
|
|
|
|
}
|
|
|
|
|
|
|
|
app.registerExtension({
|
|
|
|
name: "Comfy.Manager.NodeFixer",
|
|
|
|
|
|
|
|
async nodeCreated(node, app) {
|
|
|
|
let orig_dblClick = node.onDblClick;
|
|
|
|
node.onDblClick = () => {
|
|
|
|
orig_dblClick?.apply?.(this, arguments);
|
|
|
|
if(node.inputs && node.outputs && node.inputs.length == 0 && node.outputs.length == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
console.log(arguments);
|
|
|
|
let src_node = lookup_nearest_nodes(node);
|
|
|
|
node_info_copy(src_node, node);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeRegisterNodeDef(nodeType, nodeData, app) {
|
|
|
|
addMenuHandler(nodeType, function (_, options) {
|
|
|
|
options.push({
|
|
|
|
content: "Fix node (recreate)",
|
|
|
|
callback: () => {
|
|
|
|
let new_node = LiteGraph.createNode(nodeType.comfyClass);
|
|
|
|
new_node.pos = [this.pos[0], this.pos[1]];
|
|
|
|
app.canvas.graph.add(new_node, false);
|
|
|
|
node_info_copy(this, new_node);
|
|
|
|
app.canvas.graph.remove(this);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|