You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
689 lines
22 KiB
689 lines
22 KiB
1 year ago
|
import { app } from "../../scripts/app.js";
|
||
|
import { api } from "../../scripts/api.js"
|
||
|
import { ComfyDialog, $el } from "../../scripts/ui.js";
|
||
|
|
||
1 year ago
|
export const SUPPORTED_OUTPUT_NODE_TYPES = [
|
||
1 year ago
|
"PreviewImage",
|
||
1 year ago
|
"SaveImage",
|
||
|
"VHS_VideoCombine",
|
||
|
"ADE_AnimateDiffCombine",
|
||
|
]
|
||
|
|
||
1 year ago
|
var docStyle = document.createElement('style');
|
||
|
docStyle.innerHTML = `
|
||
|
.cm-menu-container {
|
||
|
column-gap: 20px;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.cm-menu-column {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.cm-title {
|
||
|
padding: 10px 10px 0 10p;
|
||
|
background-color: black;
|
||
|
text-align: center;
|
||
|
height: 45px;
|
||
|
}
|
||
|
`;
|
||
|
document.head.appendChild(docStyle);
|
||
|
|
||
1 year ago
|
export function getPotentialOutputsAndOutputNodes(nodes) {
|
||
|
const potential_outputs = [];
|
||
|
const potential_output_nodes = [];
|
||
|
|
||
|
// iterate over the array of nodes to find the ones that are marked as SaveImage
|
||
|
// TODO: Add support for AnimateDiffCombine, etc. nodes that save videos/gifs, etc.
|
||
|
for (let i = 0; i < nodes.length; i++) {
|
||
|
const node = nodes[i];
|
||
|
if (!SUPPORTED_OUTPUT_NODE_TYPES.includes(node.type)) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
if (node.type === "SaveImage") {
|
||
|
potential_output_nodes.push(node);
|
||
|
|
||
|
// check if node has an 'images' array property
|
||
|
if (node.hasOwnProperty("images") && Array.isArray(node.images)) {
|
||
|
// iterate over the images array and add each image to the potential_outputs array
|
||
|
for (let j = 0; j < node.images.length; j++) {
|
||
|
potential_outputs.push({ "type": "image", "image": node.images[j], "title": node.title });
|
||
|
}
|
||
|
}
|
||
|
}
|
||
1 year ago
|
else if (node.type === "PreviewImage") {
|
||
|
potential_output_nodes.push(node);
|
||
|
|
||
|
// check if node has an 'images' array property
|
||
|
if (node.hasOwnProperty("images") && Array.isArray(node.images)) {
|
||
|
// iterate over the images array and add each image to the potential_outputs array
|
||
|
for (let j = 0; j < node.images.length; j++) {
|
||
|
potential_outputs.push({ "type": "image", "image": node.images[j], "title": node.title });
|
||
|
}
|
||
|
}
|
||
|
}
|
||
1 year ago
|
else if (node.type === "VHS_VideoCombine") {
|
||
|
potential_output_nodes.push(node);
|
||
|
|
||
|
// check if node has a 'widgets' array property, with type 'image'
|
||
|
if (node.hasOwnProperty("widgets") && Array.isArray(node.widgets)) {
|
||
|
// iterate over the widgets array and add each image to the potential_outputs array
|
||
|
for (let j = 0; j < node.widgets.length; j++) {
|
||
|
if (node.widgets[j].type === "image") {
|
||
|
const widgetValue = node.widgets[j].value;
|
||
|
const parsedURLVals = parseURLPath(widgetValue);
|
||
|
|
||
|
// ensure that the parsedURLVals have 'filename', 'subfolder', 'type', and 'format' properties
|
||
|
if (parsedURLVals.hasOwnProperty("filename") && parsedURLVals.hasOwnProperty("subfolder") && parsedURLVals.hasOwnProperty("type") && parsedURLVals.hasOwnProperty("format")) {
|
||
|
if (parsedURLVals.type !== "output") {
|
||
|
// TODO
|
||
|
}
|
||
1 year ago
|
potential_outputs.push({ "type": "output", 'title': node.title, "output": { "filename": parsedURLVals.filename, "subfolder": parsedURLVals.subfolder, "value": widgetValue, "format": parsedURLVals.format } });
|
||
1 year ago
|
}
|
||
1 year ago
|
} else if (node.widgets[j].type === "preview") {
|
||
|
const widgetValue = node.widgets[j].value;
|
||
|
const parsedURLVals = widgetValue.params;
|
||
|
|
||
1 year ago
|
if(!parsedURLVals.format.startsWith('image')) {
|
||
|
// video isn't supported format
|
||
|
continue;
|
||
|
}
|
||
|
|
||
1 year ago
|
// ensure that the parsedURLVals have 'filename', 'subfolder', 'type', and 'format' properties
|
||
|
if (parsedURLVals.hasOwnProperty("filename") && parsedURLVals.hasOwnProperty("subfolder") && parsedURLVals.hasOwnProperty("type") && parsedURLVals.hasOwnProperty("format")) {
|
||
|
if (parsedURLVals.type !== "output") {
|
||
|
// TODO
|
||
|
}
|
||
|
potential_outputs.push({ "type": "output", 'title': node.title, "output": { "filename": parsedURLVals.filename, "subfolder": parsedURLVals.subfolder, "value": `/view?filename=${parsedURLVals.filename}&subfolder=${parsedURLVals.subfolder}&type=${parsedURLVals.type}&format=${parsedURLVals.format}`, "format": parsedURLVals.format } });
|
||
|
}
|
||
1 year ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else if (node.type === "ADE_AnimateDiffCombine") {
|
||
|
potential_output_nodes.push(node);
|
||
|
|
||
|
// check if node has a 'widgets' array property, with type 'image'
|
||
|
if (node.hasOwnProperty("widgets") && Array.isArray(node.widgets)) {
|
||
|
// iterate over the widgets array and add each image to the potential_outputs array
|
||
|
for (let j = 0; j < node.widgets.length; j++) {
|
||
|
if (node.widgets[j].type === "image") {
|
||
|
const widgetValue = node.widgets[j].value;
|
||
|
const parsedURLVals = parseURLPath(widgetValue);
|
||
|
// ensure that the parsedURLVals have 'filename', 'subfolder', 'type', and 'format' properties
|
||
|
if (parsedURLVals.hasOwnProperty("filename") && parsedURLVals.hasOwnProperty("subfolder") && parsedURLVals.hasOwnProperty("type") && parsedURLVals.hasOwnProperty("format")) {
|
||
|
if (parsedURLVals.type !== "output") {
|
||
|
// TODO
|
||
|
continue;
|
||
|
}
|
||
1 year ago
|
potential_outputs.push({ "type": "output", 'title': node.title, "output": { "filename": parsedURLVals.filename, "subfolder": parsedURLVals.subfolder, "type": parsedURLVals.type, "value": widgetValue, "format": parsedURLVals.format } });
|
||
1 year ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return { potential_outputs, potential_output_nodes };
|
||
|
}
|
||
|
|
||
|
|
||
|
export function parseURLPath(urlPath) {
|
||
|
// Extract the query string from the URL path
|
||
|
var queryString = urlPath.split('?')[1];
|
||
|
|
||
|
// Use the URLSearchParams API to parse the query string
|
||
|
var params = new URLSearchParams(queryString);
|
||
|
|
||
|
// Create an object to store the parsed parameters
|
||
|
var parsedParams = {};
|
||
|
|
||
|
// Iterate over each parameter and add it to the object
|
||
|
for (var pair of params.entries()) {
|
||
|
parsedParams[pair[0]] = pair[1];
|
||
|
}
|
||
|
|
||
|
// Return the object with the parsed parameters
|
||
|
return parsedParams;
|
||
|
}
|
||
1 year ago
|
|
||
1 year ago
|
export class ShareDialog extends ComfyDialog {
|
||
1 year ago
|
static instance = null;
|
||
|
static matrix_auth = { homeserver: "matrix.org", username: "", password: "" };
|
||
|
static cw_sharekey = "";
|
||
|
|
||
|
constructor() {
|
||
|
super();
|
||
1 year ago
|
this.element = $el("div.comfy-modal", {
|
||
|
parent: document.body, style: {
|
||
|
'overflow-y': "auto",
|
||
|
}
|
||
|
},
|
||
|
[$el("div.comfy-modal-content",
|
||
|
{},
|
||
|
[...this.createButtons()]),
|
||
|
]);
|
||
|
this.selectedOutputIndex = 0;
|
||
1 year ago
|
}
|
||
|
|
||
|
createButtons() {
|
||
1 year ago
|
this.radio_buttons = $el("div", {
|
||
|
id: "selectOutputImages",
|
||
|
}, []);
|
||
|
|
||
1 year ago
|
this.is_nsfw_checkbox = $el("input", { type: 'checkbox', id: "is_nsfw" }, [])
|
||
1 year ago
|
const is_nsfw_checkbox_text = $el("label", {
|
||
|
}, [" Is this NSFW?"])
|
||
1 year ago
|
this.is_nsfw_checkbox.style.color = "var(--fg-color)";
|
||
|
this.is_nsfw_checkbox.checked = false;
|
||
|
|
||
|
this.matrix_destination_checkbox = $el("input", { type: 'checkbox', id: "matrix_destination" }, [])
|
||
|
const matrix_destination_checkbox_text = $el("label", {}, [" ComfyUI Matrix server"])
|
||
|
this.matrix_destination_checkbox.style.color = "var(--fg-color)";
|
||
1 year ago
|
this.matrix_destination_checkbox.checked = false; //true;
|
||
1 year ago
|
|
||
|
this.comfyworkflows_destination_checkbox = $el("input", { type: 'checkbox', id: "comfyworkflows_destination" }, [])
|
||
|
const comfyworkflows_destination_checkbox_text = $el("label", {}, [" ComfyWorkflows.com"])
|
||
|
this.comfyworkflows_destination_checkbox.style.color = "var(--fg-color)";
|
||
|
this.comfyworkflows_destination_checkbox.checked = true;
|
||
|
|
||
|
this.matrix_homeserver_input = $el("input", { type: 'text', id: "matrix_homeserver", placeholder: "matrix.org", value: ShareDialog.matrix_auth.homeserver || 'matrix.org' }, []);
|
||
|
this.matrix_username_input = $el("input", { type: 'text', placeholder: "Username", value: ShareDialog.matrix_auth.username || '' }, []);
|
||
|
this.matrix_password_input = $el("input", { type: 'password', placeholder: "Password", value: ShareDialog.matrix_auth.password || '' }, []);
|
||
|
|
||
|
this.cw_sharekey_input = $el("input", { type: 'text', placeholder: "Share key (found on your profile page)", value: ShareDialog.cw_sharekey || '' }, []);
|
||
|
this.cw_sharekey_input.style.width = "100%";
|
||
|
|
||
|
this.credits_input = $el("input", {
|
||
|
type: "text",
|
||
|
placeholder: "This will be used to give credits",
|
||
|
required: false,
|
||
|
}, []);
|
||
|
|
||
|
this.title_input = $el("input", {
|
||
|
type: "text",
|
||
|
placeholder: "ex: My awesome art",
|
||
1 year ago
|
required: false
|
||
1 year ago
|
}, []);
|
||
|
|
||
|
this.description_input = $el("textarea", {
|
||
|
placeholder: "ex: Trying out a new workflow... ",
|
||
|
required: false,
|
||
|
}, []);
|
||
|
|
||
|
this.share_button = $el("button", {
|
||
1 year ago
|
type: "submit",
|
||
1 year ago
|
textContent: "Share",
|
||
1 year ago
|
style: {
|
||
|
backgroundColor: "blue"
|
||
1 year ago
|
}
|
||
1 year ago
|
}, []);
|
||
1 year ago
|
|
||
1 year ago
|
this.final_message = $el("div", {
|
||
|
style: {
|
||
|
color: "white",
|
||
|
textAlign: "center",
|
||
|
// marginTop: "10px",
|
||
|
// backgroundColor: "black",
|
||
|
padding: "10px",
|
||
1 year ago
|
}
|
||
1 year ago
|
}, []);
|
||
1 year ago
|
|
||
1 year ago
|
this.share_finalmessage_container = $el("div.cm-menu-container", {
|
||
|
id: "comfyui-share-finalmessage-container",
|
||
|
style: {
|
||
|
display: "none",
|
||
1 year ago
|
}
|
||
1 year ago
|
}, [
|
||
|
$el("div.cm-menu-column", [
|
||
|
this.final_message,
|
||
|
$el("button", {
|
||
|
type: "button",
|
||
|
textContent: "Close",
|
||
|
onclick: () => {
|
||
|
// Reset state
|
||
|
this.matrix_destination_checkbox.checked = false;
|
||
|
this.comfyworkflows_destination_checkbox.checked = true;
|
||
|
this.share_button.textContent = "Share";
|
||
|
this.share_button.style.display = "inline-block";
|
||
|
this.final_message.innerHTML = "";
|
||
|
this.final_message.style.color = "white";
|
||
|
this.credits_input.value = "";
|
||
|
this.title_input.value = "";
|
||
|
this.description_input.value = "";
|
||
|
this.is_nsfw_checkbox.checked = false;
|
||
|
this.selectedOutputIndex = 0;
|
||
1 year ago
|
|
||
1 year ago
|
// hide the final message
|
||
|
this.share_finalmessage_container.style.display = "none";
|
||
1 year ago
|
|
||
1 year ago
|
// show the share container
|
||
|
this.share_container.style.display = "flex";
|
||
1 year ago
|
|
||
1 year ago
|
this.close()
|
||
1 year ago
|
}
|
||
1 year ago
|
}),
|
||
|
])
|
||
|
]);
|
||
|
this.share_container = $el("div.cm-menu-container", {
|
||
|
id: "comfyui-share-container"
|
||
|
}, [
|
||
|
$el("div.cm-menu-column", [
|
||
1 year ago
|
$el("details", {
|
||
|
style: {
|
||
|
border: "1px solid #999",
|
||
|
padding: "5px",
|
||
|
borderRadius: "5px",
|
||
|
backgroundColor: "#222"
|
||
|
}
|
||
|
}, [
|
||
|
$el("summary", {
|
||
|
style: {
|
||
|
color: "white",
|
||
|
cursor: "pointer",
|
||
|
}
|
||
|
}, [`Matrix account`]),
|
||
|
$el("div", {
|
||
|
style: {
|
||
|
display: "flex",
|
||
|
flexDirection: "row",
|
||
|
}
|
||
|
}, [
|
||
|
$el("div", {
|
||
|
textContent: "Homeserver",
|
||
|
style: {
|
||
|
marginRight: "10px",
|
||
|
}
|
||
|
}, []),
|
||
|
this.matrix_homeserver_input,
|
||
|
]),
|
||
|
|
||
|
$el("div", {
|
||
|
style: {
|
||
|
display: "flex",
|
||
|
flexDirection: "row",
|
||
|
}
|
||
|
}, [
|
||
|
$el("div", {
|
||
|
textContent: "Username",
|
||
|
style: {
|
||
|
marginRight: "10px",
|
||
|
}
|
||
|
}, []),
|
||
|
this.matrix_username_input,
|
||
|
]),
|
||
|
|
||
|
$el("div", {
|
||
|
style: {
|
||
|
display: "flex",
|
||
|
flexDirection: "row",
|
||
|
}
|
||
|
}, [
|
||
|
$el("div", {
|
||
|
textContent: "Password",
|
||
|
style: {
|
||
|
marginRight: "10px",
|
||
|
}
|
||
|
}, []),
|
||
|
this.matrix_password_input,
|
||
|
]),
|
||
|
|
||
|
]),
|
||
|
$el("details", {
|
||
|
style: {
|
||
|
border: "1px solid #999",
|
||
|
marginTop: "10px",
|
||
|
padding: "5px",
|
||
|
borderRadius: "5px",
|
||
|
backgroundColor: "#222"
|
||
|
}
|
||
|
}, [
|
||
|
$el("summary", {
|
||
|
style: {
|
||
|
color: "white",
|
||
|
cursor: "pointer",
|
||
|
}
|
||
|
}, [`Comfyworkflows.com account`]),
|
||
|
$el("h4", {
|
||
|
textContent: "Share key (found on your profile page)",
|
||
|
}, []),
|
||
|
$el("p", { size: 3, color: "white" }, ["When provided, your art will be saved to your account."]),
|
||
|
this.cw_sharekey_input,
|
||
|
]),
|
||
|
|
||
|
$el("div", {}, [
|
||
1 year ago
|
$el("p", {
|
||
|
size: 3, color: "white", style: {
|
||
|
color: 'white'
|
||
|
}
|
||
|
}, [`Select where to share your art:`]),
|
||
1 year ago
|
this.matrix_destination_checkbox,
|
||
|
matrix_destination_checkbox_text,
|
||
|
$el("br", {}, []),
|
||
|
this.comfyworkflows_destination_checkbox,
|
||
|
comfyworkflows_destination_checkbox_text,
|
||
|
]),
|
||
|
|
||
|
$el("h4", {
|
||
|
textContent: "Credits (optional)",
|
||
|
size: 3,
|
||
1 year ago
|
color: "white",
|
||
|
style: {
|
||
|
color: 'white'
|
||
|
}
|
||
1 year ago
|
}, []),
|
||
|
this.credits_input,
|
||
|
// $el("br", {}, []),
|
||
|
|
||
|
$el("h4", {
|
||
|
textContent: "Title (optional)",
|
||
|
size: 3,
|
||
1 year ago
|
color: "white",
|
||
|
style: {
|
||
|
color: 'white'
|
||
|
}
|
||
1 year ago
|
}, []),
|
||
|
this.title_input,
|
||
|
// $el("br", {}, []),
|
||
|
|
||
|
$el("h4", {
|
||
|
textContent: "Description (optional)",
|
||
|
size: 3,
|
||
1 year ago
|
color: "white",
|
||
|
style: {
|
||
|
color: 'white'
|
||
|
}
|
||
1 year ago
|
}, []),
|
||
|
this.description_input,
|
||
|
$el("br", {}, []),
|
||
|
|
||
|
$el("div", {}, [this.is_nsfw_checkbox, is_nsfw_checkbox_text]),
|
||
1 year ago
|
// $el("br", {}, []),
|
||
1 year ago
|
|
||
1 year ago
|
// this.final_message,
|
||
|
// $el("br", {}, []),
|
||
|
]),
|
||
|
$el("div.cm-menu-column", [
|
||
1 year ago
|
this.radio_buttons,
|
||
|
$el("br", {}, []),
|
||
1 year ago
|
|
||
|
this.share_button,
|
||
|
|
||
|
$el("button", {
|
||
|
type: "button",
|
||
|
textContent: "Close",
|
||
|
onclick: () => {
|
||
|
// Reset state
|
||
1 year ago
|
this.matrix_destination_checkbox.checked = false;
|
||
1 year ago
|
this.comfyworkflows_destination_checkbox.checked = true;
|
||
|
this.share_button.textContent = "Share";
|
||
|
this.share_button.style.display = "inline-block";
|
||
|
this.final_message.innerHTML = "";
|
||
|
this.final_message.style.color = "white";
|
||
|
this.credits_input.value = "";
|
||
|
this.title_input.value = "";
|
||
|
this.description_input.value = "";
|
||
|
this.is_nsfw_checkbox.checked = false;
|
||
1 year ago
|
this.selectedOutputIndex = 0;
|
||
1 year ago
|
|
||
|
// hide the final message
|
||
|
this.share_finalmessage_container.style.display = "none";
|
||
|
|
||
|
// show the share container
|
||
|
this.share_container.style.display = "flex";
|
||
|
|
||
1 year ago
|
this.close()
|
||
|
}
|
||
|
}),
|
||
|
$el("br", {}, []),
|
||
1 year ago
|
]),
|
||
|
]);
|
||
|
|
||
|
// get the user's existing matrix auth and share key
|
||
|
ShareDialog.matrix_auth = { homeserver: "matrix.org", username: "", password: "" };
|
||
|
try {
|
||
|
api.fetchApi(`/manager/get_matrix_auth`)
|
||
|
.then(response => response.json())
|
||
|
.then(data => {
|
||
|
ShareDialog.matrix_auth = data;
|
||
|
this.matrix_homeserver_input.value = ShareDialog.matrix_auth.homeserver;
|
||
|
this.matrix_username_input.value = ShareDialog.matrix_auth.username;
|
||
|
this.matrix_password_input.value = ShareDialog.matrix_auth.password;
|
||
|
})
|
||
|
.catch(error => {
|
||
|
// console.log(error);
|
||
|
});
|
||
|
} catch (error) {
|
||
|
// console.log(error);
|
||
|
}
|
||
|
|
||
|
// get the user's existing comfyworkflows share key
|
||
|
ShareDialog.cw_sharekey = "";
|
||
|
try {
|
||
|
// console.log("Fetching comfyworkflows share key")
|
||
|
api.fetchApi(`/manager/get_comfyworkflows_auth`)
|
||
|
.then(response => response.json())
|
||
|
.then(data => {
|
||
|
ShareDialog.cw_sharekey = data.comfyworkflows_sharekey;
|
||
|
this.cw_sharekey_input.value = ShareDialog.cw_sharekey;
|
||
|
})
|
||
|
.catch(error => {
|
||
|
// console.log(error);
|
||
|
});
|
||
|
} catch (error) {
|
||
|
// console.log(error);
|
||
|
}
|
||
|
|
||
|
this.share_button.onclick = async () => {
|
||
|
const prompt = await app.graphToPrompt();
|
||
|
const nodes = app.graph._nodes;
|
||
|
|
||
|
// console.log({ prompt, nodes });
|
||
|
|
||
|
const destinations = [];
|
||
|
if (this.matrix_destination_checkbox.checked) {
|
||
|
destinations.push("matrix");
|
||
|
}
|
||
|
if (this.comfyworkflows_destination_checkbox.checked) {
|
||
|
destinations.push("comfyworkflows");
|
||
|
}
|
||
|
|
||
|
// if destinations includes matrix, make an api call to /manager/check_matrix to ensure that the user has configured their matrix settings
|
||
|
if (destinations.includes("matrix")) {
|
||
|
let definedMatrixAuth = !!this.matrix_homeserver_input.value && !!this.matrix_username_input.value && !!this.matrix_password_input.value;
|
||
|
if (!definedMatrixAuth) {
|
||
|
alert("Please set your Matrix account details.");
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (destinations.includes("comfyworkflows") && !this.cw_sharekey_input.value && !confirm("You have NOT set your ComfyWorkflows.com share key. Your art will NOT be connected to your account (it will be shared anonymously). Continue?")) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const { potential_outputs, potential_output_nodes } = getPotentialOutputsAndOutputNodes(nodes);
|
||
|
|
||
|
// console.log({ potential_outputs, potential_output_nodes })
|
||
|
|
||
|
if (potential_outputs.length === 0) {
|
||
|
if (potential_output_nodes.length === 0) {
|
||
|
// todo: add support for other output node types (animatediff combine, etc.)
|
||
|
const supported_nodes_string = SUPPORTED_OUTPUT_NODE_TYPES.join(", ");
|
||
|
alert(`No supported output node found (${supported_nodes_string}). To share this workflow, please add an output node to your graph and re-run your prompt.`);
|
||
|
} else {
|
||
1 year ago
|
alert("To share this, first run a prompt. Once it's done, click 'Share'.\n\nNOTE: Images of the Share target can only be selected in the PreviewImage, SaveImage, and VHS_VideoCombine nodes. In the case of VHS_VideoCombine, only the image/gif and image/webp formats are supported.");
|
||
1 year ago
|
}
|
||
|
this.selectedOutputIndex = 0;
|
||
|
this.close();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Change the text of the share button to "Sharing..." to indicate that the share process has started
|
||
|
this.share_button.textContent = "Sharing...";
|
||
|
|
||
|
const response = await api.fetchApi(`/manager/share`, {
|
||
|
method: 'POST',
|
||
|
headers: { 'Content-Type': 'application/json' },
|
||
|
body: JSON.stringify({
|
||
|
matrix_auth: {
|
||
|
homeserver: this.matrix_homeserver_input.value,
|
||
|
username: this.matrix_username_input.value,
|
||
|
password: this.matrix_password_input.value,
|
||
|
},
|
||
|
cw_auth: {
|
||
|
cw_sharekey: this.cw_sharekey_input.value,
|
||
|
},
|
||
|
share_destinations: destinations,
|
||
|
credits: this.credits_input.value,
|
||
|
title: this.title_input.value,
|
||
|
description: this.description_input.value,
|
||
|
is_nsfw: this.is_nsfw_checkbox.checked,
|
||
|
prompt,
|
||
|
potential_outputs,
|
||
|
selected_output_index: this.selectedOutputIndex,
|
||
|
// potential_output_nodes
|
||
|
})
|
||
|
});
|
||
|
|
||
|
if (response.status != 200) {
|
||
|
try {
|
||
|
const response_json = await response.json();
|
||
|
if (response_json.error) {
|
||
|
alert(response_json.error);
|
||
|
this.close();
|
||
|
return;
|
||
|
} else {
|
||
|
alert("Failed to share your art. Please try again.");
|
||
|
this.close();
|
||
|
return;
|
||
|
}
|
||
|
} catch (e) {
|
||
|
alert("Failed to share your art. Please try again.");
|
||
|
this.close();
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const response_json = await response.json();
|
||
|
|
||
|
if (response_json.comfyworkflows.url) {
|
||
|
this.final_message.innerHTML = "Your art has been shared: <a href='" + response_json.comfyworkflows.url + "' target='_blank'>" + response_json.comfyworkflows.url + "</a>";
|
||
|
if (response_json.matrix.success) {
|
||
|
this.final_message.innerHTML += "<br>Your art has been shared in the ComfyUI Matrix server's #share channel!";
|
||
|
}
|
||
|
} else {
|
||
|
if (response_json.matrix.success) {
|
||
|
this.final_message.innerHTML = "Your art has been shared in the ComfyUI Matrix server's #share channel!";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
this.final_message.style.color = "green";
|
||
|
|
||
|
// hide #comfyui-share-container and show #comfyui-share-finalmessage-container
|
||
|
this.share_container.style.display = "none";
|
||
|
this.share_finalmessage_container.style.display = "block";
|
||
|
|
||
|
// hide the share button
|
||
|
this.share_button.textContent = "Shared!";
|
||
|
this.share_button.style.display = "none";
|
||
|
// this.close();
|
||
|
}
|
||
|
|
||
|
const res =
|
||
|
[
|
||
|
$el("tr.td", { width: "100%" }, [
|
||
|
$el("font", { size: 6, color: "white" }, [`Share your art`]),
|
||
|
]),
|
||
|
$el("br", {}, []),
|
||
|
|
||
|
this.share_finalmessage_container,
|
||
|
this.share_container,
|
||
1 year ago
|
];
|
||
|
|
||
|
res[0].style.padding = "10px 10px 10px 10px";
|
||
|
res[0].style.backgroundColor = "black"; //"linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%)";
|
||
|
res[0].style.textAlign = "center";
|
||
|
res[0].style.height = "45px";
|
||
|
return res;
|
||
|
}
|
||
|
|
||
1 year ago
|
show({ potential_outputs, potential_output_nodes }) {
|
||
1 year ago
|
// console.log({ potential_outputs, potential_output_nodes })
|
||
1 year ago
|
this.radio_buttons.innerHTML = ""; // clear the radio buttons
|
||
|
const new_radio_buttons = $el("div", {
|
||
1 year ago
|
id: "selectOutput-Options",
|
||
1 year ago
|
style: {
|
||
1 year ago
|
'overflow-y': 'scroll',
|
||
1 year ago
|
'max-height': '400px',
|
||
|
}
|
||
1 year ago
|
}, potential_outputs.map((output, index) => {
|
||
1 year ago
|
const radio_button = $el("input", { type: 'radio', name: "selectOutputImages", value: index, required: index === 0 }, [])
|
||
1 year ago
|
let radio_button_img;
|
||
1 year ago
|
if (output.type === "image" || output.type === "temp") {
|
||
1 year ago
|
radio_button_img = $el("img", { src: `/view?filename=${output.image.filename}&subfolder=${output.image.subfolder}&type=${output.image.type}`, style: { width: "auto", height: "100px" } }, []);
|
||
|
} else if (output.type === "output") {
|
||
|
radio_button_img = $el("img", { src: output.output.value, style: { width: "auto", height: "100px" } }, []);
|
||
|
} else {
|
||
|
// unsupported output type
|
||
|
// this should never happen
|
||
|
// TODO
|
||
|
radio_button_img = $el("img", { src: "", style: { width: "auto", height: "100px" } }, []);
|
||
|
}
|
||
1 year ago
|
const radio_button_text = $el("label", {
|
||
|
// style: {
|
||
|
// color: 'white'
|
||
|
// }
|
||
|
}, [output.title])
|
||
|
radio_button.style.color = "var(--fg-color)";
|
||
|
radio_button.checked = index === 0;
|
||
|
if (radio_button.checked) {
|
||
|
this.selectedOutputIndex = index;
|
||
|
}
|
||
|
|
||
|
radio_button.onchange = () => {
|
||
|
this.selectedOutputIndex = parseInt(radio_button.value);
|
||
|
};
|
||
|
|
||
|
return $el("div", {
|
||
|
style: {
|
||
|
display: "flex",
|
||
|
'align-items': 'center',
|
||
|
'justify-content': 'space-between',
|
||
1 year ago
|
'margin-bottom': '10px',
|
||
1 year ago
|
}
|
||
|
}, [radio_button, radio_button_text, radio_button_img]);
|
||
|
}));
|
||
1 year ago
|
const header = $el("h3", {
|
||
1 year ago
|
textContent: "Select an image to share",
|
||
|
size: 3,
|
||
|
color: "white",
|
||
|
style: {
|
||
|
'text-align': 'center',
|
||
|
color: 'white',
|
||
|
backgroundColor: 'black',
|
||
|
padding: '10px',
|
||
1 year ago
|
'margin-top': '0px',
|
||
1 year ago
|
}
|
||
1 year ago
|
}, [
|
||
|
$el("p", {
|
||
|
textContent: "Scroll to see all outputs",
|
||
|
size: 2,
|
||
|
color: "white",
|
||
|
style: {
|
||
|
'text-align': 'center',
|
||
|
color: 'white',
|
||
|
'margin-bottom': '5px',
|
||
|
'font-style': 'italic',
|
||
|
'font-size': '12px',
|
||
|
},
|
||
|
}, [])
|
||
|
]);
|
||
1 year ago
|
this.radio_buttons.appendChild(header);
|
||
1 year ago
|
// this.radio_buttons.appendChild(subheader);
|
||
1 year ago
|
this.radio_buttons.appendChild(new_radio_buttons);
|
||
1 year ago
|
this.element.style.display = "block";
|
||
|
}
|
||
|
}
|