|
import { app } from "scripts/app.js";
|
|
import type { LGraphCanvas, ContextMenuItem } from "typings/litegraph.js";
|
|
import type { ComfyNodeConstructor, ComfyObjectInfo } from "typings/comfy.js";
|
|
|
|
const clipboardSupportedPromise = new Promise<boolean>(async (resolve) => {
|
|
try {
|
|
|
|
|
|
|
|
const result = await navigator.permissions.query({ name: "clipboard-write" } as any);
|
|
resolve(result.state === "granted");
|
|
return;
|
|
} catch (e) {
|
|
try {
|
|
if (!navigator.clipboard.write) {
|
|
throw new Error();
|
|
}
|
|
new ClipboardItem({ "image/png": new Blob([], { type: "image/png" }) });
|
|
resolve(true);
|
|
return;
|
|
} catch (e) {
|
|
resolve(false);
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
app.registerExtension({
|
|
name: "rgthree.CopyImageToClipboard",
|
|
async beforeRegisterNodeDef(nodeType: ComfyNodeConstructor, nodeData: ComfyObjectInfo) {
|
|
if (nodeData.name.toLowerCase().includes("image")) {
|
|
if (await clipboardSupportedPromise) {
|
|
const getExtraMenuOptions = nodeType.prototype.getExtraMenuOptions;
|
|
nodeType.prototype.getExtraMenuOptions = function (
|
|
canvas: LGraphCanvas,
|
|
options: ContextMenuItem[],
|
|
) {
|
|
getExtraMenuOptions ? getExtraMenuOptions.apply(this, arguments) : undefined;
|
|
|
|
if (this.imgs?.length) {
|
|
let img =
|
|
this.imgs[this.imageIndex || 0] || this.imgs[this.overIndex || 0] || this.imgs[0];
|
|
const foundIdx = options.findIndex((option) => option?.content?.includes("Copy Image"));
|
|
if (img && foundIdx === -1) {
|
|
const menuItem: ContextMenuItem = {
|
|
content: "Copy Image (rgthree)",
|
|
callback: () => {
|
|
const canvas = document.createElement("canvas");
|
|
const ctx = canvas.getContext("2d")!;
|
|
canvas.width = img.naturalWidth;
|
|
canvas.height = img.naturalHeight;
|
|
ctx.drawImage(img, 0, 0, img.naturalWidth, img.naturalHeight);
|
|
canvas.toBlob((blob) => {
|
|
navigator.clipboard.write([new ClipboardItem({ "image/png": blob! })]);
|
|
});
|
|
},
|
|
};
|
|
let idx = options.findIndex((option) => option?.content?.includes("Open Image")) + 1;
|
|
if (idx != null) {
|
|
options.splice(idx, 0, menuItem);
|
|
} else {
|
|
options.unshift(menuItem);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
},
|
|
});
|
|
|