Use npm package @ComfyOrg/litegraph (#89)
* Use npm to manage litegraph * Fix merge issues caused by BetaUI change * Switch to @comfyorg/litegraph * Fix various import * Fix css apply order bug * Fix package lock * Update litegraph * Update litegraph * Update browsertest expectations * Update test expectations [skip ci] * Fix default view screenshot --------- Co-authored-by: github-actions <github-actions@github.com>
@@ -11,10 +11,10 @@ Front-end of [ComfyUI](https://github.com/comfyanonymous/ComfyUI) modernized. Th
|
|||||||
- Added a shim layer to be backward compatible with the existing extension system. https://github.com/huchenlei/ComfyUI_frontend/pull/15
|
- Added a shim layer to be backward compatible with the existing extension system. https://github.com/huchenlei/ComfyUI_frontend/pull/15
|
||||||
- Front-end dev server.
|
- Front-end dev server.
|
||||||
- Zod schema for input validation on ComfyUI workflow.
|
- Zod schema for input validation on ComfyUI workflow.
|
||||||
|
- Make litegraph a npm dependency.
|
||||||
|
|
||||||
### What to be done
|
### What to be done
|
||||||
|
|
||||||
- Make litegraph a npm dependency.
|
|
||||||
- Replace the existing ComfyUI front-end impl.
|
- Replace the existing ComfyUI front-end impl.
|
||||||
- Turn on `strict` on `tsconfig.json`.
|
- Turn on `strict` on `tsconfig.json`.
|
||||||
- Introduce react to start managing part of the UI.
|
- Introduce react to start managing part of the UI.
|
||||||
|
|||||||
@@ -38,6 +38,8 @@ export class ComfyPage {
|
|||||||
|
|
||||||
async resetView() {
|
async resetView() {
|
||||||
await this.resetViewButton.click();
|
await this.resetViewButton.click();
|
||||||
|
// Avoid "Reset View" button highlight.
|
||||||
|
await this.page.mouse.move(10, 10);
|
||||||
await this.nextFrame();
|
await this.nextFrame();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 100 KiB |
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 104 KiB |
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 97 KiB |
|
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 97 KiB |
|
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 93 KiB |
@@ -12,12 +12,6 @@
|
|||||||
font-family: 'Roboto Mono', 'Noto Color Emoji';
|
font-family: 'Roboto Mono', 'Noto Color Emoji';
|
||||||
}
|
}
|
||||||
</style> -->
|
</style> -->
|
||||||
<link rel="stylesheet" type="text/css" href="/lib/litegraph.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="/user.css" />
|
|
||||||
<link rel="stylesheet" type="text/css" href="/materialdesignicons.min.css" />
|
|
||||||
<script type="text/javascript" src="/lib/litegraph.core.js"></script>
|
|
||||||
<script type="text/javascript" src="/lib/litegraph.extensions.js" defer></script>
|
|
||||||
<script type="module">
|
<script type="module">
|
||||||
console.log("ComfyUI Front-end version:", __COMFYUI_FRONTEND_VERSION__);
|
console.log("ComfyUI Front-end version:", __COMFYUI_FRONTEND_VERSION__);
|
||||||
import { app } from "./src/scripts/app";
|
import { app } from "./src/scripts/app";
|
||||||
@@ -27,6 +21,8 @@
|
|||||||
window.graph = app.graph;
|
window.graph = app.graph;
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/user.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="/materialdesignicons.min.css" />
|
||||||
</head>
|
</head>
|
||||||
<body class="litegraph">
|
<body class="litegraph">
|
||||||
<div id="comfy-user-selection" class="comfy-user-selection" style="display: none;">
|
<div id="comfy-user-selection" class="comfy-user-selection" style="display: none;">
|
||||||
|
|||||||
1147
package-lock.json
generated
@@ -37,6 +37,7 @@
|
|||||||
"zip-dir": "^2.0.0"
|
"zip-dir": "^2.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@comfyorg/litegraph": "^0.7.20",
|
||||||
"dotenv": "^16.4.5",
|
"dotenv": "^16.4.5",
|
||||||
"zod": "^3.23.8",
|
"zod": "^3.23.8",
|
||||||
"zod-validation-error": "^3.3.0"
|
"zod-validation-error": "^3.3.0"
|
||||||
@@ -47,4 +48,4 @@
|
|||||||
"git add"
|
"git add"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
@import url("scripts/ui/menu/menu.css");
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--fg-color: #000;
|
--fg-color: #000;
|
||||||
--bg-color: #fff;
|
--bg-color: #fff;
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
import { $el } from "../../scripts/ui";
|
import { $el } from "../../scripts/ui";
|
||||||
import type { ColorPalettes } from "/types/colorPalette";
|
import type { ColorPalettes } from "/types/colorPalette";
|
||||||
|
import { LGraphCanvas, LiteGraph } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
// Manage color palettes
|
// Manage color palettes
|
||||||
|
|
||||||
@@ -427,6 +428,32 @@ const els: { select: HTMLSelectElement | null } = {
|
|||||||
// const ctxMenu = LiteGraph.ContextMenu;
|
// const ctxMenu = LiteGraph.ContextMenu;
|
||||||
app.registerExtension({
|
app.registerExtension({
|
||||||
name: id,
|
name: id,
|
||||||
|
init() {
|
||||||
|
/**
|
||||||
|
* Changes the background color of the canvas.
|
||||||
|
*
|
||||||
|
* @method updateBackground
|
||||||
|
* @param {image} String
|
||||||
|
* @param {clearBackgroundColor} String
|
||||||
|
*/
|
||||||
|
// @ts-ignore
|
||||||
|
LGraphCanvas.prototype.updateBackground = function (
|
||||||
|
image,
|
||||||
|
clearBackgroundColor
|
||||||
|
) {
|
||||||
|
this._bg_img = new Image();
|
||||||
|
this._bg_img.name = image;
|
||||||
|
this._bg_img.src = image;
|
||||||
|
this._bg_img.onload = () => {
|
||||||
|
this.draw(true, true);
|
||||||
|
};
|
||||||
|
this.background_image = image;
|
||||||
|
|
||||||
|
this.clear_background = true;
|
||||||
|
this.clear_background_color = clearBackgroundColor;
|
||||||
|
this._pattern = null;
|
||||||
|
};
|
||||||
|
},
|
||||||
addCustomNodeDefs(node_defs) {
|
addCustomNodeDefs(node_defs) {
|
||||||
const sortObjectKeys = (unordered) => {
|
const sortObjectKeys = (unordered) => {
|
||||||
return Object.keys(unordered)
|
return Object.keys(unordered)
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { LiteGraph, LGraphCanvas } from "@comfyorg/litegraph";
|
||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
|
|
||||||
// Adds filtering to combo context menus
|
// Adds filtering to combo context menus
|
||||||
|
|||||||
@@ -2,7 +2,8 @@ import { app } from "../../scripts/app";
|
|||||||
import { api } from "../../scripts/api";
|
import { api } from "../../scripts/api";
|
||||||
import { mergeIfValid } from "./widgetInputs";
|
import { mergeIfValid } from "./widgetInputs";
|
||||||
import { ManageGroupDialog } from "./groupNodeManage";
|
import { ManageGroupDialog } from "./groupNodeManage";
|
||||||
import type { LGraphNode } from "/types/litegraph";
|
import type { LGraphNode } from "@comfyorg/litegraph";
|
||||||
|
import { LGraphCanvas, LiteGraph } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
const GROUP = Symbol();
|
const GROUP = Symbol();
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,11 @@ import { DraggableList } from "../../scripts/ui/draggableList";
|
|||||||
import { GroupNodeConfig, GroupNodeHandler } from "./groupNode";
|
import { GroupNodeConfig, GroupNodeHandler } from "./groupNode";
|
||||||
import "./groupNodeManage.css";
|
import "./groupNodeManage.css";
|
||||||
import { app, type ComfyApp } from "../../scripts/app";
|
import { app, type ComfyApp } from "../../scripts/app";
|
||||||
import type { LGraphNode, LGraphNodeConstructor } from "/types/litegraph";
|
import {
|
||||||
|
LiteGraph,
|
||||||
|
type LGraphNode,
|
||||||
|
type LGraphNodeConstructor,
|
||||||
|
} from "@comfyorg/litegraph";
|
||||||
|
|
||||||
const ORDER: symbol = Symbol();
|
const ORDER: symbol = Symbol();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
|
import { LGraphCanvas, LiteGraph } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
function setNodeMode(node, mode) {
|
function setNodeMode(node, mode) {
|
||||||
node.mode = mode;
|
node.mode = mode;
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { LiteGraph } from "@comfyorg/litegraph";
|
||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
|
|
||||||
// Inverts the scrolling of context menus
|
// Inverts the scrolling of context menus
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
|
import { LiteGraph } from "@comfyorg/litegraph";
|
||||||
const id = "Comfy.LinkRenderMode";
|
const id = "Comfy.LinkRenderMode";
|
||||||
const ext = {
|
const ext = {
|
||||||
name: id,
|
name: id,
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import { app } from "../../scripts/app";
|
|||||||
import { api } from "../../scripts/api";
|
import { api } from "../../scripts/api";
|
||||||
import { ComfyDialog, $el } from "../../scripts/ui";
|
import { ComfyDialog, $el } from "../../scripts/ui";
|
||||||
import { GroupNodeConfig, GroupNodeHandler } from "./groupNode";
|
import { GroupNodeConfig, GroupNodeHandler } from "./groupNode";
|
||||||
|
import { LGraphCanvas } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
// Adds the ability to save and add multiple nodes as a template
|
// Adds the ability to save and add multiple nodes as a template
|
||||||
// To save:
|
// To save:
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { LiteGraph, LGraphCanvas } from "@comfyorg/litegraph";
|
||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
import { ComfyWidgets } from "../../scripts/widgets";
|
import { ComfyWidgets } from "../../scripts/widgets";
|
||||||
// Node that add notes to your project
|
// Node that add notes to your project
|
||||||
@@ -8,11 +9,8 @@ app.registerExtension({
|
|||||||
class NoteNode {
|
class NoteNode {
|
||||||
static category: string;
|
static category: string;
|
||||||
|
|
||||||
// @ts-ignore
|
|
||||||
color = LGraphCanvas.node_colors.yellow.color;
|
color = LGraphCanvas.node_colors.yellow.color;
|
||||||
// @ts-ignore
|
|
||||||
bgcolor = LGraphCanvas.node_colors.yellow.bgcolor;
|
bgcolor = LGraphCanvas.node_colors.yellow.bgcolor;
|
||||||
// @ts-ignore
|
|
||||||
groupcolor = LGraphCanvas.node_colors.yellow.groupcolor;
|
groupcolor = LGraphCanvas.node_colors.yellow.groupcolor;
|
||||||
properties: { text: string };
|
properties: { text: string };
|
||||||
serialize_widgets: boolean;
|
serialize_widgets: boolean;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
import { mergeIfValid, getWidgetConfig, setWidgetConfig } from "./widgetInputs";
|
import { mergeIfValid, getWidgetConfig, setWidgetConfig } from "./widgetInputs";
|
||||||
|
import { LiteGraph, LGraphCanvas } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
// Node that allows you to redirect connections for cleaner graphs
|
// Node that allows you to redirect connections for cleaner graphs
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
|
import { LGraphCanvas, LiteGraph } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
let touchZooming;
|
let touchZooming;
|
||||||
let touchCount = 0;
|
let touchCount = 0;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
import { ComfyWidgets } from "../../scripts/widgets";
|
import { ComfyWidgets } from "../../scripts/widgets";
|
||||||
|
import { LiteGraph } from "@comfyorg/litegraph";
|
||||||
// Adds defaults for quickly adding nodes with middle click on the input/output
|
// Adds defaults for quickly adding nodes with middle click on the input/output
|
||||||
|
|
||||||
app.registerExtension({
|
app.registerExtension({
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
|
import {
|
||||||
|
LGraphCanvas,
|
||||||
|
LGraphNode,
|
||||||
|
LGraphGroup,
|
||||||
|
LiteGraph,
|
||||||
|
} from "@comfyorg/litegraph";
|
||||||
|
|
||||||
// Shift + drag/resize to snap to grid
|
// Shift + drag/resize to snap to grid
|
||||||
|
|
||||||
@@ -77,12 +83,14 @@ app.registerExtension({
|
|||||||
|
|
||||||
let w, h;
|
let w, h;
|
||||||
if (node.flags.collapsed) {
|
if (node.flags.collapsed) {
|
||||||
|
// @ts-ignore
|
||||||
w = node._collapsed_width;
|
w = node._collapsed_width;
|
||||||
h = LiteGraph.NODE_TITLE_HEIGHT;
|
h = LiteGraph.NODE_TITLE_HEIGHT;
|
||||||
shiftY -= LiteGraph.NODE_TITLE_HEIGHT;
|
shiftY -= LiteGraph.NODE_TITLE_HEIGHT;
|
||||||
} else {
|
} else {
|
||||||
w = node.size[0];
|
w = node.size[0];
|
||||||
h = node.size[1];
|
h = node.size[1];
|
||||||
|
// @ts-ignore
|
||||||
let titleMode = node.constructor.title_mode;
|
let titleMode = node.constructor.title_mode;
|
||||||
if (
|
if (
|
||||||
titleMode !== LiteGraph.TRANSPARENT_TITLE &&
|
titleMode !== LiteGraph.TRANSPARENT_TITLE &&
|
||||||
@@ -105,7 +113,7 @@ app.registerExtension({
|
|||||||
* The currently moving, selected group only. Set after the `selected_group` has actually started
|
* The currently moving, selected group only. Set after the `selected_group` has actually started
|
||||||
* moving.
|
* moving.
|
||||||
*/
|
*/
|
||||||
let selectedAndMovingGroup = null;
|
let selectedAndMovingGroup: LGraphGroup | null = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles moving a group; tracking when a group has been moved (to show the ghost in `drawGroups`
|
* Handles moving a group; tracking when a group has been moved (to show the ghost in `drawGroups`
|
||||||
@@ -154,13 +162,16 @@ app.registerExtension({
|
|||||||
LGraphCanvas.prototype.drawGroups = function (canvas, ctx) {
|
LGraphCanvas.prototype.drawGroups = function (canvas, ctx) {
|
||||||
if (this.selected_group && app.shiftDown) {
|
if (this.selected_group && app.shiftDown) {
|
||||||
if (this.selected_group_resizing) {
|
if (this.selected_group_resizing) {
|
||||||
|
// @ts-ignore
|
||||||
roundVectorToGrid(this.selected_group.size);
|
roundVectorToGrid(this.selected_group.size);
|
||||||
} else if (selectedAndMovingGroup) {
|
} else if (selectedAndMovingGroup) {
|
||||||
|
// @ts-ignore
|
||||||
const [x, y] = roundVectorToGrid([...selectedAndMovingGroup.pos]);
|
const [x, y] = roundVectorToGrid([...selectedAndMovingGroup.pos]);
|
||||||
const f = ctx.fillStyle;
|
const f = ctx.fillStyle;
|
||||||
const s = ctx.strokeStyle;
|
const s = ctx.strokeStyle;
|
||||||
ctx.fillStyle = "rgba(100, 100, 100, 0.33)";
|
ctx.fillStyle = "rgba(100, 100, 100, 0.33)";
|
||||||
ctx.strokeStyle = "rgba(100, 100, 100, 0.66)";
|
ctx.strokeStyle = "rgba(100, 100, 100, 0.66)";
|
||||||
|
// @ts-ignore
|
||||||
ctx.rect(x, y, ...selectedAndMovingGroup.size);
|
ctx.rect(x, y, ...selectedAndMovingGroup.size);
|
||||||
ctx.fill();
|
ctx.fill();
|
||||||
ctx.stroke();
|
ctx.stroke();
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
import { api } from "../../scripts/api";
|
import { api } from "../../scripts/api";
|
||||||
import type { IWidget } from "/types/litegraph";
|
import type { IWidget } from "@comfyorg/litegraph";
|
||||||
import type { DOMWidget } from "/scripts/domWidget";
|
import type { DOMWidget } from "/scripts/domWidget";
|
||||||
import { ComfyNodeDef } from "/types/apiTypes";
|
import { ComfyNodeDef } from "/types/apiTypes";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { ComfyWidgets, addValueControlWidgets } from "../../scripts/widgets";
|
import { ComfyWidgets, addValueControlWidgets } from "../../scripts/widgets";
|
||||||
import { app } from "../../scripts/app";
|
import { app } from "../../scripts/app";
|
||||||
import { applyTextReplacements } from "../../scripts/utils";
|
import { applyTextReplacements } from "../../scripts/utils";
|
||||||
|
import { LiteGraph } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
const CONVERTED_TYPE = "converted-widget";
|
const CONVERTED_TYPE = "converted-widget";
|
||||||
const VALID_TYPES = ["STRING", "combo", "number", "BOOLEAN"];
|
const VALID_TYPES = ["STRING", "combo", "number", "BOOLEAN"];
|
||||||
|
|||||||
@@ -1,693 +0,0 @@
|
|||||||
/* this CSS contains only the basic CSS needed to run the app and use it */
|
|
||||||
|
|
||||||
.lgraphcanvas {
|
|
||||||
/*cursor: crosshair;*/
|
|
||||||
user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
outline: none;
|
|
||||||
font-family: Tahoma, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lgraphcanvas * {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litecontextmenu {
|
|
||||||
font-family: Tahoma, sans-serif;
|
|
||||||
position: fixed;
|
|
||||||
top: 100px;
|
|
||||||
left: 100px;
|
|
||||||
min-width: 100px;
|
|
||||||
color: #aaf;
|
|
||||||
padding: 0;
|
|
||||||
box-shadow: 0 0 10px black !important;
|
|
||||||
background-color: #2e2e2e !important;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litecontextmenu.dark {
|
|
||||||
background-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litecontextmenu .litemenu-title img {
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-left: 2px;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litecontextmenu .litemenu-entry {
|
|
||||||
margin: 2px;
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litecontextmenu .litemenu-entry.submenu {
|
|
||||||
background-color: #2e2e2e !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litecontextmenu.dark .litemenu-entry.submenu {
|
|
||||||
background-color: #000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenubar ul {
|
|
||||||
font-family: Tahoma, sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenubar li {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #999;
|
|
||||||
display: inline-block;
|
|
||||||
min-width: 50px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenubar li:hover {
|
|
||||||
background-color: #777;
|
|
||||||
color: #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litegraph .litemenubar-panel {
|
|
||||||
position: absolute;
|
|
||||||
top: 5px;
|
|
||||||
left: 5px;
|
|
||||||
min-width: 100px;
|
|
||||||
background-color: #444;
|
|
||||||
box-shadow: 0 0 3px black;
|
|
||||||
padding: 4px;
|
|
||||||
border-bottom: 2px solid #aaf;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry,
|
|
||||||
.litemenu-title {
|
|
||||||
font-size: 12px;
|
|
||||||
color: #aaa;
|
|
||||||
padding: 0 0 0 4px;
|
|
||||||
margin: 2px;
|
|
||||||
padding-left: 2px;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry .icon {
|
|
||||||
display: inline-block;
|
|
||||||
width: 12px;
|
|
||||||
height: 12px;
|
|
||||||
margin: 2px;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry.checked .icon {
|
|
||||||
background-color: #aaf;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry .more {
|
|
||||||
float: right;
|
|
||||||
padding-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry.disabled {
|
|
||||||
opacity: 0.5;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry.separator {
|
|
||||||
display: block;
|
|
||||||
border-top: 1px solid #333;
|
|
||||||
border-bottom: 1px solid #666;
|
|
||||||
width: 100%;
|
|
||||||
height: 0px;
|
|
||||||
margin: 3px 0 2px 0;
|
|
||||||
background-color: transparent;
|
|
||||||
padding: 0 !important;
|
|
||||||
cursor: default !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry.has_submenu {
|
|
||||||
border-right: 2px solid cyan;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-title {
|
|
||||||
color: #dde;
|
|
||||||
background-color: #111;
|
|
||||||
margin: 0;
|
|
||||||
padding: 2px;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry:hover:not(.disabled):not(.separator) {
|
|
||||||
background-color: #444 !important;
|
|
||||||
color: #eee;
|
|
||||||
transition: all 0.2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry .property_name {
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
min-width: 80px;
|
|
||||||
min-height: 1.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .litemenu-entry .property_value {
|
|
||||||
display: inline-block;
|
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
|
||||||
text-align: right;
|
|
||||||
min-width: 80px;
|
|
||||||
min-height: 1.2em;
|
|
||||||
vertical-align: middle;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litesearchbox {
|
|
||||||
font-family: Tahoma, sans-serif;
|
|
||||||
position: absolute;
|
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
|
||||||
padding-top: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litesearchbox input,
|
|
||||||
.litegraph.litesearchbox select {
|
|
||||||
margin-top: 3px;
|
|
||||||
min-width: 60px;
|
|
||||||
min-height: 1.5em;
|
|
||||||
background-color: black;
|
|
||||||
border: 0;
|
|
||||||
color: white;
|
|
||||||
padding-left: 10px;
|
|
||||||
margin-right: 5px;
|
|
||||||
max-width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litesearchbox .name {
|
|
||||||
display: inline-block;
|
|
||||||
min-width: 60px;
|
|
||||||
min-height: 1.5em;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.litesearchbox .helper {
|
|
||||||
overflow: auto;
|
|
||||||
max-height: 200px;
|
|
||||||
margin-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.lite-search-item {
|
|
||||||
font-family: Tahoma, sans-serif;
|
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
|
||||||
color: white;
|
|
||||||
padding-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.lite-search-item.not_in_filter{
|
|
||||||
/*background-color: rgba(50, 50, 50, 0.5);*/
|
|
||||||
/*color: #999;*/
|
|
||||||
color: #B99;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.lite-search-item.generic_type{
|
|
||||||
/*background-color: rgba(50, 50, 50, 0.5);*/
|
|
||||||
/*color: #DD9;*/
|
|
||||||
color: #999;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.lite-search-item:hover,
|
|
||||||
.litegraph.lite-search-item.selected {
|
|
||||||
cursor: pointer;
|
|
||||||
background-color: white;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph.lite-search-item-type {
|
|
||||||
display: inline-block;
|
|
||||||
background: rgba(0,0,0,0.2);
|
|
||||||
margin-left: 5px;
|
|
||||||
font-size: 14px;
|
|
||||||
padding: 2px 5px;
|
|
||||||
position: relative;
|
|
||||||
top: -2px;
|
|
||||||
opacity: 0.8;
|
|
||||||
border-radius: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* DIALOGs ******/
|
|
||||||
|
|
||||||
.litegraph .dialog {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
margin-top: -150px;
|
|
||||||
margin-left: -200px;
|
|
||||||
|
|
||||||
background-color: #2A2A2A;
|
|
||||||
|
|
||||||
min-width: 400px;
|
|
||||||
min-height: 200px;
|
|
||||||
box-shadow: 0 0 4px #111;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog.settings {
|
|
||||||
left: 10px;
|
|
||||||
top: 10px;
|
|
||||||
height: calc( 100% - 20px );
|
|
||||||
margin: auto;
|
|
||||||
max-width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog.centered {
|
|
||||||
top: 50px;
|
|
||||||
left: 50%;
|
|
||||||
position: absolute;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
min-width: 600px;
|
|
||||||
min-height: 300px;
|
|
||||||
height: calc( 100% - 100px );
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .close {
|
|
||||||
float: right;
|
|
||||||
margin: 4px;
|
|
||||||
margin-right: 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .close:hover {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .dialog-header {
|
|
||||||
color: #AAA;
|
|
||||||
border-bottom: 1px solid #161616;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .dialog-header { height: 40px; }
|
|
||||||
.litegraph .dialog .dialog-footer { height: 50px; padding: 10px; border-top: 1px solid #1a1a1a;}
|
|
||||||
|
|
||||||
.litegraph .dialog .dialog-header .dialog-title {
|
|
||||||
font: 20px "Arial";
|
|
||||||
margin: 4px;
|
|
||||||
padding: 4px 10px;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .dialog-content, .litegraph .dialog .dialog-alt-content {
|
|
||||||
height: calc(100% - 90px);
|
|
||||||
width: 100%;
|
|
||||||
min-height: 100px;
|
|
||||||
display: inline-block;
|
|
||||||
color: #AAA;
|
|
||||||
/*background-color: black;*/
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .dialog-content h3 {
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .dialog-content .connections {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .dialog-content .connections .connections_side {
|
|
||||||
width: calc(50% - 5px);
|
|
||||||
min-height: 100px;
|
|
||||||
background-color: black;
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .node_type {
|
|
||||||
font-size: 1.2em;
|
|
||||||
display: block;
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .node_desc {
|
|
||||||
opacity: 0.5;
|
|
||||||
display: block;
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .separator {
|
|
||||||
display: block;
|
|
||||||
width: calc( 100% - 4px );
|
|
||||||
height: 1px;
|
|
||||||
border-top: 1px solid #000;
|
|
||||||
border-bottom: 1px solid #333;
|
|
||||||
margin: 10px 2px;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property {
|
|
||||||
margin-bottom: 2px;
|
|
||||||
padding: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property:hover {
|
|
||||||
background: #545454;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property_name {
|
|
||||||
color: #737373;
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
vertical-align: top;
|
|
||||||
width: 160px;
|
|
||||||
padding-left: 4px;
|
|
||||||
overflow: hidden;
|
|
||||||
margin-right: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property:hover .property_name {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property_value {
|
|
||||||
display: inline-block;
|
|
||||||
text-align: right;
|
|
||||||
color: #AAA;
|
|
||||||
background-color: #1A1A1A;
|
|
||||||
/*width: calc( 100% - 122px );*/
|
|
||||||
max-width: calc( 100% - 162px );
|
|
||||||
min-width: 200px;
|
|
||||||
max-height: 300px;
|
|
||||||
min-height: 20px;
|
|
||||||
padding: 4px;
|
|
||||||
padding-right: 12px;
|
|
||||||
overflow: hidden;
|
|
||||||
cursor: pointer;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property_value:hover {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property.boolean .property_value {
|
|
||||||
padding-right: 30px;
|
|
||||||
color: #A88;
|
|
||||||
/*width: auto;
|
|
||||||
float: right;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .property.boolean.bool-on .property_name{
|
|
||||||
color: #8A8;
|
|
||||||
}
|
|
||||||
.litegraph .dialog .property.boolean.bool-on .property_value{
|
|
||||||
color: #8A8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .btn {
|
|
||||||
border: 0;
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 4px 20px;
|
|
||||||
margin-left: 0px;
|
|
||||||
background-color: #060606;
|
|
||||||
color: #8e8e8e;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .btn:hover {
|
|
||||||
background-color: #111;
|
|
||||||
color: #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog .btn.delete:hover {
|
|
||||||
background-color: #F33;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property {
|
|
||||||
padding: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property:hover {
|
|
||||||
background-color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property.extra {
|
|
||||||
margin-top: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property span.name {
|
|
||||||
font-size: 1.3em;
|
|
||||||
padding-left: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property span.type {
|
|
||||||
opacity: 0.5;
|
|
||||||
margin-right: 20px;
|
|
||||||
padding-left: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property span.label {
|
|
||||||
display: inline-block;
|
|
||||||
width: 60px;
|
|
||||||
padding: 0px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property input {
|
|
||||||
width: 140px;
|
|
||||||
color: #999;
|
|
||||||
background-color: #1A1A1A;
|
|
||||||
border-radius: 4px;
|
|
||||||
border: 0;
|
|
||||||
margin-right: 10px;
|
|
||||||
padding: 4px;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property button {
|
|
||||||
background-color: #1c1c1c;
|
|
||||||
color: #aaa;
|
|
||||||
border: 0;
|
|
||||||
border-radius: 2px;
|
|
||||||
padding: 4px 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property.extra {
|
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .subgraph_property.extra input {
|
|
||||||
background-color: #111;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .bullet_icon {
|
|
||||||
margin-left: 10px;
|
|
||||||
border-radius: 10px;
|
|
||||||
width: 12px;
|
|
||||||
height: 12px;
|
|
||||||
background-color: #666;
|
|
||||||
display: inline-block;
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-right: 4px;
|
|
||||||
transition: background-color 0.1s ease 0s;
|
|
||||||
-moz-transition: background-color 0.1s ease 0s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .bullet_icon:hover {
|
|
||||||
background-color: #698;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* OLD */
|
|
||||||
|
|
||||||
.graphcontextmenu {
|
|
||||||
padding: 4px;
|
|
||||||
min-width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphcontextmenu-title {
|
|
||||||
color: #dde;
|
|
||||||
background-color: #222;
|
|
||||||
margin: 0;
|
|
||||||
padding: 2px;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 2px;
|
|
||||||
padding-left: 20px;
|
|
||||||
user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
transition: all linear 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry.event,
|
|
||||||
.litemenu-entry.event {
|
|
||||||
border-left: 8px solid orange;
|
|
||||||
padding-left: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry.disabled {
|
|
||||||
opacity: 0.3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry.submenu {
|
|
||||||
border-right: 2px solid #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry:hover {
|
|
||||||
background-color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry.separator {
|
|
||||||
background-color: #111;
|
|
||||||
border-bottom: 1px solid #666;
|
|
||||||
height: 1px;
|
|
||||||
width: calc(100% - 20px);
|
|
||||||
-moz-width: calc(100% - 20px);
|
|
||||||
-webkit-width: calc(100% - 20px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry .property_name {
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
min-width: 80px;
|
|
||||||
min-height: 1.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphmenu-entry .property_value,
|
|
||||||
.litemenu-entry .property_value {
|
|
||||||
display: inline-block;
|
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
|
||||||
text-align: right;
|
|
||||||
min-width: 80px;
|
|
||||||
min-height: 1.2em;
|
|
||||||
vertical-align: middle;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog {
|
|
||||||
position: absolute;
|
|
||||||
top: 10px;
|
|
||||||
left: 10px;
|
|
||||||
min-height: 2em;
|
|
||||||
background-color: #333;
|
|
||||||
font-size: 1.2em;
|
|
||||||
box-shadow: 0 0 10px black !important;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog.rounded {
|
|
||||||
border-radius: 12px;
|
|
||||||
padding-right: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog .name {
|
|
||||||
display: inline-block;
|
|
||||||
min-width: 60px;
|
|
||||||
min-height: 1.5em;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog input,
|
|
||||||
.graphdialog textarea,
|
|
||||||
.graphdialog select {
|
|
||||||
margin: 3px;
|
|
||||||
min-width: 60px;
|
|
||||||
min-height: 1.5em;
|
|
||||||
background-color: black;
|
|
||||||
border: 0;
|
|
||||||
color: white;
|
|
||||||
padding-left: 10px;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog textarea {
|
|
||||||
min-height: 150px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog button {
|
|
||||||
margin-top: 3px;
|
|
||||||
vertical-align: top;
|
|
||||||
background-color: #999;
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog button.rounded,
|
|
||||||
.graphdialog input.rounded {
|
|
||||||
border-radius: 0 12px 12px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog .helper {
|
|
||||||
overflow: auto;
|
|
||||||
max-height: 200px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog .help-item {
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.graphdialog .help-item:hover,
|
|
||||||
.graphdialog .help-item.selected {
|
|
||||||
cursor: pointer;
|
|
||||||
background-color: white;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.litegraph .dialog {
|
|
||||||
min-height: 0;
|
|
||||||
}
|
|
||||||
.litegraph .dialog .dialog-content {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.litegraph .dialog .dialog-content .subgraph_property {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.litegraph .dialog .dialog-footer {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.litegraph .dialog .dialog-footer .subgraph_property {
|
|
||||||
margin-top: 0;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.litegraph .dialog .dialog-footer .subgraph_property .name {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
.litegraph .graphdialog {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
border-radius: 20px;
|
|
||||||
padding: 4px 10px;
|
|
||||||
position: fixed;
|
|
||||||
}
|
|
||||||
.litegraph .graphdialog .name {
|
|
||||||
padding: 0;
|
|
||||||
min-height: 0;
|
|
||||||
font-size: 16px;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
.litegraph .graphdialog .value {
|
|
||||||
font-size: 16px;
|
|
||||||
min-height: 0;
|
|
||||||
margin: 0 10px;
|
|
||||||
padding: 2px 5px;
|
|
||||||
}
|
|
||||||
.litegraph .graphdialog input[type="checkbox"] {
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
}
|
|
||||||
.litegraph .graphdialog button {
|
|
||||||
padding: 4px 18px;
|
|
||||||
border-radius: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
/**
|
|
||||||
* Changes the background color of the canvas.
|
|
||||||
*
|
|
||||||
* @method updateBackground
|
|
||||||
* @param {image} String
|
|
||||||
* @param {clearBackgroundColor} String
|
|
||||||
* @
|
|
||||||
*/
|
|
||||||
LGraphCanvas.prototype.updateBackground = function (
|
|
||||||
image,
|
|
||||||
clearBackgroundColor
|
|
||||||
) {
|
|
||||||
this._bg_img = new Image();
|
|
||||||
this._bg_img.name = image;
|
|
||||||
this._bg_img.src = image;
|
|
||||||
this._bg_img.onload = () => {
|
|
||||||
this.draw(true, true);
|
|
||||||
};
|
|
||||||
this.background_image = image;
|
|
||||||
|
|
||||||
this.clear_background = true;
|
|
||||||
this.clear_background_color = clearBackgroundColor;
|
|
||||||
this._pattern = null;
|
|
||||||
};
|
|
||||||
@@ -15,12 +15,21 @@ import { createImageHost, calculateImageGrid } from "./ui/imagePreview";
|
|||||||
import { DraggableList } from "./ui/draggableList";
|
import { DraggableList } from "./ui/draggableList";
|
||||||
import { applyTextReplacements, addStylesheet } from "./utils";
|
import { applyTextReplacements, addStylesheet } from "./utils";
|
||||||
import type { ComfyExtension } from "/types/comfy";
|
import type { ComfyExtension } from "/types/comfy";
|
||||||
import type { LGraph, LGraphCanvas, LGraphNode } from "/types/litegraph";
|
|
||||||
import { type ComfyWorkflow, parseComfyWorkflow } from "../types/comfyWorkflow";
|
import { type ComfyWorkflow, parseComfyWorkflow } from "../types/comfyWorkflow";
|
||||||
import { ComfyNodeDef } from "/types/apiTypes";
|
import { ComfyNodeDef } from "/types/apiTypes";
|
||||||
import { ComfyAppMenu } from "./ui/menu/index.js";
|
import { ComfyAppMenu } from "./ui/menu/index.js";
|
||||||
import { getStorageValue, setStorageValue } from "./utils.js";
|
import { getStorageValue, setStorageValue } from "./utils.js";
|
||||||
import { ComfyWorkflowManager } from "./workflows.js";
|
import { ComfyWorkflowManager } from "./workflows.js";
|
||||||
|
import {
|
||||||
|
LGraphCanvas,
|
||||||
|
LGraph,
|
||||||
|
LGraphNode,
|
||||||
|
LiteGraph,
|
||||||
|
} from "@comfyorg/litegraph";
|
||||||
|
|
||||||
|
// CSS imports. style.css must be imported later as it overwrites some litegraph styles.
|
||||||
|
import "@comfyorg/litegraph/css/litegraph.css";
|
||||||
|
import "../assets/css/style.css";
|
||||||
|
|
||||||
export const ANIM_PREVIEW_WIDGET = "$$comfy_animation_preview";
|
export const ANIM_PREVIEW_WIDGET = "$$comfy_animation_preview";
|
||||||
|
|
||||||
@@ -1839,12 +1848,10 @@ export class ComfyApp {
|
|||||||
this.#addApiUpdateHandlers();
|
this.#addApiUpdateHandlers();
|
||||||
this.#addRestoreWorkflowView();
|
this.#addRestoreWorkflowView();
|
||||||
|
|
||||||
// @ts-ignore
|
|
||||||
this.graph = new LGraph();
|
this.graph = new LGraph();
|
||||||
|
|
||||||
this.#addAfterConfigureHandler();
|
this.#addAfterConfigureHandler();
|
||||||
|
|
||||||
// @ts-ignore
|
|
||||||
this.canvas = new LGraphCanvas(canvasEl, this.graph);
|
this.canvas = new LGraphCanvas(canvasEl, this.graph);
|
||||||
this.ctx = canvasEl.getContext("2d");
|
this.ctx = canvasEl.getContext("2d");
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import { api } from "./api";
|
import { api } from "./api";
|
||||||
import { clone } from "./utils";
|
import { clone } from "./utils";
|
||||||
|
import { LGraphCanvas, LiteGraph } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
export class ChangeTracker {
|
export class ChangeTracker {
|
||||||
static MAX_HISTORY = 50;
|
static MAX_HISTORY = 50;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { app, ANIM_PREVIEW_WIDGET } from "./app";
|
import { app, ANIM_PREVIEW_WIDGET } from "./app";
|
||||||
import type { LGraphNode, Vector4 } from "/types/litegraph";
|
import { LGraphCanvas, LGraphNode, LiteGraph } from "@comfyorg/litegraph";
|
||||||
|
import type { Vector4 } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
const SIZE = Symbol();
|
const SIZE = Symbol();
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { LiteGraph } from "@comfyorg/litegraph";
|
||||||
import { api } from "./api";
|
import { api } from "./api";
|
||||||
|
|
||||||
export function getPngMetadata(file) {
|
export function getPngMetadata(file) {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { api } from "./api";
|
import { api } from "./api";
|
||||||
import "./domWidget";
|
import "./domWidget";
|
||||||
import type { ComfyApp } from "./app";
|
import type { ComfyApp } from "./app";
|
||||||
import type { IWidget, LGraphNode } from "/types/litegraph";
|
import type { IWidget, LGraphNode } from "@comfyorg/litegraph";
|
||||||
import { ComfyNodeDef } from "/types/apiTypes";
|
import { ComfyNodeDef } from "/types/apiTypes";
|
||||||
|
|
||||||
export type ComfyWidgetConstructor = (
|
export type ComfyWidgetConstructor = (
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { api } from "./api";
|
|||||||
import { ChangeTracker } from "./changeTracker";
|
import { ChangeTracker } from "./changeTracker";
|
||||||
import { ComfyAsyncDialog } from "./ui/components/asyncDialog";
|
import { ComfyAsyncDialog } from "./ui/components/asyncDialog";
|
||||||
import { getStorageValue, setStorageValue } from "./utils";
|
import { getStorageValue, setStorageValue } from "./utils";
|
||||||
|
import { LGraphCanvas } from "@comfyorg/litegraph";
|
||||||
|
|
||||||
function appendJsonExt(path) {
|
function appendJsonExt(path) {
|
||||||
if (!path.toLowerCase().endsWith(".json")) {
|
if (!path.toLowerCase().endsWith(".json")) {
|
||||||
|
|||||||
1532
src/types/litegraph.d.ts
vendored
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
import type { LiteGraph, LGraphCanvas } from "@comfyorg/litegraph";
|
||||||
/// <reference path="../../src/types/litegraph.d.ts" />
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef { import("./src/scripts/app")["app"] } app
|
* @typedef { import("./src/scripts/app")["app"] } app
|
||||||
@@ -389,28 +388,28 @@ export class EzGraph {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const Ez = {
|
export const Ez = {
|
||||||
/**
|
/**
|
||||||
* Quickly build and interact with a ComfyUI graph
|
* Quickly build and interact with a ComfyUI graph
|
||||||
* @example
|
* @example
|
||||||
* const { ez, graph } = Ez.graph(app);
|
* const { ez, graph } = Ez.graph(app);
|
||||||
* graph.clear();
|
* graph.clear();
|
||||||
* const [model, clip, vae] = ez.CheckpointLoaderSimple().outputs;
|
* const [model, clip, vae] = ez.CheckpointLoaderSimple().outputs;
|
||||||
* const [pos] = ez.CLIPTextEncode(clip, { text: "positive" }).outputs;
|
* const [pos] = ez.CLIPTextEncode(clip, { text: "positive" }).outputs;
|
||||||
* const [neg] = ez.CLIPTextEncode(clip, { text: "negative" }).outputs;
|
* const [neg] = ez.CLIPTextEncode(clip, { text: "negative" }).outputs;
|
||||||
* const [latent] = ez.KSampler(model, pos, neg, ...ez.EmptyLatentImage().outputs).outputs;
|
* const [latent] = ez.KSampler(model, pos, neg, ...ez.EmptyLatentImage().outputs).outputs;
|
||||||
* const [image] = ez.VAEDecode(latent, vae).outputs;
|
* const [image] = ez.VAEDecode(latent, vae).outputs;
|
||||||
* const saveNode = ez.SaveImage(image);
|
* const saveNode = ez.SaveImage(image);
|
||||||
* console.log(saveNode);
|
* console.log(saveNode);
|
||||||
* graph.arrange();
|
* graph.arrange();
|
||||||
* @param { app } app
|
* @param { app } app
|
||||||
* @param { LG["LiteGraph"] } LiteGraph
|
* @param { boolean } clearGraph
|
||||||
* @param { LG["LGraphCanvas"] } LGraphCanvas
|
* @param { LG["LiteGraph"] } LiteGraph
|
||||||
* @param { boolean } clearGraph
|
* @param { LG["LGraphCanvas"] } LGraphCanvas
|
||||||
* @returns { { graph: EzGraph, ez: Record<string, EzNodeFactory> } }
|
* @returns { { graph: EzGraph, ez: Record<string, EzNodeFactory> } }
|
||||||
*/
|
*/
|
||||||
graph(app, LiteGraph = window["LiteGraph"], LGraphCanvas = window["LGraphCanvas"], clearGraph = true) {
|
graph(app, LiteGraph, LGraphCanvas, clearGraph = true) {
|
||||||
// Always set the active canvas so things work
|
// Always set the active canvas so things work
|
||||||
LGraphCanvas.active_canvas = app.canvas;
|
LGraphCanvas.active_canvas = app.canvas;
|
||||||
|
|
||||||
if (clearGraph) {
|
if (clearGraph) {
|
||||||
app.graph.clear();
|
app.graph.clear();
|
||||||
|
|||||||
@@ -39,13 +39,14 @@ export async function start(config: StartConfig = {}): Promise<StartResult> {
|
|||||||
Object.assign(localStorage, config.localStorage ?? {});
|
Object.assign(localStorage, config.localStorage ?? {});
|
||||||
document.body.innerHTML = html.toString();
|
document.body.innerHTML = html.toString();
|
||||||
|
|
||||||
mockApi(config);
|
mockApi(config);
|
||||||
const { app } = await import("../../src/scripts/app");
|
const { app } = await import("../../src/scripts/app");
|
||||||
config.preSetup?.(app);
|
const { LiteGraph, LGraphCanvas } = await import("@comfyorg/litegraph");
|
||||||
await app.setup();
|
config.preSetup?.(app);
|
||||||
|
await app.setup();
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
return { ...Ez.graph(app, global["LiteGraph"], global["LGraphCanvas"]), app };
|
return { ...Ez.graph(app, LiteGraph, LGraphCanvas), app };
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -18,20 +18,12 @@ function forEachKey(cb) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup(ctx) {
|
setup(ctx) {
|
||||||
const lg = fs.readFileSync(path.resolve("./src/lib/litegraph.core.js"), "utf-8");
|
|
||||||
const globalTemp = {};
|
|
||||||
(function (console) {
|
|
||||||
eval(lg);
|
|
||||||
}).call(globalTemp, nop);
|
|
||||||
|
|
||||||
forEachKey((k) => (ctx[k] = globalTemp[k]));
|
},
|
||||||
const lg_ext = fs.readFileSync(path.resolve("./src/lib/litegraph.extensions.js"), "utf-8");
|
|
||||||
eval(lg_ext);
|
|
||||||
},
|
|
||||||
|
|
||||||
teardown(ctx) {
|
teardown(ctx) {
|
||||||
forEachKey((k) => delete ctx[k]);
|
// forEachKey((k) => delete ctx[k]);
|
||||||
|
|
||||||
// Clear document after each run
|
// Clear document after each run
|
||||||
document.getElementsByTagName("html")[0].innerHTML = "";
|
document.getElementsByTagName("html")[0].innerHTML = "";
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import { defineConfig, Plugin } from 'vite';
|
import { defineConfig, Plugin } from 'vite';
|
||||||
import { viteStaticCopy } from 'vite-plugin-static-copy'
|
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import dotenv from "dotenv";
|
import dotenv from "dotenv";
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
@@ -100,11 +99,6 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
comfyAPIPlugin(),
|
comfyAPIPlugin(),
|
||||||
viteStaticCopy({
|
|
||||||
targets: [
|
|
||||||
{ src: "src/lib/*", dest: "lib/" },
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
],
|
],
|
||||||
build: {
|
build: {
|
||||||
minify: false,
|
minify: false,
|
||||||
|
|||||||