stable-diffusion-webui/javascript/contextMenus.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

177 lines
5.9 KiB
JavaScript
Raw Permalink Normal View History

2023-05-18 06:59:10 +00:00
var contextMenuInit = function() {
2022-10-08 04:34:17 +00:00
let eventListenerApplied = false;
let menuSpecs = new Map();
2022-10-08 04:34:17 +00:00
const uid = function() {
return Date.now().toString(36) + Math.random().toString(36).substring(2);
2022-10-08 04:34:17 +00:00
};
2022-10-08 04:34:17 +00:00
function showContextMenu(event, element, menuEntries) {
let posx = event.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
2022-12-15 02:01:32 +00:00
let posy = event.clientY + document.body.scrollTop + document.documentElement.scrollTop;
2022-10-08 04:34:17 +00:00
let oldMenu = gradioApp().querySelector('#context-menu');
if (oldMenu) {
oldMenu.remove();
}
2023-04-30 19:08:52 +00:00
let baseStyle = window.getComputedStyle(uiCurrentTab);
2022-10-08 04:34:17 +00:00
const contextMenu = document.createElement('nav');
contextMenu.id = "context-menu";
contextMenu.style.background = baseStyle.background;
contextMenu.style.color = baseStyle.color;
contextMenu.style.fontFamily = baseStyle.fontFamily;
contextMenu.style.top = posy + 'px';
contextMenu.style.left = posx + 'px';
2022-10-08 04:34:17 +00:00
const contextMenuList = document.createElement('ul');
contextMenuList.className = 'context-menu-items';
contextMenu.append(contextMenuList);
2022-10-08 04:34:17 +00:00
menuEntries.forEach(function(entry) {
let contextMenuEntry = document.createElement('a');
contextMenuEntry.innerHTML = entry['name'];
2023-04-30 19:12:24 +00:00
contextMenuEntry.addEventListener("click", function() {
2022-10-08 04:34:17 +00:00
entry['func']();
});
contextMenuList.append(contextMenuEntry);
2022-10-08 04:34:17 +00:00
});
gradioApp().appendChild(contextMenu);
2022-10-08 04:34:17 +00:00
let menuWidth = contextMenu.offsetWidth + 4;
let menuHeight = contextMenu.offsetHeight + 4;
2022-10-08 04:34:17 +00:00
let windowWidth = window.innerWidth;
let windowHeight = window.innerHeight;
2022-10-08 04:34:17 +00:00
if ((windowWidth - posx) < menuWidth) {
contextMenu.style.left = windowWidth - menuWidth + "px";
}
2022-10-08 04:34:17 +00:00
if ((windowHeight - posy) < menuHeight) {
contextMenu.style.top = windowHeight - menuHeight + "px";
}
2022-10-08 04:34:17 +00:00
}
2022-12-15 02:01:32 +00:00
function appendContextMenuOption(targetElementSelector, entryName, entryFunction) {
2023-04-30 19:08:52 +00:00
var currentItems = menuSpecs.get(targetElementSelector);
2022-10-08 04:34:17 +00:00
if (!currentItems) {
currentItems = [];
2022-12-15 02:01:32 +00:00
menuSpecs.set(targetElementSelector, currentItems);
2022-10-08 04:34:17 +00:00
}
2022-12-15 02:01:32 +00:00
let newItem = {
id: targetElementSelector + '_' + uid(),
2022-10-08 04:34:17 +00:00
name: entryName,
func: entryFunction,
isNew: true
};
2022-10-08 04:34:17 +00:00
currentItems.push(newItem);
return newItem['id'];
}
2022-10-08 04:34:17 +00:00
function removeContextMenuOption(uid) {
2023-04-30 19:12:24 +00:00
menuSpecs.forEach(function(v) {
2022-10-08 04:46:42 +00:00
let index = -1;
v.forEach(function(e, ei) {
if (e['id'] == uid) {
index = ei;
}
2022-10-08 04:46:42 +00:00
});
if (index >= 0) {
v.splice(index, 1);
}
});
2022-10-08 04:34:17 +00:00
}
2022-10-08 04:34:17 +00:00
function addContextMenuEventListener() {
if (eventListenerApplied) {
return;
}
gradioApp().addEventListener("click", function(e) {
if (!e.isTrusted) {
2022-10-08 04:34:17 +00:00
return;
}
2022-10-08 04:34:17 +00:00
let oldMenu = gradioApp().querySelector('#context-menu');
if (oldMenu) {
oldMenu.remove();
}
});
gradioApp().addEventListener("contextmenu", function(e) {
let oldMenu = gradioApp().querySelector('#context-menu');
if (oldMenu) {
oldMenu.remove();
}
menuSpecs.forEach(function(v, k) {
if (e.composedPath()[0].matches(k)) {
showContextMenu(e, e.composedPath()[0], v);
e.preventDefault();
}
});
});
2022-10-08 04:34:17 +00:00
eventListenerApplied = true;
2022-10-08 04:34:17 +00:00
}
2022-10-08 04:34:17 +00:00
return [appendContextMenuOption, removeContextMenuOption, addContextMenuEventListener];
};
2023-05-18 06:59:10 +00:00
var initResponse = contextMenuInit();
var appendContextMenuOption = initResponse[0];
var removeContextMenuOption = initResponse[1];
var addContextMenuEventListener = initResponse[2];
2022-10-11 12:19:16 +00:00
(function() {
//Start example Context Menu Items
let generateOnRepeat = function(genbuttonid, interruptbuttonid) {
let genbutton = gradioApp().querySelector(genbuttonid);
let interruptbutton = gradioApp().querySelector(interruptbuttonid);
2022-10-08 04:34:17 +00:00
if (!interruptbutton.offsetParent) {
genbutton.click();
}
2022-10-11 12:19:16 +00:00
clearInterval(window.generateOnRepeatInterval);
window.generateOnRepeatInterval = setInterval(function() {
if (!interruptbutton.offsetParent) {
genbutton.click();
}
},
500);
};
let generateOnRepeat_txt2img = function() {
2022-10-11 12:19:16 +00:00
generateOnRepeat('#txt2img_generate', '#txt2img_interrupt');
};
let generateOnRepeat_img2img = function() {
2022-10-11 12:19:16 +00:00
generateOnRepeat('#img2img_generate', '#img2img_interrupt');
};
appendContextMenuOption('#txt2img_generate', 'Generate forever', generateOnRepeat_txt2img);
appendContextMenuOption('#txt2img_interrupt', 'Generate forever', generateOnRepeat_txt2img);
appendContextMenuOption('#img2img_generate', 'Generate forever', generateOnRepeat_img2img);
appendContextMenuOption('#img2img_interrupt', 'Generate forever', generateOnRepeat_img2img);
2022-12-15 02:01:32 +00:00
let cancelGenerateForever = function() {
clearInterval(window.generateOnRepeatInterval);
2022-10-08 04:34:17 +00:00
};
2022-10-11 12:19:16 +00:00
appendContextMenuOption('#txt2img_interrupt', 'Cancel generate forever', cancelGenerateForever);
appendContextMenuOption('#txt2img_generate', 'Cancel generate forever', cancelGenerateForever);
appendContextMenuOption('#img2img_interrupt', 'Cancel generate forever', cancelGenerateForever);
appendContextMenuOption('#img2img_generate', 'Cancel generate forever', cancelGenerateForever);
2022-10-11 12:19:16 +00:00
})();
2022-10-08 04:34:17 +00:00
//End example Context Menu Items
2023-05-25 06:09:13 +00:00
onAfterUiUpdate(addContextMenuEventListener);