mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-20 11:50:02 +08:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import type {Size} from "@comfyorg/frontend";
|
|
|
|
import {app} from "scripts/app.js";
|
|
import {NodeTypesString} from "./constants.js";
|
|
import {BaseFastGroupsModeChanger} from "./fast_groups_muter.js";
|
|
|
|
/**
|
|
* Fast Bypasser implementation that looks for groups in the workflow and adds toggles to mute them.
|
|
*/
|
|
export class FastGroupsBypasser extends BaseFastGroupsModeChanger {
|
|
static override type = NodeTypesString.FAST_GROUPS_BYPASSER;
|
|
static override title = NodeTypesString.FAST_GROUPS_BYPASSER;
|
|
override comfyClass = NodeTypesString.FAST_GROUPS_BYPASSER;
|
|
|
|
static override exposedActions = ["Bypass all", "Enable all", "Toggle all"];
|
|
|
|
protected override helpActions = "bypass and enable";
|
|
|
|
override readonly modeOn = LiteGraph.ALWAYS;
|
|
override readonly modeOff = 4; // Used by Comfy for "bypass"
|
|
|
|
constructor(title = FastGroupsBypasser.title) {
|
|
super(title);
|
|
this.onConstructed();
|
|
}
|
|
}
|
|
|
|
app.registerExtension({
|
|
name: "rgthree.FastGroupsBypasser",
|
|
registerCustomNodes() {
|
|
FastGroupsBypasser.setUp();
|
|
},
|
|
loadedGraphNode(node: FastGroupsBypasser) {
|
|
if (node.type == FastGroupsBypasser.title) {
|
|
node.tempSize = [...node.size] as Size;
|
|
}
|
|
},
|
|
});
|