diff --git a/web-plugin/index.js b/web-plugin/index.js
index 199b460..60726c8 100644
--- a/web-plugin/index.js
+++ b/web-plugin/index.js
@@ -139,24 +139,17 @@ function addButton() {
"Create your deployment",
"Workflow name",
);
- if (!text) return
+ if (!text) return;
console.log(text);
app.graph.beforeChange();
var node = LiteGraph.createNode("ComfyDeploy");
node.configure({
- widgets_values: [
- text
- ]
+ widgets_values: [text],
});
node.pos = [0, 0];
app.graph.add(node);
app.graph.afterChange();
- deployMeta=[node]
- // return;
- // showError(
- // "Error when deploying",
- // "Unable to to find ComfyDeploy node, please add it first.",
- // );
+ deployMeta = [node];
}
const deployMetaNode = deployMeta[0];
@@ -182,6 +175,9 @@ function addButton() {
return;
}
+ const ok = await confirmDialog.confirm("Confirm deployment", "A new version will be deployed, are you conform?")
+ if (!ok) return;
+
title.innerText = "Deploying...";
title.style.color = "orange";
@@ -226,7 +222,7 @@ function addButton() {
graph.change();
infoDialog.show(
- `Deployed successfully! View here ->
Workflow ID: ${data.workflow_id}
Workflow Name: ${workflow_name}
Workflow Version: ${data.version}
`,
+ `Deployed successfully! -> View here
Workflow ID: ${data.workflow_id}
Workflow Name: ${workflow_name}
Workflow Version: ${data.version}
`,
);
setTimeout(() => {
@@ -328,6 +324,14 @@ export class InputDialog extends InfoDialog {
},
},
[
+ $el("button", {
+ type: "button",
+ textContent: "Close",
+ onclick: () => {
+ this.callback?.(undefined);
+ this.close();
+ },
+ }),
$el("button", {
type: "button",
textContent: "Save",
@@ -342,14 +346,6 @@ export class InputDialog extends InfoDialog {
}
},
}),
- $el("button", {
- type: "button",
- textContent: "Close",
- onclick: () => {
- this.callback?.(undefined);
- this.close()
- },
- }),
],
),
];
@@ -371,9 +367,70 @@ export class InputDialog extends InfoDialog {
}
}
-export const inputDialog = new InputDialog();
+export class ConfirmDialog extends InfoDialog {
+ callback = undefined;
+
+ constructor() {
+ super();
+ }
+
+ createButtons() {
+ return [
+ $el(
+ "div",
+ {
+ type: "div",
+ style: {
+ display: "flex",
+ gap: "6px",
+ justifyContent: "flex-end",
+ width: "100%",
+ },
+ },
+ [
+ $el("button", {
+ type: "button",
+ textContent: "Close",
+ onclick: () => {
+ this.callback?.(false);
+ this.close();
+ },
+ }),
+ $el("button", {
+ type: "button",
+ textContent: "Confirm",
+ style: {
+ color: "green",
+ },
+ onclick: () => {
+ this.callback?.(true);
+ this.close();
+ },
+ }),
+ ],
+ ),
+ ];
+ }
+
+ confirm(title, message) {
+ return new Promise((resolve, reject) => {
+ this.callback = resolve;
+ this.show(`
+