Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
334692eb1a | ||
|
|
3275777d2f | ||
|
|
4a92bb68ee | ||
|
|
b126327ec2 | ||
|
|
27d0a4bd30 | ||
|
|
eb02561906 | ||
|
|
fde480cb43 | ||
|
|
552fc104e3 | ||
|
|
d9dbe89403 | ||
|
|
f5aa691f7a | ||
|
|
895e2e4361 | ||
|
|
32e39c20d6 | ||
|
|
03a70c60cf | ||
|
|
d07d1e7478 | ||
|
|
4923a78d7c | ||
|
|
b1dd8a6242 | ||
|
|
e8539add51 | ||
|
|
afd3c05d0b | ||
|
|
634d16a182 | ||
|
|
5f51ed4bd7 |
Submodule litegraph updated: 7c38fa4aed...29a7877f59
@@ -61,7 +61,7 @@
|
|||||||
],
|
],
|
||||||
"title": "UI.Gallery",
|
"title": "UI.Gallery",
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [],
|
"tags": ["gen"],
|
||||||
"defaultValue": [],
|
"defaultValue": [],
|
||||||
"index": 3,
|
"index": 3,
|
||||||
"updateMode": "append",
|
"updateMode": "append",
|
||||||
@@ -1694,7 +1694,7 @@
|
|||||||
],
|
],
|
||||||
"title": "UI.Gallery",
|
"title": "UI.Gallery",
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [],
|
"tags": ["hr"],
|
||||||
"defaultValue": [],
|
"defaultValue": [],
|
||||||
"index": 1,
|
"index": 1,
|
||||||
"updateMode": "append",
|
"updateMode": "append",
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ export default class ComfyGraphCanvas extends LGraphCanvas {
|
|||||||
activeErrors?: ComfyGraphErrors = null;
|
activeErrors?: ComfyGraphErrors = null;
|
||||||
blinkError: ComfyGraphErrorLocation | null = null;
|
blinkError: ComfyGraphErrorLocation | null = null;
|
||||||
blinkErrorTime: number = 0;
|
blinkErrorTime: number = 0;
|
||||||
highlightNodeAndInput: [LGraphNode, number] | null = null;
|
highlightNodeAndInput: [LGraphNode, number | null] | null = null;
|
||||||
|
|
||||||
get comfyGraph(): ComfyGraph | null {
|
get comfyGraph(): ComfyGraph | null {
|
||||||
return this.graph as ComfyGraph;
|
return this.graph as ComfyGraph;
|
||||||
@@ -104,7 +104,7 @@ export default class ComfyGraphCanvas extends LGraphCanvas {
|
|||||||
let state = get(queueState);
|
let state = get(queueState);
|
||||||
let ss = get(selectionState);
|
let ss = get(selectionState);
|
||||||
|
|
||||||
const isRunningNode = node.id == state.runningNodeID
|
const isExecuting = state.executingNodes.has(node.id);
|
||||||
const nodeErrors = this.activeErrors?.errorsByID[node.id];
|
const nodeErrors = this.activeErrors?.errorsByID[node.id];
|
||||||
const isHighlightedNode = this.highlightNodeAndInput && this.highlightNodeAndInput[0].id === node.id;
|
const isHighlightedNode = this.highlightNodeAndInput && this.highlightNodeAndInput[0].id === node.id;
|
||||||
|
|
||||||
@@ -133,11 +133,20 @@ export default class ComfyGraphCanvas extends LGraphCanvas {
|
|||||||
else if (isHighlightedNode) {
|
else if (isHighlightedNode) {
|
||||||
color = "cyan";
|
color = "cyan";
|
||||||
thickness = 2
|
thickness = 2
|
||||||
|
|
||||||
|
// Blink node if no input highlighted
|
||||||
|
if (this.highlightNodeAndInput[1] == null) {
|
||||||
|
if (this.blinkErrorTime > 0) {
|
||||||
|
if ((Math.floor(this.blinkErrorTime / 2)) % 2 === 0) {
|
||||||
|
color = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (ss.currentHoveredNodes.has(node.id)) {
|
else if (ss.currentHoveredNodes.has(node.id)) {
|
||||||
color = "lightblue";
|
color = "lightblue";
|
||||||
}
|
}
|
||||||
else if (isRunningNode) {
|
else if (isExecuting) {
|
||||||
color = "#0f0";
|
color = "#0f0";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -153,7 +162,7 @@ export default class ComfyGraphCanvas extends LGraphCanvas {
|
|||||||
this.drawNodeOutline(node, ctx, size, mouseOver, fgColor, bgColor, color, thickness)
|
this.drawNodeOutline(node, ctx, size, mouseOver, fgColor, bgColor, color, thickness)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isRunningNode && state.progress) {
|
if (isExecuting && state.progress) {
|
||||||
ctx.fillStyle = "green";
|
ctx.fillStyle = "green";
|
||||||
ctx.fillRect(0, 0, size[0] * (state.progress.value / state.progress.max), 6);
|
ctx.fillRect(0, 0, size[0] * (state.progress.value / state.progress.max), 6);
|
||||||
ctx.fillStyle = bgColor;
|
ctx.fillStyle = bgColor;
|
||||||
@@ -172,12 +181,14 @@ export default class ComfyGraphCanvas extends LGraphCanvas {
|
|||||||
}
|
}
|
||||||
if (draw) {
|
if (draw) {
|
||||||
const [node, inputSlot] = this.highlightNodeAndInput;
|
const [node, inputSlot] = this.highlightNodeAndInput;
|
||||||
|
if (inputSlot != null) {
|
||||||
ctx.lineWidth = 2;
|
ctx.lineWidth = 2;
|
||||||
ctx.strokeStyle = color;
|
ctx.strokeStyle = color;
|
||||||
this.highlightNodeInput(node, inputSlot, ctx);
|
this.highlightNodeInput(node, inputSlot, ctx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private drawFailedValidationInputs(node: LGraphNode, errors: ComfyGraphErrorLocation[], color: string, ctx: CanvasRenderingContext2D) {
|
private drawFailedValidationInputs(node: LGraphNode, errors: ComfyGraphErrorLocation[], color: string, ctx: CanvasRenderingContext2D) {
|
||||||
ctx.lineWidth = 2;
|
ctx.lineWidth = 2;
|
||||||
@@ -733,7 +744,7 @@ export default class ComfyGraphCanvas extends LGraphCanvas {
|
|||||||
this.selectNode(node);
|
this.selectNode(node);
|
||||||
}
|
}
|
||||||
|
|
||||||
jumpToNodeAndInput(node: LGraphNode, slotIndex: number) {
|
jumpToNodeAndInput(node: LGraphNode, slotIndex: number | null) {
|
||||||
this.jumpToNode(node);
|
this.jumpToNode(node);
|
||||||
this.highlightNodeAndInput = [node, slotIndex];
|
this.highlightNodeAndInput = [node, slotIndex];
|
||||||
this.blinkErrorTime = 20;
|
this.blinkErrorTime = 20;
|
||||||
|
|||||||
@@ -165,7 +165,6 @@ export class ImageViewer {
|
|||||||
|
|
||||||
let urls = ImageViewer.get_gallery_urls(galleryElem)
|
let urls = ImageViewer.get_gallery_urls(galleryElem)
|
||||||
const [_currentButton, index] = ImageViewer.selected_gallery_button(galleryElem)
|
const [_currentButton, index] = ImageViewer.selected_gallery_button(galleryElem)
|
||||||
console.warn("Gallery!", index, urls, galleryElem)
|
|
||||||
|
|
||||||
this.showModal(urls, index, galleryElem)
|
this.showModal(urls, index, galleryElem)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,7 +45,8 @@ export type ComfyAPIHistoryItem = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
export type ComfyAPIPromptSuccessResponse = {
|
export type ComfyAPIPromptSuccessResponse = {
|
||||||
promptID: PromptID
|
promptID: PromptID,
|
||||||
|
number: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ComfyAPIPromptResponse = ComfyAPIPromptSuccessResponse | ComfyAPIPromptErrorResponse
|
export type ComfyAPIPromptResponse = ComfyAPIPromptSuccessResponse | ComfyAPIPromptErrorResponse
|
||||||
@@ -100,6 +101,7 @@ export type ComfyUIPromptExtraData = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type ComfyAPIEvents = {
|
type ComfyAPIEvents = {
|
||||||
|
// JSON
|
||||||
status: (status: ComfyAPIStatusResponse | null, error?: Error | null) => void,
|
status: (status: ComfyAPIStatusResponse | null, error?: Error | null) => void,
|
||||||
progress: (progress: Progress) => void,
|
progress: (progress: Progress) => void,
|
||||||
reconnecting: () => void,
|
reconnecting: () => void,
|
||||||
@@ -110,6 +112,9 @@ type ComfyAPIEvents = {
|
|||||||
execution_cached: (promptID: PromptID, nodes: ComfyNodeID[]) => void,
|
execution_cached: (promptID: PromptID, nodes: ComfyNodeID[]) => void,
|
||||||
execution_interrupted: (error: ComfyInterruptedError) => void,
|
execution_interrupted: (error: ComfyInterruptedError) => void,
|
||||||
execution_error: (error: ComfyExecutionError) => void,
|
execution_error: (error: ComfyExecutionError) => void,
|
||||||
|
|
||||||
|
// Binary
|
||||||
|
b_preview: (imageBlob: Blob) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class ComfyAPI {
|
export default class ComfyAPI {
|
||||||
@@ -175,6 +180,7 @@ export default class ComfyAPI {
|
|||||||
this.socket = new WebSocket(
|
this.socket = new WebSocket(
|
||||||
`ws${window.location.protocol === "https:" ? "s" : ""}://${hostname}:${port}/ws${existingSession}`
|
`ws${window.location.protocol === "https:" ? "s" : ""}://${hostname}:${port}/ws${existingSession}`
|
||||||
);
|
);
|
||||||
|
this.socket.binaryType = "arraybuffer";
|
||||||
|
|
||||||
this.socket.addEventListener("open", () => {
|
this.socket.addEventListener("open", () => {
|
||||||
opened = true;
|
opened = true;
|
||||||
@@ -203,6 +209,31 @@ export default class ComfyAPI {
|
|||||||
|
|
||||||
this.socket.addEventListener("message", (event) => {
|
this.socket.addEventListener("message", (event) => {
|
||||||
try {
|
try {
|
||||||
|
if (event.data instanceof ArrayBuffer) {
|
||||||
|
const view = new DataView(event.data);
|
||||||
|
const eventType = view.getUint32(0);
|
||||||
|
const buffer = event.data.slice(4);
|
||||||
|
switch (eventType) {
|
||||||
|
case 1:
|
||||||
|
const view2 = new DataView(event.data);
|
||||||
|
const imageType = view2.getUint32(0)
|
||||||
|
let imageMime: string
|
||||||
|
switch (imageType) {
|
||||||
|
case 1:
|
||||||
|
default:
|
||||||
|
imageMime = "image/jpeg";
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
imageMime = "image/png"
|
||||||
|
}
|
||||||
|
const imageBlob = new Blob([buffer.slice(4)], { type: imageMime });
|
||||||
|
this.eventBus.emit("b_preview", imageBlob);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error(`Unknown binary websocket message of type ${eventType}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
const msg = JSON.parse(event.data);
|
const msg = JSON.parse(event.data);
|
||||||
switch (msg.type) {
|
switch (msg.type) {
|
||||||
case "status":
|
case "status":
|
||||||
@@ -236,6 +267,7 @@ export default class ComfyAPI {
|
|||||||
default:
|
default:
|
||||||
console.warn("Unhandled message:", event.data);
|
console.warn("Unhandled message:", event.data);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error handling message", event.data, error);
|
console.error("Error handling message", event.data, error);
|
||||||
}
|
}
|
||||||
@@ -309,7 +341,7 @@ export default class ComfyAPI {
|
|||||||
}
|
}
|
||||||
return res.json()
|
return res.json()
|
||||||
})
|
})
|
||||||
.then(raw => { return { promptID: raw.prompt_id } })
|
.then(raw => { return { promptID: raw.prompt_id, number: raw.number } })
|
||||||
.catch(error => { return error })
|
.catch(error => { return error })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -651,6 +651,10 @@ export default class ComfyApp {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.api.addEventListener("b_preview", (imageBlob: Blob) => {
|
||||||
|
queueState.previewUpdated(imageBlob);
|
||||||
|
});
|
||||||
|
|
||||||
const config = get(configState);
|
const config = get(configState);
|
||||||
|
|
||||||
if (config.pollSystemStatsInterval > 0) {
|
if (config.pollSystemStatsInterval > 0) {
|
||||||
@@ -746,11 +750,13 @@ export default class ComfyApp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private requestPermissions() {
|
private requestPermissions() {
|
||||||
if (Notification.permission === "default") {
|
if (window.Notification != null) {
|
||||||
Notification.requestPermission()
|
if (window.Notification.permission === "default") {
|
||||||
|
window.Notification.requestPermission()
|
||||||
.then((result) => console.log("Notification status:", result));
|
.then((result) => console.log("Notification status:", result));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private setupColorScheme() {
|
private setupColorScheme() {
|
||||||
const setColor = (type: any, color: string) => {
|
const setColor = (type: any, color: string) => {
|
||||||
@@ -957,7 +963,11 @@ export default class ComfyApp {
|
|||||||
if (workflow.attrs.queuePromptButtonRunWorkflow) {
|
if (workflow.attrs.queuePromptButtonRunWorkflow) {
|
||||||
// Hold control to queue at the front
|
// Hold control to queue at the front
|
||||||
const num = this.ctrlDown ? -1 : 0;
|
const num = this.ctrlDown ? -1 : 0;
|
||||||
this.queuePrompt(workflow, num, 1);
|
let tag = null;
|
||||||
|
if (workflow.attrs.queuePromptButtonDefaultWorkflow) {
|
||||||
|
tag = workflow.attrs.queuePromptButtonDefaultWorkflow
|
||||||
|
}
|
||||||
|
this.queuePrompt(workflow, num, 1, tag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1055,11 +1065,11 @@ export default class ComfyApp {
|
|||||||
|
|
||||||
const p = this.graphToPrompt(workflow, tag);
|
const p = this.graphToPrompt(workflow, tag);
|
||||||
const wf = this.serialize(workflow)
|
const wf = this.serialize(workflow)
|
||||||
console.debug(graphToGraphVis(workflow.graph))
|
// console.debug(graphToGraphVis(workflow.graph))
|
||||||
console.debug(promptToGraphVis(p))
|
// console.debug(promptToGraphVis(p))
|
||||||
|
|
||||||
const stdPrompt = this.stdPromptSerializer.serialize(p);
|
const stdPrompt = this.stdPromptSerializer.serialize(p);
|
||||||
console.warn("STD", stdPrompt);
|
// console.warn("STD", stdPrompt);
|
||||||
|
|
||||||
const extraData: ComfyBoxPromptExtraData = {
|
const extraData: ComfyBoxPromptExtraData = {
|
||||||
extra_pnginfo: {
|
extra_pnginfo: {
|
||||||
@@ -1092,8 +1102,8 @@ export default class ComfyApp {
|
|||||||
workflowState.promptError(workflow.id, errorPromptID)
|
workflowState.promptError(workflow.id, errorPromptID)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
queueState.afterQueued(workflow.id, response.promptID, num, p.output, extraData)
|
queueState.afterQueued(workflow.id, response.promptID, response.number, p.output, extraData)
|
||||||
workflowState.afterQueued(workflow.id, response.promptID, p, extraData)
|
workflowState.afterQueued(workflow.id, response.promptID)
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
errorMes = err?.toString();
|
errorMes = err?.toString();
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
<script context="module" lang="ts">
|
<script context="module" lang="ts">
|
||||||
export const WORKFLOWS_VIEW: any = {}
|
// workaround a vite HMR bug
|
||||||
|
// shouts out to @rixo
|
||||||
|
// https://github.com/sveltejs/svelte/issues/8655
|
||||||
|
export const WORKFLOWS_VIEW = import.meta.hot?.data?.WORKFLOWS_VIEW || {}
|
||||||
|
if (import.meta.hot?.data) {
|
||||||
|
import.meta.hot.data.WORKFLOWS_VIEW = WORKFLOWS_VIEW
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
@@ -380,6 +386,9 @@
|
|||||||
<span style="display: inline-flex !important; padding: 0 0.75rem;">
|
<span style="display: inline-flex !important; padding: 0 0.75rem;">
|
||||||
<Checkbox label="Auto-Add UI" bind:value={$uiState.autoAddUI}/>
|
<Checkbox label="Auto-Add UI" bind:value={$uiState.autoAddUI}/>
|
||||||
</span>
|
</span>
|
||||||
|
<span style="display: inline-flex !important; padding: 0 0.75rem;">
|
||||||
|
<Checkbox label="Hide Previews" bind:value={$uiState.hidePreviews}/>
|
||||||
|
</span>
|
||||||
<!-- <span class="label" for="ui-edit-mode">
|
<!-- <span class="label" for="ui-edit-mode">
|
||||||
<BlockTitle>UI Edit mode</BlockTitle>
|
<BlockTitle>UI Edit mode</BlockTitle>
|
||||||
<select id="ui-edit-mode" name="ui-edit-mode" bind:value={$uiState.uiEditMode}>
|
<select id="ui-edit-mode" name="ui-edit-mode" bind:value={$uiState.uiEditMode}>
|
||||||
|
|||||||
@@ -4,16 +4,36 @@
|
|||||||
import Accordion from "./gradio/app/Accordion.svelte";
|
import Accordion from "./gradio/app/Accordion.svelte";
|
||||||
import uiState from '$lib/stores/uiState';
|
import uiState from '$lib/stores/uiState';
|
||||||
import type { ComfyNodeDefInputType } from "$lib/ComfyNodeDef";
|
import type { ComfyNodeDefInputType } from "$lib/ComfyNodeDef";
|
||||||
import type { INodeInputSlot, LGraphNode, Subgraph } from "@litegraph-ts/core";
|
import type { INodeInputSlot, LGraphNode, LLink, Subgraph } from "@litegraph-ts/core";
|
||||||
import { UpstreamNodeLocator } from "./ComfyPromptSerializer";
|
import { UpstreamNodeLocator, getUpstreamLink, nodeHasTag } from "./ComfyPromptSerializer";
|
||||||
import JsonView from "./JsonView.svelte";
|
import JsonView from "./JsonView.svelte";
|
||||||
|
|
||||||
export let app: ComfyApp;
|
export let app: ComfyApp;
|
||||||
export let errors: ComfyGraphErrors;
|
export let errors: ComfyGraphErrors;
|
||||||
|
|
||||||
|
let missingTag = null;
|
||||||
|
let nodeToJumpTo = null;
|
||||||
|
let inputSlotToHighlight = null;
|
||||||
|
let _errors = null
|
||||||
|
|
||||||
|
$: if (_errors != errors) {
|
||||||
|
_errors = errors;
|
||||||
|
if (errors.errors[0]) {
|
||||||
|
jumpToError(errors.errors[0])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function closeList() {
|
function closeList() {
|
||||||
app.lCanvas.clearErrors();
|
app.lCanvas.clearErrors();
|
||||||
$uiState.activeError = null;
|
$uiState.activeError = null;
|
||||||
|
clearState()
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearState() {
|
||||||
|
_errors = null;
|
||||||
|
missingTag = null;
|
||||||
|
nodeToJumpTo = null;
|
||||||
|
inputSlotToHighlight = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getParentNode(error: ComfyGraphErrorLocation): Subgraph | null {
|
function getParentNode(error: ComfyGraphErrorLocation): Subgraph | null {
|
||||||
@@ -24,11 +44,19 @@
|
|||||||
return node.graph._subgraph_node
|
return node.graph._subgraph_node
|
||||||
}
|
}
|
||||||
|
|
||||||
function canJumpToDisconnectedInput(error: ComfyGraphErrorLocation): boolean {
|
function jumpToFoundNode() {
|
||||||
return error.errorType === ComfyNodeErrorType.RequiredInputMissing && error.input != null;
|
if (nodeToJumpTo == null) {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
function jumpToDisconnectedInput(error: ComfyGraphErrorLocation) {
|
app.lCanvas.jumpToNodeAndInput(nodeToJumpTo, inputSlotToHighlight);
|
||||||
|
}
|
||||||
|
|
||||||
|
function detectDisconnected(error: ComfyGraphErrorLocation) {
|
||||||
|
missingTag = null;
|
||||||
|
nodeToJumpTo = null;
|
||||||
|
inputSlotToHighlight = null;
|
||||||
|
|
||||||
if (error.errorType !== ComfyNodeErrorType.RequiredInputMissing || error.input == null) {
|
if (error.errorType !== ComfyNodeErrorType.RequiredInputMissing || error.input == null) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -43,17 +71,33 @@
|
|||||||
// TODO multiple tags?
|
// TODO multiple tags?
|
||||||
const tag: string | null = error.queueEntry.extraData.extra_pnginfo.comfyBoxPrompt.subgraphs[0];
|
const tag: string | null = error.queueEntry.extraData.extra_pnginfo.comfyBoxPrompt.subgraphs[0];
|
||||||
|
|
||||||
const test = (node: LGraphNode) => (node as any).isBackendNode
|
const test = (node: LGraphNode, currentLink: LLink) => {
|
||||||
|
if (!nodeHasTag(node, tag, true))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
const [nextGraph, nextLink, nextInputSlot, nextNode] = getUpstreamLink(node, currentLink)
|
||||||
|
return nextLink == null;
|
||||||
|
};
|
||||||
const nodeLocator = new UpstreamNodeLocator(test)
|
const nodeLocator = new UpstreamNodeLocator(test)
|
||||||
const [_, foundLink, foundInputSlot, foundPrevNode] = nodeLocator.locateUpstream(node, inputIndex, tag);
|
const [foundNode, foundLink, foundInputSlot, foundPrevNode] = nodeLocator.locateUpstream(node, inputIndex, null);
|
||||||
|
|
||||||
if (foundInputSlot != null && foundPrevNode != null) {
|
if (foundInputSlot != null && foundPrevNode != null) {
|
||||||
app.lCanvas.jumpToNodeAndInput(foundPrevNode, foundInputSlot);
|
if (!nodeHasTag(foundNode, tag, true)) {
|
||||||
|
nodeToJumpTo = foundNode
|
||||||
|
missingTag = tag;
|
||||||
|
inputSlotToHighlight = null;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
nodeToJumpTo = foundPrevNode;
|
||||||
|
inputSlotToHighlight = foundInputSlot;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function jumpToError(error: ComfyGraphErrorLocation) {
|
function jumpToError(error: ComfyGraphErrorLocation) {
|
||||||
app.lCanvas.jumpToError(error);
|
app.lCanvas.jumpToError(error);
|
||||||
|
|
||||||
|
detectDisconnected(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getInputTypeName(type: ComfyNodeDefInputType) {
|
function getInputTypeName(type: ComfyNodeDefInputType) {
|
||||||
@@ -88,26 +132,37 @@
|
|||||||
<div class="error-details">
|
<div class="error-details">
|
||||||
<button class="jump-to-error" class:execution-error={isExecutionError} on:click={() => jumpToError(error)}><span>⮎</span></button>
|
<button class="jump-to-error" class:execution-error={isExecutionError} on:click={() => jumpToError(error)}><span>⮎</span></button>
|
||||||
<div class="error-details-wrapper">
|
<div class="error-details-wrapper">
|
||||||
|
{#if missingTag && nodeToJumpTo}
|
||||||
|
<div class="error-input">
|
||||||
|
<div><span class="error-message">Node "{nodeToJumpTo.title}" was missing tag used in workflow:</span><span style:padding-left="0.2rem"><b>{missingTag}</b></span></div>
|
||||||
|
<div>Tags on node: <b>{(nodeToJumpTo?.properties?.tags || []).join(", ")}</b></div>
|
||||||
|
</div>
|
||||||
|
{:else}
|
||||||
<span class="error-message" class:execution-error={isExecutionError}>{error.message}</span>
|
<span class="error-message" class:execution-error={isExecutionError}>{error.message}</span>
|
||||||
|
{/if}
|
||||||
{#if error.exceptionType}
|
{#if error.exceptionType}
|
||||||
<span>({error.exceptionType})</span>
|
<span>({error.exceptionType})</span>
|
||||||
{/if}
|
{/if}
|
||||||
{#if error.exceptionMessage && !isExecutionError}
|
{#if error.exceptionMessage && !isExecutionError}
|
||||||
<div style:text-decoration="underline">{error.exceptionMessage}</div>
|
<div style:text-decoration="underline">{error.exceptionMessage}</div>
|
||||||
{/if}
|
{/if}
|
||||||
{#if error.input}
|
{#if nodeToJumpTo != null}
|
||||||
|
<div style:display="flex" style:flex-direction="row">
|
||||||
|
<button class="jump-to-error locate" on:click={jumpToFoundNode}><span>⮎</span></button>
|
||||||
|
{#if missingTag}
|
||||||
|
<span>Jump to node: {nodeToJumpTo.title}</span>
|
||||||
|
{:else}
|
||||||
|
<span>Find disconnected input</span>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
{#if error.input && !missingTag}
|
||||||
<div class="error-input">
|
<div class="error-input">
|
||||||
<span>Input: <b>{error.input.name}</b></span>
|
<span>Input: <b>{error.input.name}</b></span>
|
||||||
{#if error.input.config}
|
{#if error.input.config}
|
||||||
<span>({getInputTypeName(error.input.config[0])})</span>
|
<span>({getInputTypeName(error.input.config[0])})</span>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{#if canJumpToDisconnectedInput(error)}
|
|
||||||
<div style:display="flex" style:flex-direction="row">
|
|
||||||
<button class="jump-to-error locate" on:click={() => jumpToDisconnectedInput(error)}><span>⮎</span></button>
|
|
||||||
<span>Find disconnected input</span>
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
{#if error.input.receivedValue}
|
{#if error.input.receivedValue}
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -71,13 +71,9 @@ export function isActiveBackendNode(node: LGraphNode, tag: string | null = null)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
type UpstreamResult = [LGraph | null, LLink | null, number | null, LGraphNode | null];
|
export type UpstreamResult = [LGraph | null, LLink | null, number | null, LGraphNode | null];
|
||||||
|
|
||||||
export class UpstreamNodeLocator {
|
function followSubgraph(subgraph: Subgraph, link: LLink): UpstreamResult {
|
||||||
constructor(private isTheTargetNode: (node: LGraphNode) => boolean) {
|
|
||||||
}
|
|
||||||
|
|
||||||
private followSubgraph(subgraph: Subgraph, link: LLink): UpstreamResult {
|
|
||||||
if (link.origin_id != subgraph.id)
|
if (link.origin_id != subgraph.id)
|
||||||
throw new Error("Invalid link and graph output!")
|
throw new Error("Invalid link and graph output!")
|
||||||
|
|
||||||
@@ -89,7 +85,7 @@ export class UpstreamNodeLocator {
|
|||||||
return [innerGraphOutput.graph, nextLink, 0, innerGraphOutput];
|
return [innerGraphOutput.graph, nextLink, 0, innerGraphOutput];
|
||||||
}
|
}
|
||||||
|
|
||||||
private followGraphInput(graphInput: GraphInput, link: LLink): UpstreamResult {
|
function followGraphInput(graphInput: GraphInput, link: LLink): UpstreamResult {
|
||||||
if (link.origin_id != graphInput.id)
|
if (link.origin_id != graphInput.id)
|
||||||
throw new Error("Invalid link and graph input!")
|
throw new Error("Invalid link and graph input!")
|
||||||
|
|
||||||
@@ -98,21 +94,21 @@ export class UpstreamNodeLocator {
|
|||||||
throw new Error("No outer subgraph!")
|
throw new Error("No outer subgraph!")
|
||||||
|
|
||||||
const outerInputIndex = outerSubgraph.inputs.findIndex(i => i.name === graphInput.nameInGraph)
|
const outerInputIndex = outerSubgraph.inputs.findIndex(i => i.name === graphInput.nameInGraph)
|
||||||
if (outerInputIndex == null)
|
if (outerInputIndex === -1)
|
||||||
throw new Error("No outer input slot!")
|
throw new Error("No outer input slot!")
|
||||||
|
|
||||||
const nextLink = outerSubgraph.getInputLink(outerInputIndex)
|
const nextLink = outerSubgraph.getInputLink(outerInputIndex)
|
||||||
return [outerSubgraph.graph, nextLink, outerInputIndex, outerSubgraph];
|
return [outerSubgraph.graph, nextLink, outerInputIndex, outerSubgraph];
|
||||||
}
|
}
|
||||||
|
|
||||||
private getUpstreamLink(parent: LGraphNode, currentLink: LLink): UpstreamResult {
|
export function getUpstreamLink(parent: LGraphNode, currentLink: LLink): UpstreamResult {
|
||||||
if (parent.is(Subgraph)) {
|
if (parent.is(Subgraph)) {
|
||||||
console.debug("FollowSubgraph")
|
console.debug("FollowSubgraph")
|
||||||
return this.followSubgraph(parent, currentLink);
|
return followSubgraph(parent, currentLink);
|
||||||
}
|
}
|
||||||
else if (parent.is(GraphInput)) {
|
else if (parent.is(GraphInput)) {
|
||||||
console.debug("FollowGraphInput")
|
console.debug("FollowGraphInput")
|
||||||
return this.followGraphInput(parent, currentLink);
|
return followGraphInput(parent, currentLink);
|
||||||
}
|
}
|
||||||
else if ("getUpstreamLink" in parent) {
|
else if ("getUpstreamLink" in parent) {
|
||||||
const link = (parent as ComfyGraphNode).getUpstreamLink();
|
const link = (parent as ComfyGraphNode).getUpstreamLink();
|
||||||
@@ -129,6 +125,10 @@ export class UpstreamNodeLocator {
|
|||||||
return [null, null, null, null];
|
return [null, null, null, null];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export class UpstreamNodeLocator {
|
||||||
|
constructor(private isTheTargetNode: (node: LGraphNode, currentLink: LLink) => boolean) {
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Traverses the graph upstream from outputs towards inputs across
|
* Traverses the graph upstream from outputs towards inputs across
|
||||||
* a sequence of nodes dependent on a condition.
|
* a sequence of nodes dependent on a condition.
|
||||||
@@ -146,8 +146,8 @@ export class UpstreamNodeLocator {
|
|||||||
let currentInputSlot = inputIndex;
|
let currentInputSlot = inputIndex;
|
||||||
let currentNode = fromNode;
|
let currentNode = fromNode;
|
||||||
|
|
||||||
const shouldFollowParent = (parent: LGraphNode) => {
|
const shouldFollowParent = (parent: LGraphNode, currentLink: LLink) => {
|
||||||
return isActiveNode(parent, tag) && !this.isTheTargetNode(parent);
|
return isActiveNode(parent, tag) && !this.isTheTargetNode(parent, currentLink);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there are non-target nodes between us and another
|
// If there are non-target nodes between us and another
|
||||||
@@ -156,8 +156,8 @@ export class UpstreamNodeLocator {
|
|||||||
// will simply follow their single input, while branching
|
// will simply follow their single input, while branching
|
||||||
// nodes have conditional logic that determines which link
|
// nodes have conditional logic that determines which link
|
||||||
// to follow backwards.
|
// to follow backwards.
|
||||||
while (shouldFollowParent(parent)) {
|
while (shouldFollowParent(parent, currentLink)) {
|
||||||
const [nextGraph, nextLink, nextInputSlot, nextNode] = this.getUpstreamLink(parent, currentLink);
|
const [nextGraph, nextLink, nextInputSlot, nextNode] = getUpstreamLink(parent, currentLink);
|
||||||
|
|
||||||
currentInputSlot = nextInputSlot;
|
currentInputSlot = nextInputSlot;
|
||||||
currentNode = nextNode;
|
currentNode = nextNode;
|
||||||
@@ -183,7 +183,7 @@ export class UpstreamNodeLocator {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isActiveNode(parent, tag) || !this.isTheTargetNode(parent) || currentLink == null)
|
if (!isActiveNode(parent, tag) || !this.isTheTargetNode(parent, currentLink) || currentLink == null)
|
||||||
return [null, currentLink, currentInputSlot, currentNode];
|
return [null, currentLink, currentInputSlot, currentNode];
|
||||||
|
|
||||||
return [parent, currentLink, currentInputSlot, currentNode]
|
return [parent, currentLink, currentInputSlot, currentNode]
|
||||||
|
|||||||
@@ -1,18 +1,3 @@
|
|||||||
<script lang="ts" context="module">
|
|
||||||
export type QueueUIEntryStatus = QueueEntryStatus | "pending" | "running";
|
|
||||||
|
|
||||||
export type QueueUIEntry = {
|
|
||||||
entry: QueueEntry,
|
|
||||||
message: string,
|
|
||||||
submessage: string,
|
|
||||||
date?: string,
|
|
||||||
status: QueueUIEntryStatus,
|
|
||||||
images?: string[], // URLs
|
|
||||||
details?: string, // shown in a tooltip on hover
|
|
||||||
error?: WorkflowError
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import queueState, { type CompletedQueueEntry, type QueueEntry, type QueueEntryStatus } from "$lib/stores/queueState";
|
import queueState, { type CompletedQueueEntry, type QueueEntry, type QueueEntryStatus } from "$lib/stores/queueState";
|
||||||
import ProgressBar from "./ProgressBar.svelte";
|
import ProgressBar from "./ProgressBar.svelte";
|
||||||
@@ -20,7 +5,7 @@
|
|||||||
import Spinner from "./Spinner.svelte";
|
import Spinner from "./Spinner.svelte";
|
||||||
import PromptDisplay from "./PromptDisplay.svelte";
|
import PromptDisplay from "./PromptDisplay.svelte";
|
||||||
import { List, ListUl, Grid } from "svelte-bootstrap-icons";
|
import { List, ListUl, Grid } from "svelte-bootstrap-icons";
|
||||||
import { convertComfyOutputToComfyURL, convertFilenameToComfyURL, getNodeInfo, truncateString } from "$lib/utils"
|
import { getNodeInfo, type ComfyImageLocation } from "$lib/utils"
|
||||||
import type { Writable } from "svelte/store";
|
import type { Writable } from "svelte/store";
|
||||||
import type { QueueItemType } from "$lib/api";
|
import type { QueueItemType } from "$lib/api";
|
||||||
import { Button } from "@gradio/button";
|
import { Button } from "@gradio/button";
|
||||||
@@ -31,7 +16,7 @@
|
|||||||
import ComfyQueueListDisplay from "./ComfyQueueListDisplay.svelte";
|
import ComfyQueueListDisplay from "./ComfyQueueListDisplay.svelte";
|
||||||
import ComfyQueueGridDisplay from "./ComfyQueueGridDisplay.svelte";
|
import ComfyQueueGridDisplay from "./ComfyQueueGridDisplay.svelte";
|
||||||
import { WORKFLOWS_VIEW } from "./ComfyBoxWorkflowsView.svelte";
|
import { WORKFLOWS_VIEW } from "./ComfyBoxWorkflowsView.svelte";
|
||||||
import uiQueueState from "$lib/stores/uiQueueState";
|
import uiQueueState, { type QueueUIEntry } from "$lib/stores/uiQueueState";
|
||||||
|
|
||||||
export let app: ComfyApp;
|
export let app: ComfyApp;
|
||||||
|
|
||||||
@@ -125,7 +110,7 @@
|
|||||||
let showModal = false;
|
let showModal = false;
|
||||||
let expandAll = false;
|
let expandAll = false;
|
||||||
let selectedPrompt = null;
|
let selectedPrompt = null;
|
||||||
let selectedImages = [];
|
let selectedImages: ComfyImageLocation[] = [];
|
||||||
function showPrompt(entry: QueueUIEntry) {
|
function showPrompt(entry: QueueUIEntry) {
|
||||||
if (entry.error != null) {
|
if (entry.error != null) {
|
||||||
showModal = false;
|
showModal = false;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { QueueItemType } from "$lib/api";
|
import type { QueueItemType } from "$lib/api";
|
||||||
import { showLightbox } from "$lib/utils";
|
import { convertComfyOutputToComfyURL, showLightbox } from "$lib/utils";
|
||||||
import type { QueueUIEntry } from "./ComfyQueue.svelte";
|
import type { QueueUIEntry } from "./ComfyQueue.svelte";
|
||||||
import queueState from "$lib/stores/queueState";
|
import queueState from "$lib/stores/queueState";
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
allEntries = []
|
allEntries = []
|
||||||
for (const entry of entries) {
|
for (const entry of entries) {
|
||||||
for (const image of entry.images) {
|
for (const image of entry.images) {
|
||||||
allEntries.push([entry, image]);
|
allEntries.push([entry, convertComfyOutputToComfyURL(image, true)]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
allImages = allEntries.map(p => p[1]);
|
allImages = allEntries.map(p => p[1]);
|
||||||
@@ -56,6 +56,7 @@
|
|||||||
<img class="grid-entry-image"
|
<img class="grid-entry-image"
|
||||||
on:click={(e) => handleClick(e, entry, i)}
|
on:click={(e) => handleClick(e, entry, i)}
|
||||||
src={image}
|
src={image}
|
||||||
|
loading="lazy"
|
||||||
alt="thumbnail" />
|
alt="thumbnail" />
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
@@ -130,6 +131,8 @@
|
|||||||
.grid-entry-image {
|
.grid-entry-image {
|
||||||
aspect-ratio: 1 / 1;
|
aspect-ratio: 1 / 1;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
width: 100%;
|
||||||
|
max-width: unset;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { QueueItemType } from "$lib/api";
|
import type { QueueItemType } from "$lib/api";
|
||||||
import { showLightbox, truncateString } from "$lib/utils";
|
import { convertComfyOutputToComfyURL, showLightbox, truncateString } from "$lib/utils";
|
||||||
import type { QueueUIEntry } from "./ComfyQueue.svelte";
|
|
||||||
import queueState from "$lib/stores/queueState";
|
import queueState from "$lib/stores/queueState";
|
||||||
|
import type { QueueUIEntry } from "$lib/stores/uiQueueState";
|
||||||
|
|
||||||
export let entries: QueueUIEntry[] = [];
|
export let entries: QueueUIEntry[] = [];
|
||||||
export let showPrompt: (entry: QueueUIEntry) => void;
|
export let showPrompt: (entry: QueueUIEntry) => void;
|
||||||
@@ -39,11 +39,13 @@
|
|||||||
<div class="list-entry-images"
|
<div class="list-entry-images"
|
||||||
style="--cols: {Math.ceil(Math.sqrt(Math.min(entry.images.length, 4)))}" >
|
style="--cols: {Math.ceil(Math.sqrt(Math.min(entry.images.length, 4)))}" >
|
||||||
{#each entry.images.slice(0, 4) as image, i}
|
{#each entry.images.slice(0, 4) as image, i}
|
||||||
|
{@const imageURL = convertComfyOutputToComfyURL(image, true)}
|
||||||
<div>
|
<div>
|
||||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||||
<img class="list-entry-image"
|
<img class="list-entry-image"
|
||||||
on:click={(e) => showLightbox(entry.images, i, e)}
|
on:click={(e) => showLightbox(entry.images, i, e)}
|
||||||
src={image}
|
src={imageURL}
|
||||||
|
loading="lazy"
|
||||||
alt="thumbnail" />
|
alt="thumbnail" />
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
import Gallery from "$lib/components/gradio/gallery/Gallery.svelte";
|
import Gallery from "$lib/components/gradio/gallery/Gallery.svelte";
|
||||||
import { ImageViewer } from "$lib/ImageViewer";
|
import { ImageViewer } from "$lib/ImageViewer";
|
||||||
import type { Styles } from "@gradio/utils";
|
import type { Styles } from "@gradio/utils";
|
||||||
import { comfyFileToComfyBoxMetadata, comfyURLToComfyFile, countNewLines } from "$lib/utils";
|
import { comfyFileToComfyBoxMetadata, comfyURLToComfyFile, countNewLines, type ComfyImageLocation, convertComfyOutputToComfyURL } from "$lib/utils";
|
||||||
import ReceiveOutputTargets from "./modal/ReceiveOutputTargets.svelte";
|
import ReceiveOutputTargets from "./modal/ReceiveOutputTargets.svelte";
|
||||||
import workflowState, { type ComfyBoxWorkflow, type WorkflowReceiveOutputTargets } from "$lib/stores/workflowState";
|
import workflowState, { type ComfyBoxWorkflow, type WorkflowReceiveOutputTargets } from "$lib/stores/workflowState";
|
||||||
import type { ComfyReceiveOutputNode } from "$lib/nodes/actions";
|
import type { ComfyReceiveOutputNode } from "$lib/nodes/actions";
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
const splitLength = 50;
|
const splitLength = 50;
|
||||||
|
|
||||||
export let prompt: SerializedPromptInputsAll;
|
export let prompt: SerializedPromptInputsAll;
|
||||||
export let images: string[] = []; // list of image URLs to ComfyUI's /view? endpoint
|
export let images: ComfyImageLocation[] = [];
|
||||||
export let isMobile: boolean = false;
|
export let isMobile: boolean = false;
|
||||||
export let expandAll: boolean = false;
|
export let expandAll: boolean = false;
|
||||||
export let closeModal: () => void;
|
export let closeModal: () => void;
|
||||||
@@ -36,10 +36,7 @@
|
|||||||
let litegraphType = "(none)"
|
let litegraphType = "(none)"
|
||||||
|
|
||||||
$: if (images.length > 0) {
|
$: if (images.length > 0) {
|
||||||
// since the image links come from gradio, have to parse the URL for the
|
comfyBoxImages = images.map(comfyFileToComfyBoxMetadata);
|
||||||
// ComfyImageLocation params
|
|
||||||
comfyBoxImages = images.map(comfyURLToComfyFile)
|
|
||||||
.map(comfyFileToComfyBoxMetadata);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
comfyBoxImages = []
|
comfyBoxImages = []
|
||||||
@@ -199,7 +196,7 @@
|
|||||||
<div class="image-container">
|
<div class="image-container">
|
||||||
<Block>
|
<Block>
|
||||||
<Gallery
|
<Gallery
|
||||||
value={images}
|
value={images.map(convertComfyOutputToComfyURL)}
|
||||||
label=""
|
label=""
|
||||||
show_label={false}
|
show_label={false}
|
||||||
style={galleryStyle}
|
style={galleryStyle}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
export let label: string;
|
export let label: string;
|
||||||
export let root: string = "";
|
export let root: string = "";
|
||||||
export let root_url: null | string = null;
|
export let root_url: null | string = null;
|
||||||
export let scrollOnUpdate = false;
|
export let focusOnScroll = false;
|
||||||
export let value: Array<string> | Array<FileData> | null = null;
|
export let value: Array<string> | Array<FileData> | null = null;
|
||||||
export let style: Styles = {
|
export let style: Styles = {
|
||||||
grid_cols: [2],
|
grid_cols: [2],
|
||||||
@@ -121,10 +121,10 @@
|
|||||||
let container: HTMLDivElement;
|
let container: HTMLDivElement;
|
||||||
|
|
||||||
async function scroll_to_img(index: number | null) {
|
async function scroll_to_img(index: number | null) {
|
||||||
if (!scrollOnUpdate) return;
|
|
||||||
if (typeof index !== "number") return;
|
if (typeof index !== "number") return;
|
||||||
await tick();
|
await tick();
|
||||||
|
|
||||||
|
if (focusOnScroll)
|
||||||
el[index].focus();
|
el[index].focus();
|
||||||
|
|
||||||
const { left: container_left, width: container_width } =
|
const { left: container_left, width: container_width } =
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import ComfyGraphNode, { type ComfyGraphNodeProperties } from "./ComfyGraphNode"
|
|||||||
import { Watch } from "@litegraph-ts/nodes-basic";
|
import { Watch } from "@litegraph-ts/nodes-basic";
|
||||||
import { nextLetter } from "$lib/utils";
|
import { nextLetter } from "$lib/utils";
|
||||||
|
|
||||||
export type PickFirstMode = "anyActiveLink" | "truthy" | "dataNonNull"
|
export type PickFirstMode = "anyActiveLink" | "dataTruthy" | "dataNonNull"
|
||||||
|
|
||||||
export interface ComfyPickFirstNodeProperties extends ComfyGraphNodeProperties {
|
export interface ComfyPickFirstNodeProperties extends ComfyGraphNodeProperties {
|
||||||
mode: PickFirstMode
|
mode: PickFirstMode
|
||||||
@@ -12,7 +12,7 @@ export interface ComfyPickFirstNodeProperties extends ComfyGraphNodeProperties {
|
|||||||
export default class ComfyPickFirstNode extends ComfyGraphNode {
|
export default class ComfyPickFirstNode extends ComfyGraphNode {
|
||||||
override properties: ComfyPickFirstNodeProperties = {
|
override properties: ComfyPickFirstNodeProperties = {
|
||||||
tags: [],
|
tags: [],
|
||||||
mode: "dataNonNull"
|
mode: "anyActiveLink"
|
||||||
}
|
}
|
||||||
|
|
||||||
static slotLayout: SlotLayout = {
|
static slotLayout: SlotLayout = {
|
||||||
@@ -36,21 +36,39 @@ export default class ComfyPickFirstNode extends ComfyGraphNode {
|
|||||||
super(title);
|
super(title);
|
||||||
this.displayWidget = this.addWidget("text", "Value", "")
|
this.displayWidget = this.addWidget("text", "Value", "")
|
||||||
this.displayWidget.disabled = true;
|
this.displayWidget.disabled = true;
|
||||||
this.modeWidget = this.addWidget("combo", "Mode", this.properties.mode, null, { property: "mode", values: ["anyActiveLink", "truthy", "dataNonNull"] })
|
this.modeWidget = this.addWidget("combo", "Mode", this.properties.mode, null, { property: "mode", values: ["anyActiveLink", "dataTruthy", "dataNonNull"] })
|
||||||
}
|
}
|
||||||
|
|
||||||
override onDrawBackground(ctx: CanvasRenderingContext2D) {
|
override onDrawBackground(ctx: CanvasRenderingContext2D) {
|
||||||
if (this.flags.collapsed || this.selected === -1) {
|
if (this.flags.collapsed) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.selected === -1) {
|
||||||
|
// Draw an X indicating nothing matched the selection criteria
|
||||||
|
const y = LiteGraph.NODE_SLOT_HEIGHT + 6;
|
||||||
|
ctx.lineWidth = 5;
|
||||||
|
ctx.strokeStyle = "red";
|
||||||
|
ctx.beginPath();
|
||||||
|
|
||||||
|
ctx.moveTo(50 - 15, y - 15);
|
||||||
|
ctx.lineTo(50 + 15, y + 15);
|
||||||
|
ctx.stroke();
|
||||||
|
|
||||||
|
ctx.moveTo(50 + 15, y - 15);
|
||||||
|
ctx.lineTo(50 - 15, y + 15);
|
||||||
|
ctx.stroke();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Draw an arrow pointing to the selected input
|
||||||
ctx.fillStyle = "#AFB";
|
ctx.fillStyle = "#AFB";
|
||||||
var y = (this.selected) * LiteGraph.NODE_SLOT_HEIGHT + 6;
|
const y = (this.selected) * LiteGraph.NODE_SLOT_HEIGHT + 6;
|
||||||
ctx.beginPath();
|
ctx.beginPath();
|
||||||
ctx.moveTo(50, y);
|
ctx.moveTo(50, y);
|
||||||
ctx.lineTo(50, y + LiteGraph.NODE_SLOT_HEIGHT);
|
ctx.lineTo(50, y + LiteGraph.NODE_SLOT_HEIGHT);
|
||||||
ctx.lineTo(34, y + LiteGraph.NODE_SLOT_HEIGHT * 0.5);
|
ctx.lineTo(34, y + LiteGraph.NODE_SLOT_HEIGHT * 0.5);
|
||||||
ctx.fill();
|
ctx.fill();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
override onConnectionsChange(
|
override onConnectionsChange(
|
||||||
@@ -113,7 +131,7 @@ export default class ComfyPickFirstNode extends ComfyGraphNode {
|
|||||||
else {
|
else {
|
||||||
if (this.properties.mode === "dataNonNull")
|
if (this.properties.mode === "dataNonNull")
|
||||||
return link.data != null;
|
return link.data != null;
|
||||||
else if (this.properties.mode === "truthy")
|
else if (this.properties.mode === "dataTruthy")
|
||||||
return Boolean(link.data)
|
return Boolean(link.data)
|
||||||
else // anyActiveLink
|
else // anyActiveLink
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -73,10 +73,10 @@ export default class ComfySetNodeModeAdvancedAction extends ComfyGraphNode {
|
|||||||
|
|
||||||
if (hasTag) {
|
if (hasTag) {
|
||||||
let newMode: NodeMode;
|
let newMode: NodeMode;
|
||||||
if (enable && action.enable) {
|
if (action.enable) {
|
||||||
newMode = NodeMode.ALWAYS;
|
newMode = enable ? NodeMode.ALWAYS : NodeMode.NEVER;
|
||||||
} else {
|
} else {
|
||||||
newMode = NodeMode.NEVER;
|
newMode = enable ? NodeMode.NEVER : NodeMode.ALWAYS;
|
||||||
}
|
}
|
||||||
nodeChanges[node.id] = newMode
|
nodeChanges[node.id] = newMode
|
||||||
}
|
}
|
||||||
@@ -88,7 +88,12 @@ export default class ComfySetNodeModeAdvancedAction extends ComfyGraphNode {
|
|||||||
const container = entry.dragItem;
|
const container = entry.dragItem;
|
||||||
const hasTag = container.attrs.tags.indexOf(action.tag) != -1;
|
const hasTag = container.attrs.tags.indexOf(action.tag) != -1;
|
||||||
if (hasTag) {
|
if (hasTag) {
|
||||||
const hidden = !(enable && action.enable)
|
let hidden: boolean;
|
||||||
|
if (action.enable) {
|
||||||
|
hidden = !enable
|
||||||
|
} else {
|
||||||
|
hidden = enable;
|
||||||
|
}
|
||||||
widgetChanges[container.id] = hidden
|
widgetChanges[container.id] = hidden
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -170,7 +170,6 @@ export default class ComfyComboNode extends ComfyWidgetNode<string> {
|
|||||||
super.stripUserState(o);
|
super.stripUserState(o);
|
||||||
o.properties.values = []
|
o.properties.values = []
|
||||||
o.properties.defaultValue = null;
|
o.properties.defaultValue = null;
|
||||||
(o as any).comfyValue = null
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ import ComfyWidgetNode from "./ComfyWidgetNode";
|
|||||||
export interface ComfyGalleryProperties extends ComfyWidgetProperties {
|
export interface ComfyGalleryProperties extends ComfyWidgetProperties {
|
||||||
index: number | null,
|
index: number | null,
|
||||||
updateMode: "replace" | "append",
|
updateMode: "replace" | "append",
|
||||||
autoSelectOnUpdate: boolean
|
autoSelectOnUpdate: boolean,
|
||||||
|
showPreviews: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class ComfyGalleryNode extends ComfyWidgetNode<ComfyBoxImageMetadata[]> {
|
export default class ComfyGalleryNode extends ComfyWidgetNode<ComfyBoxImageMetadata[]> {
|
||||||
@@ -18,7 +19,8 @@ export default class ComfyGalleryNode extends ComfyWidgetNode<ComfyBoxImageMetad
|
|||||||
defaultValue: [],
|
defaultValue: [],
|
||||||
index: 0,
|
index: 0,
|
||||||
updateMode: "replace",
|
updateMode: "replace",
|
||||||
autoSelectOnUpdate: true
|
autoSelectOnUpdate: true,
|
||||||
|
showPreviews: true
|
||||||
}
|
}
|
||||||
|
|
||||||
static slotLayout: SlotLayout = {
|
static slotLayout: SlotLayout = {
|
||||||
|
|||||||
@@ -357,9 +357,4 @@ export default abstract class ComfyWidgetNode<T = any> extends ComfyGraphNode {
|
|||||||
this.value.set(value);
|
this.value.set(value);
|
||||||
this.shownOutputProperties = (o as any).shownOutputProperties;
|
this.shownOutputProperties = (o as any).shownOutputProperties;
|
||||||
}
|
}
|
||||||
|
|
||||||
override stripUserState(o: SerializedLGraphNode) {
|
|
||||||
super.stripUserState(o);
|
|
||||||
(o as any).comfyValue = LiteGraph.cloneObject(this.properties.defaultValue);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -92,6 +92,11 @@ function notifyToast(text: string, options: NotifyOptions) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function notifyNative(text: string, options: NotifyOptions) {
|
function notifyNative(text: string, options: NotifyOptions) {
|
||||||
|
if (window.Notification == null) {
|
||||||
|
console.warn("[notify] No Notification available on window")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if (document.hasFocus())
|
if (document.hasFocus())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
@@ -119,6 +119,36 @@ const defNotifications: ConfigDefEnum<"notifications", NotificationState> = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export enum OutputThumbnailsMode {
|
||||||
|
Auto,
|
||||||
|
AlwaysThumbnail,
|
||||||
|
AlwaysFullSize
|
||||||
|
}
|
||||||
|
|
||||||
|
const defOutputThumbnails: ConfigDefEnum<"outputThumbnails", OutputThumbnailsMode> = {
|
||||||
|
name: "outputThumbnails",
|
||||||
|
type: "enum",
|
||||||
|
defaultValue: OutputThumbnailsMode.Auto,
|
||||||
|
category: "ui",
|
||||||
|
description: "If enabled, send back smaller sized output image thumbnails for gallery/queue/history. Enable if you have slow network or are using Colab.",
|
||||||
|
options: {
|
||||||
|
values: [
|
||||||
|
{
|
||||||
|
value: OutputThumbnailsMode.Auto,
|
||||||
|
label: "Autodetect"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: OutputThumbnailsMode.AlwaysThumbnail,
|
||||||
|
label: "Always use thumbnails"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: OutputThumbnailsMode.AlwaysFullSize,
|
||||||
|
label: "Always use full size"
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const defAlwaysStripUserState: ConfigDefBoolean<"alwaysStripUserState"> = {
|
const defAlwaysStripUserState: ConfigDefBoolean<"alwaysStripUserState"> = {
|
||||||
name: "alwaysStripUserState",
|
name: "alwaysStripUserState",
|
||||||
type: "boolean",
|
type: "boolean",
|
||||||
@@ -207,6 +237,7 @@ export const CONFIG_DEFS = [
|
|||||||
defComfyUIHostname,
|
defComfyUIHostname,
|
||||||
defComfyUIPort,
|
defComfyUIPort,
|
||||||
defNotifications,
|
defNotifications,
|
||||||
|
defOutputThumbnails,
|
||||||
defAlwaysStripUserState,
|
defAlwaysStripUserState,
|
||||||
defPromptForWorkflowName,
|
defPromptForWorkflowName,
|
||||||
defConfirmWhenUnloadingUnsavedChanges,
|
defConfirmWhenUnloadingUnsavedChanges,
|
||||||
|
|||||||
@@ -615,6 +615,14 @@ const ALL_ATTRIBUTES: AttributesSpecList = [
|
|||||||
validNodeTypes: ["ui/gallery"],
|
validNodeTypes: ["ui/gallery"],
|
||||||
defaultValue: true
|
defaultValue: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "showPreviews",
|
||||||
|
type: "boolean",
|
||||||
|
location: "nodeProps",
|
||||||
|
editable: true,
|
||||||
|
validNodeTypes: ["ui/gallery"],
|
||||||
|
defaultValue: true
|
||||||
|
},
|
||||||
|
|
||||||
// ImageUpload
|
// ImageUpload
|
||||||
{
|
{
|
||||||
@@ -681,6 +689,13 @@ const ALL_ATTRIBUTES: AttributesSpecList = [
|
|||||||
editable: true,
|
editable: true,
|
||||||
defaultValue: true
|
defaultValue: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "queuePromptButtonDefaultWorkflow",
|
||||||
|
type: "string",
|
||||||
|
location: "workflow",
|
||||||
|
editable: true,
|
||||||
|
defaultValue: ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "showDefaultNotifications",
|
name: "showDefaultNotifications",
|
||||||
type: "boolean",
|
type: "boolean",
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import { v4 as uuidv4 } from "uuid";
|
|||||||
import workflowState, { type WorkflowError, type WorkflowExecutionError, type WorkflowInstID, type WorkflowValidationError } from "./workflowState";
|
import workflowState, { type WorkflowError, type WorkflowExecutionError, type WorkflowInstID, type WorkflowValidationError } from "./workflowState";
|
||||||
import configState from "./configState";
|
import configState from "./configState";
|
||||||
import uiQueueState from "./uiQueueState";
|
import uiQueueState from "./uiQueueState";
|
||||||
|
import type { NodeID } from "@litegraph-ts/core";
|
||||||
|
|
||||||
export type QueueEntryStatus = "success" | "validation_failed" | "error" | "interrupted" | "all_cached" | "unknown";
|
export type QueueEntryStatus = "success" | "validation_failed" | "error" | "interrupted" | "all_cached" | "unknown";
|
||||||
|
|
||||||
@@ -21,6 +22,7 @@ type QueueStateOps = {
|
|||||||
executionCached: (promptID: PromptID, nodes: ComfyNodeID[]) => void,
|
executionCached: (promptID: PromptID, nodes: ComfyNodeID[]) => void,
|
||||||
executionError: (error: ComfyExecutionError) => CompletedQueueEntry | null,
|
executionError: (error: ComfyExecutionError) => CompletedQueueEntry | null,
|
||||||
progressUpdated: (progress: Progress) => void
|
progressUpdated: (progress: Progress) => void
|
||||||
|
previewUpdated: (imageBlob: Blob) => void
|
||||||
getQueueEntry: (promptID: PromptID) => QueueEntry | null;
|
getQueueEntry: (promptID: PromptID) => QueueEntry | null;
|
||||||
afterQueued: (workflowID: WorkflowInstID, promptID: PromptID, number: number, prompt: SerializedPromptInputsAll, extraData: any) => void
|
afterQueued: (workflowID: WorkflowInstID, promptID: PromptID, number: number, prompt: SerializedPromptInputsAll, extraData: any) => void
|
||||||
queueItemDeleted: (type: QueueItemType, id: PromptID) => void;
|
queueItemDeleted: (type: QueueItemType, id: PromptID) => void;
|
||||||
@@ -81,8 +83,33 @@ export type QueueState = {
|
|||||||
queuePending: Writable<QueueEntry[]>,
|
queuePending: Writable<QueueEntry[]>,
|
||||||
queueCompleted: Writable<CompletedQueueEntry[]>,
|
queueCompleted: Writable<CompletedQueueEntry[]>,
|
||||||
queueRemaining: number | "X" | null;
|
queueRemaining: number | "X" | null;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Currently executing node if any
|
||||||
|
*/
|
||||||
runningNodeID: ComfyNodeID | null;
|
runningNodeID: ComfyNodeID | null;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Currently executing prompt if any
|
||||||
|
*/
|
||||||
|
runningPromptID: PromptID | null;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Nodes which should be rendered as "executing" in the frontend (green border).
|
||||||
|
* This includes the running node and all its parent subgraphs
|
||||||
|
*/
|
||||||
|
executingNodes: Set<NodeID>;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Progress for the current node reported by the frontend
|
||||||
|
*/
|
||||||
progress: Progress | null,
|
progress: Progress | null,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Image preview URL
|
||||||
|
*/
|
||||||
|
previewURL: string | null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If true, user pressed the "Interrupt" button in the frontend. Disable the
|
* If true, user pressed the "Interrupt" button in the frontend. Disable the
|
||||||
* button and wait until the next prompt starts running to re-enable it
|
* button and wait until the next prompt starts running to re-enable it
|
||||||
@@ -98,7 +125,9 @@ const store: Writable<QueueState> = writable({
|
|||||||
queueCompleted: writable([]),
|
queueCompleted: writable([]),
|
||||||
queueRemaining: null,
|
queueRemaining: null,
|
||||||
runningNodeID: null,
|
runningNodeID: null,
|
||||||
|
executingNodes: new Set(),
|
||||||
progress: null,
|
progress: null,
|
||||||
|
preview: null,
|
||||||
isInterrupting: false
|
isInterrupting: false
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -155,6 +184,19 @@ function progressUpdated(progress: Progress) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function previewUpdated(imageBlob: Blob) {
|
||||||
|
console.debug("[queueState] previewUpdated", imageBlob?.type)
|
||||||
|
store.update(s => {
|
||||||
|
if (s.runningNodeID == null) {
|
||||||
|
s.previewURL = null;
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
s.previewURL = URL.createObjectURL(imageBlob);
|
||||||
|
return s;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
function statusUpdated(status: ComfyAPIStatusResponse | null) {
|
function statusUpdated(status: ComfyAPIStatusResponse | null) {
|
||||||
console.debug("[queueState] statusUpdated", status)
|
console.debug("[queueState] statusUpdated", status)
|
||||||
store.update((s) => {
|
store.update((s) => {
|
||||||
@@ -272,6 +314,7 @@ function executingUpdated(promptID: PromptID, runningNodeID: ComfyNodeID | null)
|
|||||||
|
|
||||||
store.update((s) => {
|
store.update((s) => {
|
||||||
s.progress = null;
|
s.progress = null;
|
||||||
|
s.executingNodes.clear();
|
||||||
|
|
||||||
const [index, entry, queue] = findEntryInPending(promptID);
|
const [index, entry, queue] = findEntryInPending(promptID);
|
||||||
if (runningNodeID != null) {
|
if (runningNodeID != null) {
|
||||||
@@ -279,6 +322,18 @@ function executingUpdated(promptID: PromptID, runningNodeID: ComfyNodeID | null)
|
|||||||
entry.nodesRan.add(runningNodeID)
|
entry.nodesRan.add(runningNodeID)
|
||||||
}
|
}
|
||||||
s.runningNodeID = runningNodeID;
|
s.runningNodeID = runningNodeID;
|
||||||
|
s.runningPromptID = promptID;
|
||||||
|
|
||||||
|
if (entry?.extraData?.workflowID) {
|
||||||
|
const workflow = workflowState.getWorkflow(entry.extraData.workflowID);
|
||||||
|
if (workflow != null) {
|
||||||
|
let node = workflow.graph.getNodeByIdRecursive(s.runningNodeID);
|
||||||
|
while (node != null) {
|
||||||
|
s.executingNodes.add(node.id);
|
||||||
|
node = node.graph?._subgraph_node;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Prompt finished executing.
|
// Prompt finished executing.
|
||||||
@@ -309,7 +364,10 @@ function executingUpdated(promptID: PromptID, runningNodeID: ComfyNodeID | null)
|
|||||||
console.debug("[queueState] Could not find in pending! (executingUpdated)", promptID)
|
console.debug("[queueState] Could not find in pending! (executingUpdated)", promptID)
|
||||||
}
|
}
|
||||||
s.progress = null;
|
s.progress = null;
|
||||||
|
s.previewURL = null;
|
||||||
s.runningNodeID = null;
|
s.runningNodeID = null;
|
||||||
|
s.runningPromptID = null;
|
||||||
|
s.executingNodes.clear();
|
||||||
}
|
}
|
||||||
entry_ = entry;
|
entry_ = entry;
|
||||||
return s
|
return s
|
||||||
@@ -333,7 +391,10 @@ function executionCached(promptID: PromptID, nodes: ComfyNodeID[]) {
|
|||||||
}
|
}
|
||||||
s.isInterrupting = false; // TODO move to start
|
s.isInterrupting = false; // TODO move to start
|
||||||
s.progress = null;
|
s.progress = null;
|
||||||
|
s.previewURL = null;
|
||||||
s.runningNodeID = null;
|
s.runningNodeID = null;
|
||||||
|
s.runningPromptID = null;
|
||||||
|
s.executingNodes.clear();
|
||||||
return s
|
return s
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -350,7 +411,10 @@ function executionError(error: ComfyExecutionError): CompletedQueueEntry | null
|
|||||||
console.error("[queueState] Could not find in pending! (executionError)", error.prompt_id)
|
console.error("[queueState] Could not find in pending! (executionError)", error.prompt_id)
|
||||||
}
|
}
|
||||||
s.progress = null;
|
s.progress = null;
|
||||||
|
s.previewURL = null;
|
||||||
s.runningNodeID = null;
|
s.runningNodeID = null;
|
||||||
|
s.runningPromptID = null;
|
||||||
|
s.executingNodes.clear();
|
||||||
return s
|
return s
|
||||||
})
|
})
|
||||||
return entry_;
|
return entry_;
|
||||||
@@ -384,6 +448,9 @@ function executionStart(promptID: PromptID) {
|
|||||||
moveToRunning(index, queue)
|
moveToRunning(index, queue)
|
||||||
}
|
}
|
||||||
s.isInterrupting = false;
|
s.isInterrupting = false;
|
||||||
|
s.runningNodeID = null;
|
||||||
|
s.runningPromptID = promptID;
|
||||||
|
s.executingNodes.clear();
|
||||||
return s
|
return s
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -447,7 +514,10 @@ function queueCleared(type: QueueItemType) {
|
|||||||
s.queuePending.set([]);
|
s.queuePending.set([]);
|
||||||
s.queueRemaining = 0;
|
s.queueRemaining = 0;
|
||||||
s.runningNodeID = null;
|
s.runningNodeID = null;
|
||||||
|
s.runningPromptID = null;
|
||||||
s.progress = null;
|
s.progress = null;
|
||||||
|
s.previewURL = null;
|
||||||
|
s.executingNodes.clear();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
s.queueCompleted.set([])
|
s.queueCompleted.set([])
|
||||||
@@ -501,6 +571,7 @@ const queueStateStore: WritableQueueStateStore =
|
|||||||
historyUpdated,
|
historyUpdated,
|
||||||
statusUpdated,
|
statusUpdated,
|
||||||
progressUpdated,
|
progressUpdated,
|
||||||
|
previewUpdated,
|
||||||
executionStart,
|
executionStart,
|
||||||
executingUpdated,
|
executingUpdated,
|
||||||
executionCached,
|
executionCached,
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import type { PromptID, QueueItemType } from '$lib/api';
|
import type { PromptID, QueueItemType } from '$lib/api';
|
||||||
|
import type { ComfyImageLocation } from "$lib/utils";
|
||||||
import { get, writable } from 'svelte/store';
|
import { get, writable } from 'svelte/store';
|
||||||
import type { Readable, Writable } from 'svelte/store';
|
import type { Readable, Writable } from 'svelte/store';
|
||||||
import queueState, { type CompletedQueueEntry, type QueueEntry } from './queueState';
|
import queueState, { QueueEntryStatus, type CompletedQueueEntry, type QueueEntry } from './queueState';
|
||||||
import type { WorkflowError } from './workflowState';
|
import type { WorkflowError } from './workflowState';
|
||||||
import { convertComfyOutputToComfyURL } from '$lib/utils';
|
import { convertComfyOutputToComfyURL } from '$lib/utils';
|
||||||
|
|
||||||
@@ -13,7 +14,7 @@ export type QueueUIEntry = {
|
|||||||
submessage: string,
|
submessage: string,
|
||||||
date?: string,
|
date?: string,
|
||||||
status: QueueUIEntryStatus,
|
status: QueueUIEntryStatus,
|
||||||
images?: string[], // URLs
|
images?: ComfyImageLocation[], // URLs
|
||||||
details?: string, // shown in a tooltip on hover
|
details?: string, // shown in a tooltip on hover
|
||||||
error?: WorkflowError
|
error?: WorkflowError
|
||||||
}
|
}
|
||||||
@@ -94,13 +95,12 @@ function convertPendingEntry(entry: QueueEntry, status: QueueUIEntryStatus): Que
|
|||||||
|
|
||||||
const thumbnails = entry.extraData?.thumbnails
|
const thumbnails = entry.extraData?.thumbnails
|
||||||
if (thumbnails) {
|
if (thumbnails) {
|
||||||
result.images = thumbnails.map(convertComfyOutputToComfyURL);
|
result.images = [...thumbnails]
|
||||||
}
|
}
|
||||||
|
|
||||||
const outputs = Object.values(entry.outputs)
|
const outputs = Object.values(entry.outputs)
|
||||||
.filter(o => o.images)
|
.filter(o => o.images)
|
||||||
.flatMap(o => o.images)
|
.flatMap(o => o.images)
|
||||||
.map(convertComfyOutputToComfyURL);
|
|
||||||
if (outputs) {
|
if (outputs) {
|
||||||
result.images = result.images.concat(outputs)
|
result.images = result.images.concat(outputs)
|
||||||
}
|
}
|
||||||
@@ -114,7 +114,6 @@ function convertCompletedEntry(entry: CompletedQueueEntry): QueueUIEntry {
|
|||||||
const images = Object.values(entry.entry.outputs)
|
const images = Object.values(entry.entry.outputs)
|
||||||
.filter(o => o.images)
|
.filter(o => o.images)
|
||||||
.flatMap(o => o.images)
|
.flatMap(o => o.images)
|
||||||
.map(convertComfyOutputToComfyURL);
|
|
||||||
result.images = images
|
result.images = images
|
||||||
|
|
||||||
if (entry.message)
|
if (entry.message)
|
||||||
@@ -132,6 +131,8 @@ function updateFromQueue(queuePending: QueueEntry[], queueRunning: QueueEntry[])
|
|||||||
// newest entries appear at the top
|
// newest entries appear at the top
|
||||||
s.queuedEntries = queuePending.map((e) => convertPendingEntry(e, "pending")).reverse();
|
s.queuedEntries = queuePending.map((e) => convertPendingEntry(e, "pending")).reverse();
|
||||||
s.runningEntries = queueRunning.map((e) => convertPendingEntry(e, "running")).reverse();
|
s.runningEntries = queueRunning.map((e) => convertPendingEntry(e, "running")).reverse();
|
||||||
|
s.queuedEntries.sort((a, b) => a.entry.number - b.entry.number)
|
||||||
|
s.runningEntries.sort((a, b) => a.entry.number - b.entry.number)
|
||||||
s.queueUIEntries = s.queuedEntries.concat(s.runningEntries);
|
s.queueUIEntries = s.queuedEntries.concat(s.runningEntries);
|
||||||
console.warn("[ComfyQueue] BUILDQUEUE", s.queuedEntries.length, s.runningEntries.length)
|
console.warn("[ComfyQueue] BUILDQUEUE", s.queuedEntries.length, s.runningEntries.length)
|
||||||
return s;
|
return s;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ export type UIState = {
|
|||||||
autoAddUI: boolean,
|
autoAddUI: boolean,
|
||||||
uiUnlocked: boolean,
|
uiUnlocked: boolean,
|
||||||
uiEditMode: UIEditMode,
|
uiEditMode: UIEditMode,
|
||||||
|
hidePreviews: boolean,
|
||||||
|
|
||||||
reconnecting: boolean,
|
reconnecting: boolean,
|
||||||
forceSaveUserState: boolean | null,
|
forceSaveUserState: boolean | null,
|
||||||
@@ -30,6 +31,7 @@ const store: Writable<UIState> = writable(
|
|||||||
autoAddUI: true,
|
autoAddUI: true,
|
||||||
uiUnlocked: false,
|
uiUnlocked: false,
|
||||||
uiEditMode: "widgets",
|
uiEditMode: "widgets",
|
||||||
|
hidePreviews: false,
|
||||||
|
|
||||||
reconnecting: false,
|
reconnecting: false,
|
||||||
forceSaveUserState: null,
|
forceSaveUserState: null,
|
||||||
|
|||||||
@@ -57,6 +57,12 @@ export type WorkflowAttributes = {
|
|||||||
*/
|
*/
|
||||||
queuePromptButtonRunWorkflow: boolean,
|
queuePromptButtonRunWorkflow: boolean,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default subgraph to run if `queuePromptButtonRunWorkflow` is `true`. Set
|
||||||
|
* to blank to run the default subgraph (tagless).
|
||||||
|
*/
|
||||||
|
queuePromptButtonDefaultWorkflow: string,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If true, notifications will be shown when a prompt is queued and
|
* If true, notifications will be shown when a prompt is queued and
|
||||||
* completed. Set to false if you need more detailed control over the
|
* completed. Set to false if you need more detailed control over the
|
||||||
|
|||||||
139
src/lib/utils.ts
139
src/lib/utils.ts
@@ -9,6 +9,7 @@ import workflowState, { type WorkflowReceiveOutputTargets } from "./stores/workf
|
|||||||
import { ImageViewer } from "./ImageViewer";
|
import { ImageViewer } from "./ImageViewer";
|
||||||
import configState from "$lib/stores/configState";
|
import configState from "$lib/stores/configState";
|
||||||
import SendOutputModal, { type SendOutputModalResult } from "$lib/components/modal/SendOutputModal.svelte";
|
import SendOutputModal, { type SendOutputModalResult } from "$lib/components/modal/SendOutputModal.svelte";
|
||||||
|
import { OutputThumbnailsMode } from "./stores/configDefs";
|
||||||
|
|
||||||
export function clamp(n: number, min: number, max: number): number {
|
export function clamp(n: number, min: number, max: number): number {
|
||||||
if (max <= min)
|
if (max <= min)
|
||||||
@@ -300,29 +301,78 @@ export function convertComfyOutputToGradio(output: SerializedPromptOutput): Grad
|
|||||||
|
|
||||||
export function convertComfyOutputEntryToGradio(r: ComfyImageLocation): GradioFileData {
|
export function convertComfyOutputEntryToGradio(r: ComfyImageLocation): GradioFileData {
|
||||||
const url = configState.getBackendURL();
|
const url = configState.getBackendURL();
|
||||||
const params = new URLSearchParams(r)
|
|
||||||
const fileData: GradioFileData = {
|
const fileData: GradioFileData = {
|
||||||
name: r.filename,
|
name: r.filename,
|
||||||
orig_name: r.filename,
|
orig_name: r.filename,
|
||||||
is_file: false,
|
is_file: false,
|
||||||
data: url + "/view?" + params
|
data: convertComfyOutputToComfyURL(r)
|
||||||
}
|
}
|
||||||
return fileData
|
return fileData
|
||||||
}
|
}
|
||||||
|
|
||||||
export function convertComfyOutputToComfyURL(output: string | ComfyImageLocation): string {
|
function convertComfyPreviewTypeToString(preview: ComfyImagePreviewType): string {
|
||||||
|
const arr = []
|
||||||
|
switch (preview.format) {
|
||||||
|
case ComfyImagePreviewFormat.JPEG:
|
||||||
|
arr.push("jpeg")
|
||||||
|
break;
|
||||||
|
case ComfyImagePreviewFormat.WebP:
|
||||||
|
default:
|
||||||
|
arr.push("webp")
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
arr.push(String(preview.quality))
|
||||||
|
|
||||||
|
return arr.join(";")
|
||||||
|
}
|
||||||
|
|
||||||
|
export function convertComfyOutputToComfyURL(output: string | ComfyImageLocation, thumbnail: boolean = false): string {
|
||||||
if (typeof output === "string")
|
if (typeof output === "string")
|
||||||
return output;
|
return output;
|
||||||
|
|
||||||
const params = new URLSearchParams(output)
|
const paramsObj = {
|
||||||
const url = configState.getBackendURL();
|
filename: output.filename,
|
||||||
return url + "/view?" + params
|
subfolder: output.subfolder,
|
||||||
|
type: output.type
|
||||||
}
|
}
|
||||||
|
|
||||||
export function convertGradioFileDataToComfyURL(image: GradioFileData, type: ComfyUploadImageType = "input"): string {
|
if (thumbnail) {
|
||||||
const baseUrl = configState.getBackendURL();
|
let doThumbnail: boolean;
|
||||||
const params = new URLSearchParams({ filename: image.name, subfolder: "", type })
|
|
||||||
return `${baseUrl}/view?${params}`
|
switch (get(configState).outputThumbnails) {
|
||||||
|
case OutputThumbnailsMode.AlwaysFullSize:
|
||||||
|
doThumbnail = false;
|
||||||
|
break;
|
||||||
|
case OutputThumbnailsMode.AlwaysThumbnail:
|
||||||
|
doThumbnail = true;
|
||||||
|
break;
|
||||||
|
case OutputThumbnailsMode.Auto:
|
||||||
|
default:
|
||||||
|
// TODO detect colab, etc.
|
||||||
|
if (isMobileBrowser(navigator.userAgent)) {
|
||||||
|
doThumbnail = true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
doThumbnail = false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (doThumbnail) {
|
||||||
|
output.preview = {
|
||||||
|
format: ComfyImagePreviewFormat.WebP,
|
||||||
|
quality: 80
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (output.preview != null)
|
||||||
|
paramsObj["preview"] = convertComfyPreviewTypeToString(output.preview)
|
||||||
|
|
||||||
|
const params = new URLSearchParams(paramsObj)
|
||||||
|
const url = configState.getBackendURL();
|
||||||
|
return url + "/view?" + params
|
||||||
}
|
}
|
||||||
|
|
||||||
export function convertGradioFileDataToComfyOutput(fileData: GradioFileData, type: ComfyUploadImageType = "input"): ComfyImageLocation {
|
export function convertGradioFileDataToComfyOutput(fileData: GradioFileData, type: ComfyUploadImageType = "input"): ComfyImageLocation {
|
||||||
@@ -336,18 +386,6 @@ export function convertGradioFileDataToComfyOutput(fileData: GradioFileData, typ
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function convertFilenameToComfyURL(filename: string,
|
|
||||||
subfolder: string = "",
|
|
||||||
type: "input" | "output" | "temp" = "output"): string {
|
|
||||||
const params = new URLSearchParams({
|
|
||||||
filename,
|
|
||||||
subfolder,
|
|
||||||
type
|
|
||||||
})
|
|
||||||
const url = configState.getBackendURL();
|
|
||||||
return url + "/view?" + params
|
|
||||||
}
|
|
||||||
|
|
||||||
export function jsonToJsObject(json: string): string {
|
export function jsonToJsObject(json: string): string {
|
||||||
// Try to parse, to see if it's real JSON
|
// Try to parse, to see if it's real JSON
|
||||||
JSON.parse(json);
|
JSON.parse(json);
|
||||||
@@ -413,6 +451,16 @@ export interface SerializedPromptOutput {
|
|||||||
[key: string]: any
|
[key: string]: any
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum ComfyImagePreviewFormat {
|
||||||
|
WebP = "webp",
|
||||||
|
JPEG = "jpeg",
|
||||||
|
}
|
||||||
|
|
||||||
|
export type ComfyImagePreviewType = {
|
||||||
|
format: ComfyImagePreviewFormat,
|
||||||
|
quality: number
|
||||||
|
}
|
||||||
|
|
||||||
/** Raw output entry as received from ComfyUI's backend */
|
/** Raw output entry as received from ComfyUI's backend */
|
||||||
export type ComfyImageLocation = {
|
export type ComfyImageLocation = {
|
||||||
/* Filename with extension in the subfolder. */
|
/* Filename with extension in the subfolder. */
|
||||||
@@ -420,7 +468,19 @@ export type ComfyImageLocation = {
|
|||||||
/* Subfolder in the containing folder. */
|
/* Subfolder in the containing folder. */
|
||||||
subfolder: string,
|
subfolder: string,
|
||||||
/* Base ComfyUI folder where the image is located. */
|
/* Base ComfyUI folder where the image is located. */
|
||||||
type: ComfyUploadImageType
|
type: ComfyUploadImageType,
|
||||||
|
/*
|
||||||
|
* Preview information
|
||||||
|
*
|
||||||
|
* "format;quality"
|
||||||
|
*
|
||||||
|
* ex)
|
||||||
|
* webp;50 -> webp, quality 50
|
||||||
|
* webp;50 -> webp, quality 50
|
||||||
|
* jpeg;80 -> rgb, jpeg, quality 80
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
preview?: ComfyImagePreviewType
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -544,27 +604,54 @@ export function comfyBoxImageToComfyURL(image: ComfyBoxImageMetadata): string {
|
|||||||
return convertComfyOutputToComfyURL(image.comfyUIFile)
|
return convertComfyOutputToComfyURL(image.comfyUIFile)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function parseComfyUIPreviewType(previewStr: string): ComfyImagePreviewType {
|
||||||
|
let split = previewStr.split(";")
|
||||||
|
let format = ComfyImagePreviewFormat.WebP;
|
||||||
|
if (split[0] === "webp")
|
||||||
|
format = ComfyImagePreviewFormat.WebP;
|
||||||
|
else if (split[0] === "jpeg")
|
||||||
|
format = ComfyImagePreviewFormat.JPEG;
|
||||||
|
|
||||||
|
let quality = parseInt(split[0])
|
||||||
|
if (isNaN(quality))
|
||||||
|
quality = 80
|
||||||
|
|
||||||
|
return { format, quality }
|
||||||
|
}
|
||||||
|
|
||||||
export function comfyURLToComfyFile(urlString: string): ComfyImageLocation | null {
|
export function comfyURLToComfyFile(urlString: string): ComfyImageLocation | null {
|
||||||
const url = new URL(urlString);
|
const url = new URL(urlString);
|
||||||
const params = new URLSearchParams(url.search);
|
const params = new URLSearchParams(url.search);
|
||||||
const filename = params.get("filename")
|
const filename = params.get("filename")
|
||||||
const type = params.get("type") as ComfyUploadImageType;
|
const type = params.get("type") as ComfyUploadImageType;
|
||||||
const subfolder = params.get("subfolder") || ""
|
const subfolder = params.get("subfolder") || ""
|
||||||
|
const previewStr = params.get("preview") || null;
|
||||||
|
let preview = null
|
||||||
|
|
||||||
|
if (previewStr != null) {
|
||||||
|
preview = parseComfyUIPreviewType(preview);
|
||||||
|
}
|
||||||
|
|
||||||
// If at least filename and type exist then we're good
|
// If at least filename and type exist then we're good
|
||||||
if (filename != null && type != null) {
|
if (filename != null && type != null) {
|
||||||
return { filename, type, subfolder }
|
return { filename, type, subfolder, preview }
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showLightbox(images: string[], index: number, e: Event) {
|
export function showLightbox(images: ComfyImageLocation[] | string[], index: number, e: Event) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
if (!images)
|
if (!images)
|
||||||
return
|
return
|
||||||
|
|
||||||
ImageViewer.instance.showModal(images, index);
|
let images_: string[]
|
||||||
|
if (typeof images[0] === "object")
|
||||||
|
images_ = (images as ComfyImageLocation[]).map(v => convertComfyOutputToComfyURL(v))
|
||||||
|
else
|
||||||
|
images_ = (images as string[])
|
||||||
|
|
||||||
|
ImageViewer.instance.showModal(images_, index);
|
||||||
|
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
import { type WidgetLayout } from "$lib/stores/layoutStates";
|
import { type WidgetLayout } from "$lib/stores/layoutStates";
|
||||||
import { get, writable, type Writable } from "svelte/store";
|
import { get, writable, type Writable } from "svelte/store";
|
||||||
import { isDisabled } from "./utils"
|
import { isDisabled } from "./utils"
|
||||||
import { getSafetensorsMetadata } from '$lib/utils';
|
import { clamp, getSafetensorsMetadata } from '$lib/utils';
|
||||||
export let widget: WidgetLayout | null = null;
|
export let widget: WidgetLayout | null = null;
|
||||||
export let isMobile: boolean = false;
|
export let isMobile: boolean = false;
|
||||||
let node: ComfyComboNode | null = null;
|
let node: ComfyComboNode | null = null;
|
||||||
@@ -174,7 +174,7 @@
|
|||||||
itemCount={filteredItems.length}
|
itemCount={filteredItems.length}
|
||||||
{itemSize}
|
{itemSize}
|
||||||
overscanCount={5}
|
overscanCount={5}
|
||||||
scrollToIndex={hoverItemIndex}>
|
scrollToIndex={activeIndex != null ? clamp(activeIndex + itemsToShow - 1, 0, filteredItems.length-1) : hoverItemIndex}>
|
||||||
<div slot="item"
|
<div slot="item"
|
||||||
class="comfy-select-item"
|
class="comfy-select-item"
|
||||||
class:mobile={isMobile}
|
class:mobile={isMobile}
|
||||||
|
|||||||
@@ -12,6 +12,10 @@
|
|||||||
import { f7 } from "framework7-svelte";
|
import { f7 } from "framework7-svelte";
|
||||||
import type { ComfyGalleryNode } from "$lib/nodes/widgets";
|
import type { ComfyGalleryNode } from "$lib/nodes/widgets";
|
||||||
import { showMobileLightbox } from "$lib/components/utils";
|
import { showMobileLightbox } from "$lib/components/utils";
|
||||||
|
import queueState from "$lib/stores/queueState";
|
||||||
|
import uiState from "$lib/stores/uiState";
|
||||||
|
import { loadImage } from "./utils";
|
||||||
|
import Spinner from "$lib/components/Spinner.svelte";
|
||||||
|
|
||||||
export let widget: WidgetLayout | null = null;
|
export let widget: WidgetLayout | null = null;
|
||||||
export let isMobile: boolean = false;
|
export let isMobile: boolean = false;
|
||||||
@@ -25,6 +29,41 @@
|
|||||||
|
|
||||||
$: widget && setNodeValue(widget);
|
$: widget && setNodeValue(widget);
|
||||||
|
|
||||||
|
function tagsMatch(tags: string[] | null): boolean {
|
||||||
|
if(tags != null && tags.length > 0)
|
||||||
|
return node.properties.tags.length > 0 && node.properties.tags.every(t => tags.includes(t));
|
||||||
|
else
|
||||||
|
return node.properties.tags.length === 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
let previewURL: string | null;
|
||||||
|
let previewImage: HTMLImageElement | null = null;
|
||||||
|
let previewElem: HTMLImageElement | null = null
|
||||||
|
$: {
|
||||||
|
previewURL = $queueState.previewURL;
|
||||||
|
|
||||||
|
if (previewURL && $queueState.runningPromptID && !$uiState.hidePreviews && node.properties.showPreviews) {
|
||||||
|
const queueEntry = queueState.getQueueEntry($queueState.runningPromptID)
|
||||||
|
if (queueEntry != null) {
|
||||||
|
const tags = queueEntry.extraData?.extra_pnginfo?.comfyBoxPrompt?.subgraphs;
|
||||||
|
if (tagsMatch(tags)) {
|
||||||
|
loadImage(previewURL).then((img) => {
|
||||||
|
previewImage = img;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
previewImage = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function showPreview() {
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidePreview() {
|
||||||
|
}
|
||||||
|
|
||||||
function setNodeValue(widget: WidgetLayout) {
|
function setNodeValue(widget: WidgetLayout) {
|
||||||
if (widget) {
|
if (widget) {
|
||||||
node = widget.node as ComfyGalleryNode
|
node = widget.node as ComfyGalleryNode
|
||||||
@@ -34,6 +73,8 @@
|
|||||||
imageHeight = node.imageHeight
|
imageHeight = node.imageHeight
|
||||||
selected_image = node.selectedImage;
|
selected_image = node.selectedImage;
|
||||||
forceSelectImage = node.forceSelectImage;
|
forceSelectImage = node.forceSelectImage;
|
||||||
|
previewURL = null;
|
||||||
|
previewImage = null;
|
||||||
|
|
||||||
if ($nodeValue != null) {
|
if ($nodeValue != null) {
|
||||||
if (node.properties.index < 0 || node.properties.index >= $nodeValue.length) {
|
if (node.properties.index < 0 || node.properties.index >= $nodeValue.length) {
|
||||||
@@ -108,6 +149,11 @@
|
|||||||
<div class="wrapper comfy-gallery-widget gradio-gallery" style={widget.attrs.style || ""}>
|
<div class="wrapper comfy-gallery-widget gradio-gallery" style={widget.attrs.style || ""}>
|
||||||
<Block variant="solid" padding={false}>
|
<Block variant="solid" padding={false}>
|
||||||
<div class="padding">
|
<div class="padding">
|
||||||
|
{#if previewImage && $queueState.runningPromptID != null}
|
||||||
|
<div class="comfy-gallery-preview" on:mouseover={hidePreview} on:mouseout={showPreview} >
|
||||||
|
<img src={previewImage.src} bind:this={previewElem} on:mouseout={showPreview} />
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
<Gallery
|
<Gallery
|
||||||
value={images}
|
value={images}
|
||||||
label={widget.attrs.title}
|
label={widget.attrs.title}
|
||||||
@@ -153,6 +199,29 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover .comfy-gallery-preview {
|
||||||
|
opacity: 0%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.comfy-gallery-preview {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: var(--layer-top);
|
||||||
|
pointer-events: none;
|
||||||
|
transition: opacity 0.1s linear;
|
||||||
|
opacity: 100%;
|
||||||
|
|
||||||
|
> img {
|
||||||
|
width: var(--size-full);
|
||||||
|
height: var(--size-full);
|
||||||
|
object-fit: contain;
|
||||||
|
border: 5px dashed var(--secondary-400);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.padding {
|
.padding {
|
||||||
|
|||||||
@@ -230,7 +230,7 @@
|
|||||||
/>
|
/>
|
||||||
{:else}
|
{:else}
|
||||||
<div class="comfy-image-editor-panel">
|
<div class="comfy-image-editor-panel">
|
||||||
{#if _value && canMask}
|
{#if _value && _value.length > 0 && canMask}
|
||||||
{@const comfyURL = convertComfyOutputToComfyURL(_value[0])}
|
{@const comfyURL = convertComfyOutputToComfyURL(_value[0])}
|
||||||
<div class="mask-canvas-wrapper" style:display={editMask ? "block" : "none"}>
|
<div class="mask-canvas-wrapper" style:display={editMask ? "block" : "none"}>
|
||||||
<MaskCanvas bind:this={maskCanvasComp} fileURL={comfyURL} on:release={onMaskReleased} on:loaded={onMaskReleased} />
|
<MaskCanvas bind:this={maskCanvasComp} fileURL={comfyURL} on:release={onMaskReleased} on:loaded={onMaskReleased} />
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Page, Navbar, Block, Tabs, Tab, NavLeft, NavTitle, NavRight, Link, f7 } from "framework7-svelte"
|
import { Page, Navbar, Block, Tabs, Tab, NavLeft, NavTitle, NavRight, Link, f7 } from "framework7-svelte"
|
||||||
import WidgetContainer from "$lib/components/WidgetContainer.svelte";
|
|
||||||
import type ComfyApp from "$lib/components/ComfyApp";
|
import type ComfyApp from "$lib/components/ComfyApp";
|
||||||
import { writable, type Writable } from "svelte/store";
|
|
||||||
import type { IDragItem, WritableLayoutStateStore } from "$lib/stores/layoutStates";
|
|
||||||
import workflowState, { type ComfyBoxWorkflow, type WorkflowInstID } from "$lib/stores/workflowState";
|
|
||||||
import interfaceState from "$lib/stores/interfaceState";
|
import interfaceState from "$lib/stores/interfaceState";
|
||||||
import { onMount } from "svelte";
|
import { convertComfyOutputToComfyURL, partition, showLightbox } from "$lib/utils";
|
||||||
import GenToolbar from '../GenToolbar.svelte'
|
|
||||||
import { partition, showLightbox } from "$lib/utils";
|
|
||||||
import uiQueueState, { type QueueUIEntry } from "$lib/stores/uiQueueState";
|
import uiQueueState, { type QueueUIEntry } from "$lib/stores/uiQueueState";
|
||||||
import { showMobileLightbox } from "$lib/components/utils";
|
import { showMobileLightbox } from "$lib/components/utils";
|
||||||
import notify from "$lib/notify";
|
import notify from "$lib/notify";
|
||||||
@@ -33,7 +27,7 @@
|
|||||||
const _allEntries = []
|
const _allEntries = []
|
||||||
for (const entry of entries) {
|
for (const entry of entries) {
|
||||||
for (const image of entry.images) {
|
for (const image of entry.images) {
|
||||||
_allEntries.push([entry, image]);
|
_allEntries.push([entry, convertComfyOutputToComfyURL(image, true)]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
allEntries = partition(_allEntries, gridCols);
|
allEntries = partition(_allEntries, gridCols);
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
import interfaceState from "$lib/stores/interfaceState";
|
import interfaceState from "$lib/stores/interfaceState";
|
||||||
import { onMount } from "svelte";
|
import { onMount } from "svelte";
|
||||||
import GenToolbar from '../GenToolbar.svelte'
|
import GenToolbar from '../GenToolbar.svelte'
|
||||||
import { partition, showLightbox, truncateString } from "$lib/utils";
|
import { convertComfyOutputToComfyURL, partition, showLightbox, truncateString } from "$lib/utils";
|
||||||
import uiQueueState, { type QueueUIEntry } from "$lib/stores/uiQueueState";
|
import uiQueueState, { type QueueUIEntry } from "$lib/stores/uiQueueState";
|
||||||
import { showMobileLightbox } from "$lib/components/utils";
|
import { showMobileLightbox } from "$lib/components/utils";
|
||||||
import queueState from "$lib/stores/queueState";
|
import queueState from "$lib/stores/queueState";
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
|
|
||||||
function getCardImage(entry: QueueUIEntry): string {
|
function getCardImage(entry: QueueUIEntry): string {
|
||||||
if (entry.images.length > 0)
|
if (entry.images.length > 0)
|
||||||
return entry.images[0]
|
return convertComfyOutputToComfyURL(entry.images[0])
|
||||||
return "https://cdn.framework7.io/placeholder/nature-1000x600-3.jpg"
|
return "https://cdn.framework7.io/placeholder/nature-1000x600-3.jpg"
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
import ComfyGraph from "$lib/ComfyGraph";
|
import ComfyGraph from "$lib/ComfyGraph";
|
||||||
import { ComfyNumberNode } from "$lib/nodes/widgets";
|
import { ComfyNumberNode, ComfyComboNode } from "$lib/nodes/widgets";
|
||||||
import { ComfyBoxWorkflow } from "$lib/stores/workflowState";
|
import { ComfyBoxWorkflow } from "$lib/stores/workflowState";
|
||||||
import { LiteGraph, Subgraph } from "@litegraph-ts/core";
|
import { LiteGraph, Subgraph } from "@litegraph-ts/core";
|
||||||
import { get } from "svelte/store";
|
import { get } from "svelte/store";
|
||||||
import { expect } from 'vitest';
|
import { expect } from 'vitest';
|
||||||
import UnitTest from "./UnitTest";
|
import UnitTest from "./UnitTest";
|
||||||
import { Watch } from "@litegraph-ts/nodes-basic";
|
import { Watch } from "@litegraph-ts/nodes-basic";
|
||||||
|
import type { SerializedComfyWidgetNode } from "$lib/nodes/widgets/ComfyWidgetNode";
|
||||||
|
|
||||||
export default class ComfyGraphTests extends UnitTest {
|
export default class ComfyGraphTests extends UnitTest {
|
||||||
test__onNodeAdded__updatesLayoutState() {
|
test__onNodeAdded__updatesLayoutState() {
|
||||||
@@ -107,4 +108,24 @@ export default class ComfyGraphTests extends UnitTest {
|
|||||||
|
|
||||||
expect(serNode.outputs[0]._data).toBeUndefined()
|
expect(serNode.outputs[0]._data).toBeUndefined()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test__serialize__savesComboData() {
|
||||||
|
const [{ graph }, layoutState] = ComfyBoxWorkflow.create()
|
||||||
|
layoutState.initDefaultLayout()
|
||||||
|
|
||||||
|
const widget = LiteGraph.createNode(ComfyComboNode);
|
||||||
|
const watch = LiteGraph.createNode(Watch);
|
||||||
|
graph.add(widget)
|
||||||
|
graph.add(watch)
|
||||||
|
|
||||||
|
widget.connect(0, watch, 0)
|
||||||
|
widget.properties.values = ["A", "B", "C"]
|
||||||
|
widget.setValue("B");
|
||||||
|
|
||||||
|
const result = graph.serialize();
|
||||||
|
|
||||||
|
const serNode = result.nodes.find(n => n.id === widget.id) as SerializedComfyWidgetNode;
|
||||||
|
|
||||||
|
expect(serNode.comfyValue).toBe("B")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user