2024-03-13 21:11:44 +00:00
|
|
|
const re_extranet = /<([^:^>]+:[^:]+):[\d.]+>(.*)/;
|
|
|
|
const re_extranet_g = /<([^:^>]+:[^:]+):[\d.]+>/g;
|
|
|
|
const re_extranet_neg = /\(([^:^>]+:[\d.]+)\)/;
|
|
|
|
const re_extranet_g_neg = /\(([^:^>]+:[\d.]+)\)/g;
|
|
|
|
const extraNetworksApplyFilter = {};
|
|
|
|
const extraNetworksApplySort = {};
|
|
|
|
const activePromptTextarea = {};
|
|
|
|
const clusterizers = {};
|
|
|
|
const extra_networks_json_proxy = {};
|
|
|
|
const extra_networks_proxy_listener = setupProxyListener(
|
|
|
|
extra_networks_json_proxy,
|
|
|
|
function() {},
|
|
|
|
proxyJsonUpdated,
|
|
|
|
);
|
|
|
|
var globalPopup = null;
|
|
|
|
var globalPopupInner = null;
|
|
|
|
const storedPopupIds = {};
|
|
|
|
const extraPageUserMetadataEditors = {};
|
|
|
|
const uiAfterScriptsCallbacks = [];
|
|
|
|
var uiAfterScriptsTimeout = null;
|
|
|
|
var executedAfterScripts = false;
|
|
|
|
|
|
|
|
function waitForElement(selector) {
|
|
|
|
/** Promise that waits for an element to exist in DOM. */
|
|
|
|
return new Promise(resolve => {
|
|
|
|
if (document.querySelector(selector)) {
|
|
|
|
return resolve(document.querySelector(selector));
|
|
|
|
}
|
|
|
|
|
|
|
|
const observer = new MutationObserver(mutations => {
|
|
|
|
if (document.querySelector(selector)) {
|
|
|
|
observer.disconnect();
|
|
|
|
resolve(document.querySelector(selector));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// If you get "parameter 1 is not of type 'Node'" error, see https://stackoverflow.com/a/77855838/492336
|
|
|
|
observer.observe(document.documentElement, {
|
|
|
|
childList: true,
|
|
|
|
subtree: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
function waitForInitialUiOptionsLoaded() {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
(function _wait_for_bool() {
|
|
|
|
if (initialUiOptionsLoaded) return resolve();
|
|
|
|
setTimeout(_wait_for_bool, 100);
|
|
|
|
})();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function setupProxyListener(target, pre_handler, post_handler) {
|
|
|
|
/** Sets up a listener for variable changes. */
|
|
|
|
var proxy = new Proxy(target, {
|
|
|
|
set: function (t, k, v) {
|
|
|
|
pre_handler.call(t, k, v);
|
|
|
|
t[k] = v;
|
|
|
|
post_handler.call(t, k, v);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return proxy
|
|
|
|
}
|
|
|
|
|
|
|
|
function proxyJsonUpdated(k, v) {
|
|
|
|
/** Callback triggered when JSON data is updated by the proxy listener. */
|
|
|
|
// use `this` for current object
|
|
|
|
// We don't do error handling here because we want to fail gracefully if data is
|
|
|
|
// not yet present.
|
|
|
|
if (!(v.dataset.tabnameFull in clusterizers)) {
|
|
|
|
// Clusterizers not yet initialized.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
clusterizers[v.dataset.tabnameFull][v.dataset.proxyName].parseJson(v.dataset.json);
|
|
|
|
}
|
|
|
|
|
2023-08-05 06:15:18 +00:00
|
|
|
function toggleCss(key, css, enable) {
|
|
|
|
var style = document.getElementById(key);
|
|
|
|
if (enable && !style) {
|
|
|
|
style = document.createElement('style');
|
|
|
|
style.id = key;
|
|
|
|
style.type = 'text/css';
|
|
|
|
document.head.appendChild(style);
|
|
|
|
}
|
|
|
|
if (style && !enable) {
|
|
|
|
document.head.removeChild(style);
|
|
|
|
}
|
|
|
|
if (style) {
|
|
|
|
style.innerHTML == '';
|
|
|
|
style.appendChild(document.createTextNode(css));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksRefreshTab(tabname_full) {
|
2024-03-15 18:31:58 +00:00
|
|
|
if ("tree" === opts.extra_networks_tree_view_style.toLowerCase()) {
|
|
|
|
// Reapply controls since they don't change on refresh.
|
|
|
|
let btn_tree_view = gradioApp().querySelector(`#${tabname_full}_extra_tree_view`);
|
|
|
|
let div_tree_list = gradioApp().getElementById(`${tabname_full}_tree_list_scroll_area`);
|
2024-03-14 20:51:52 +00:00
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
if (btn_tree_view.classList.contains("extra-network-control--enabled")) {
|
|
|
|
div_tree_list.classList.toggle("hidden", false); // unhide
|
|
|
|
} else {
|
|
|
|
div_tree_list.classList.toggle("hidden", true); // hide
|
|
|
|
}
|
2024-03-14 20:51:52 +00:00
|
|
|
}
|
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
// If clusterizer isnt initialized for tab, just return.
|
2024-03-13 21:11:44 +00:00
|
|
|
if (!(tabname_full in clusterizers)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
extraNetworksEnableClusterizer(tabname_full);
|
2024-03-13 21:11:44 +00:00
|
|
|
|
2024-03-14 20:51:52 +00:00
|
|
|
// Force check update of data.
|
2024-03-15 18:31:58 +00:00
|
|
|
for (var elem of gradioApp().querySelectorAll(".extra-network-script-data")) {
|
2024-03-13 21:11:44 +00:00
|
|
|
extra_networks_proxy_listener[`${elem.dataset.tabnameFull}_${elem.dataset.proxyName}`] = elem;
|
|
|
|
}
|
2024-03-14 20:51:52 +00:00
|
|
|
|
|
|
|
// Rebuild to both update the data and to refresh the sizes of rows.
|
2024-03-15 18:31:58 +00:00
|
|
|
extraNetworksRebuildClusterizers(tabname_full);
|
2024-03-13 21:11:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
function setupExtraNetworksForTab(tabname) {
|
2024-01-13 18:16:39 +00:00
|
|
|
function registerPrompt(tabname, id) {
|
2024-03-13 21:11:44 +00:00
|
|
|
var textarea = gradioApp().querySelector(`#${id} > label > textarea`);
|
2023-11-05 07:12:50 +00:00
|
|
|
|
2024-01-13 18:16:39 +00:00
|
|
|
if (!activePromptTextarea[tabname]) {
|
|
|
|
activePromptTextarea[tabname] = textarea;
|
2023-06-02 04:12:08 +00:00
|
|
|
}
|
2023-06-02 04:08:45 +00:00
|
|
|
|
2024-01-13 18:16:39 +00:00
|
|
|
textarea.addEventListener("focus", function() {
|
|
|
|
activePromptTextarea[tabname] = textarea;
|
2023-06-02 04:12:08 +00:00
|
|
|
});
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
2024-01-14 18:39:01 +00:00
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
var tabnav = gradioApp().querySelector(`#${tabname}_extra_tabs > div.tab-nav`);
|
|
|
|
var controlsDiv = document.createElement("div");
|
|
|
|
controlsDiv.classList.add("extra-networks-controls-div");
|
2024-01-22 20:20:30 +00:00
|
|
|
tabnav.appendChild(controlsDiv);
|
|
|
|
tabnav.insertBefore(controlsDiv, null);
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
var this_tab = gradioApp().querySelector(`#${tabname}_extra_tabs`);
|
2024-03-15 18:31:58 +00:00
|
|
|
this_tab.querySelectorAll(`:scope > .tabitem[id^="${tabname}_"]`).forEach(function(elem) {
|
|
|
|
console.log("SETTING UP TAB:", elem.id);
|
2024-03-13 21:11:44 +00:00
|
|
|
let tabname_full = elem.id;
|
|
|
|
let txt_search;
|
|
|
|
|
|
|
|
var applyFilter = function() {
|
|
|
|
if (!(tabname_full in clusterizers)) {
|
|
|
|
console.error(`applyFilter: ${tabname_full} not in clusterizers:`);
|
2024-01-13 18:16:39 +00:00
|
|
|
return;
|
2023-06-02 04:12:08 +00:00
|
|
|
}
|
2024-03-15 18:31:58 +00:00
|
|
|
// We only want to sort/filter cards lists
|
2024-03-13 21:11:44 +00:00
|
|
|
clusterizers[tabname_full].cards_list.applyFilter(txt_search.value);
|
|
|
|
};
|
|
|
|
extraNetworksApplyFilter[tabname_full] = applyFilter;
|
2024-03-08 14:09:11 +00:00
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
var applySort = function() {
|
|
|
|
if (!(tabname_full in clusterizers)) {
|
|
|
|
console.error(`applySort: ${tabname_full} not in clusterizers:`);
|
|
|
|
return;
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
2024-03-15 18:31:58 +00:00
|
|
|
// We only want to sort/filter cards lists
|
2024-03-13 21:11:44 +00:00
|
|
|
clusterizers[tabname_full].cards_list.applyFilter(txt_search.value); // filter also sorts
|
2024-01-13 18:16:39 +00:00
|
|
|
};
|
2024-01-16 19:54:07 +00:00
|
|
|
extraNetworksApplySort[tabname_full] = applySort;
|
2024-03-13 21:11:44 +00:00
|
|
|
/** #TODO
|
|
|
|
* Figure out if we can use the following in the clusterize setup:
|
|
|
|
* var frag = document.createDocumentFragment();
|
|
|
|
* sortedCards.forEach(function(card) {
|
|
|
|
* frag.appendChild(card);
|
|
|
|
* });
|
|
|
|
* parent.appendChild(frag);
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Wait for all required elements before setting up the tab.
|
2024-03-15 18:31:58 +00:00
|
|
|
waitForInitialUiOptionsLoaded()
|
|
|
|
.then(() => {
|
|
|
|
waitForElement(`#${tabname_full}_extra_search`)
|
|
|
|
.then((el) => { txt_search = el; return; });
|
2024-03-13 21:11:44 +00:00
|
|
|
})
|
|
|
|
.then(() => {
|
2024-03-15 18:31:58 +00:00
|
|
|
if ("tree" === opts.extra_networks_tree_view_style.toLowerCase()) {
|
|
|
|
waitForElement(`#${tabname_full}_tree_list_scroll_area > #${tabname_full}_tree_list_content_area`)
|
|
|
|
.then(() => { return; });
|
|
|
|
} else {
|
|
|
|
waitForElement(`#${tabname_full}_dirs`)
|
|
|
|
.then(() => { return; });
|
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
waitForElement(`#${tabname_full}_cards_list_scroll_area > #${tabname_full}_cards_list_content_area`)
|
|
|
|
.then(() => { return; });
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
// Now that we have our elements in DOM, we create the clusterize lists.
|
|
|
|
clusterizers[tabname_full] = {
|
|
|
|
cards_list: new ExtraNetworksClusterizeCardsList({
|
|
|
|
scroll_id: `${tabname_full}_cards_list_scroll_area`,
|
|
|
|
content_id: `${tabname_full}_cards_list_content_area`,
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
if ("tree" === opts.extra_networks_tree_view_style.toLowerCase()) {
|
|
|
|
clusterizers[tabname_full].tree_list = new ExtraNetworksClusterizeTreeList({
|
|
|
|
scroll_id: `${tabname_full}_tree_list_scroll_area`,
|
|
|
|
content_id: `${tabname_full}_tree_list_content_area`,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
// Debounce search text input. This way we only search after user is done typing.
|
|
|
|
let typing_timer;
|
|
|
|
let done_typing_interval_ms = 250;
|
|
|
|
txt_search.addEventListener("keyup", () => {
|
|
|
|
clearTimeout(typing_timer);
|
|
|
|
if (txt_search.value) {
|
|
|
|
typing_timer = setTimeout(applyFilter, done_typing_interval_ms);
|
|
|
|
}
|
|
|
|
});
|
2024-03-14 20:51:52 +00:00
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
txt_search.addEventListener("extra-network-control--search-clear", applyFilter);
|
|
|
|
|
|
|
|
// Insert the controls into the page.
|
|
|
|
var controls = gradioApp().querySelector(`#${tabname_full}_controls`);
|
|
|
|
controlsDiv.insertBefore(controls, null);
|
|
|
|
if (elem.style.display != "none") {
|
|
|
|
extraNetworksShowControlsForPage(tabname, tabname_full);
|
|
|
|
}
|
|
|
|
});
|
2023-06-02 04:08:45 +00:00
|
|
|
});
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
registerPrompt(tabname, `${tabname}_prompt`);
|
|
|
|
registerPrompt(tabname, `${tabname}_neg_prompt`);
|
2023-05-08 08:33:45 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-11-05 16:19:55 +00:00
|
|
|
function extraNetworksMovePromptToTab(tabname, id, showPrompt, showNegativePrompt) {
|
|
|
|
if (!gradioApp().querySelector('.toprow-compact-tools')) return; // only applicable for compact prompt layout
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
var promptContainer = gradioApp().getElementById(`${tabname}_prompt_container`);
|
|
|
|
var prompt = gradioApp().getElementById(`${tabname}_prompt_row`);
|
|
|
|
var negPrompt = gradioApp().getElementById(`${tabname}_neg_prompt_row`);
|
2023-11-05 16:19:55 +00:00
|
|
|
var elem = id ? gradioApp().getElementById(id) : null;
|
|
|
|
|
|
|
|
if (showNegativePrompt && elem) {
|
|
|
|
elem.insertBefore(negPrompt, elem.firstChild);
|
|
|
|
} else {
|
|
|
|
promptContainer.insertBefore(negPrompt, promptContainer.firstChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (showPrompt && elem) {
|
|
|
|
elem.insertBefore(prompt, elem.firstChild);
|
|
|
|
} else {
|
|
|
|
promptContainer.insertBefore(prompt, promptContainer.firstChild);
|
|
|
|
}
|
2023-11-26 11:58:47 +00:00
|
|
|
|
|
|
|
if (elem) {
|
|
|
|
elem.classList.toggle('extra-page-prompts-active', showNegativePrompt || showPrompt);
|
|
|
|
}
|
2023-11-05 16:19:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-01-22 21:36:31 +00:00
|
|
|
function extraNetworksShowControlsForPage(tabname, tabname_full) {
|
2024-03-13 21:11:44 +00:00
|
|
|
gradioApp().querySelectorAll(`#${tabname}_extra_tabs .extra-networks-controls-div > div`).forEach(function(elem) {
|
|
|
|
var targetId = `${tabname_full}_controls`;
|
2024-01-22 20:20:30 +00:00
|
|
|
elem.style.display = elem.id == targetId ? "" : "none";
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-01-11 20:06:57 +00:00
|
|
|
function extraNetworksUnrelatedTabSelected(tabname) { // called from python when user selects an unrelated tab (generate)
|
2023-11-05 16:19:55 +00:00
|
|
|
extraNetworksMovePromptToTab(tabname, '', false, false);
|
2024-01-22 20:20:30 +00:00
|
|
|
|
|
|
|
extraNetworksShowControlsForPage(tabname, null);
|
2023-11-05 16:19:55 +00:00
|
|
|
}
|
|
|
|
|
2024-01-22 20:20:30 +00:00
|
|
|
function extraNetworksTabSelected(tabname, id, showPrompt, showNegativePrompt, tabname_full) { // called from python when user selects an extra networks tab
|
2023-11-05 16:19:55 +00:00
|
|
|
extraNetworksMovePromptToTab(tabname, id, showPrompt, showNegativePrompt);
|
2024-01-22 20:20:30 +00:00
|
|
|
|
|
|
|
extraNetworksShowControlsForPage(tabname, tabname_full);
|
2024-03-13 21:11:44 +00:00
|
|
|
|
|
|
|
for (_tabname_full of Object.keys(clusterizers)) {
|
2024-03-15 18:31:58 +00:00
|
|
|
for (const k of Object.keys(clusterizers[_tabname_full])) {
|
|
|
|
if (_tabname_full === tabname_full) {
|
|
|
|
// Set the selected tab as active since it is now visible on page.
|
|
|
|
clusterizers[_tabname_full][k].enable();
|
|
|
|
} else {
|
|
|
|
// Deactivate all other tabs since they are no longer visible.
|
|
|
|
clusterizers[_tabname_full][k].disable();
|
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
for (const v of Object.values(clusterizers[tabname_full])) {
|
|
|
|
if (!document.body.contains(v.scroll_elem)) {
|
|
|
|
v.rebuild();
|
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
}
|
2023-11-05 16:19:55 +00:00
|
|
|
}
|
|
|
|
|
2024-01-16 19:54:07 +00:00
|
|
|
function applyExtraNetworkFilter(tabname_full) {
|
2024-03-13 21:11:44 +00:00
|
|
|
setTimeout(extraNetworksApplyFilter[tabname_full], 1);
|
2023-01-21 05:36:07 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-01-16 19:54:07 +00:00
|
|
|
function applyExtraNetworkSort(tabname_full) {
|
2024-03-13 21:11:44 +00:00
|
|
|
setTimeout(extraNetworksApplySort[tabname_full], 1);
|
2023-11-05 07:12:50 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function setupExtraNetworksData() {
|
|
|
|
// Manually force read the json data.
|
2024-03-15 18:31:58 +00:00
|
|
|
for (var elem of gradioApp().querySelectorAll(".extra-network-script-data")) {
|
2024-03-13 21:11:44 +00:00
|
|
|
extra_networks_proxy_listener[`${elem.dataset.tabnameFull}_${elem.dataset.proxyName}`] = elem;
|
|
|
|
}
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
function extraNetworksUpdateClusterizersRows(tabname_full) {
|
|
|
|
if (tabname_full !== undefined && tabname_full in clusterizers) {
|
|
|
|
for (const v of Object.values(clusterizers[tabname_full])) {
|
|
|
|
v.updateRows();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// iterate over tabnames
|
|
|
|
for (const [_tabname_full, tab_clusterizers] of Object.entries(clusterizers)) {
|
|
|
|
// iterate over clusterizers in tab
|
|
|
|
for (const v of Object.values(tab_clusterizers)) {
|
|
|
|
v.updateRows();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function extraNetworksEnableClusterizer(tabname_full) {
|
|
|
|
// iterate over tabnames
|
|
|
|
for (const [_tabname_full, tab_clusterizers] of Object.entries(clusterizers)) {
|
|
|
|
// iterate over clusterizers in tab
|
|
|
|
for (const v of Object.values(tab_clusterizers)) {
|
|
|
|
if (_tabname_full === tabname_full) {
|
|
|
|
// Set the selected tab as active since it is now visible on page.
|
|
|
|
v.enable();
|
|
|
|
} else {
|
|
|
|
// Deactivate all other tabs since they are no longer visible.
|
|
|
|
v.disable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
function extraNetworksRebuildClusterizers(tabname_full) {
|
|
|
|
// iterate over tabnames
|
|
|
|
for (const [_tabname_full, tab_clusterizers] of Object.entries(clusterizers)) {
|
|
|
|
// iterate over clusterizers in tab
|
|
|
|
for (const v of Object.values(tab_clusterizers)) {
|
|
|
|
// If `tabname_full` isn't passed in, then rebuild all.
|
|
|
|
// If passed `tabname_full` is this tab, then rebuild.
|
|
|
|
// All other cases, we do not rebuild the tab.
|
|
|
|
if (tabname_full === undefined || _tabname_full === tabname_full) {
|
|
|
|
v.rebuild();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function extraNetworksSetupEventHandlers() {
|
2024-03-13 21:11:44 +00:00
|
|
|
// Handle window resizes. Delay of 500ms after resize before firing an event
|
|
|
|
// as a way of "debouncing" resizes.
|
|
|
|
var resize_timer;
|
|
|
|
window.addEventListener("resize", () => {
|
|
|
|
clearTimeout(resize_timer);
|
|
|
|
resize_timer = setTimeout(function() {
|
|
|
|
// Update rows for each list.
|
2024-03-15 18:31:58 +00:00
|
|
|
extraNetworksUpdateClusterizersRows();
|
2024-03-13 21:11:44 +00:00
|
|
|
}, 500); // ms
|
|
|
|
});
|
|
|
|
|
|
|
|
// Handle resizeHandle resizes. Only fires on mouseup after resizing.
|
|
|
|
window.addEventListener("resizeHandleResized", (e) => {
|
2024-03-15 18:31:58 +00:00
|
|
|
const tabname_full = e.target.closest(".extra-network-pane").id.replace("_pane", "");
|
|
|
|
// Force update rows after resizing.
|
|
|
|
extraNetworksUpdateClusterizersRows(tabname_full);
|
|
|
|
});
|
|
|
|
|
|
|
|
window.addEventListener("resizeHandleDblClick", (e) => {
|
|
|
|
const tabname_full = e.target.closest(".extra-network-pane").id.replace("_pane", "");
|
|
|
|
// This event is only applied to the currently selected tab if has clusterize list.
|
|
|
|
if (!(tabname_full in clusterizers)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let max_width = 0;
|
|
|
|
const scroll_area = e.target.querySelector(".extra-network-tree");
|
|
|
|
const content = e.target.querySelector(".extra-network-tree-content");
|
|
|
|
const style = window.getComputedStyle(content, null);
|
|
|
|
const content_lpad = parseInt(style.getPropertyValue("padding-left"));
|
|
|
|
const content_rpad = parseInt(style.getPropertyValue("padding-right"));
|
|
|
|
content.querySelectorAll(".tree-list-item").forEach((row) => {
|
|
|
|
// Temporarily set the grid columns to maximize column width
|
|
|
|
// so we can calculate the full width of the row.
|
|
|
|
const prev_grid_template_columns = row.style.gridTemplateColumns;
|
|
|
|
row.style.gridTemplateColumns = "repeat(5, max-content)";
|
|
|
|
if (row.scrollWidth > max_width) {
|
|
|
|
max_width = row.scrollWidth;
|
|
|
|
}
|
|
|
|
row.style.gridTemplateColumns = prev_grid_template_columns;
|
|
|
|
});
|
|
|
|
if (max_width <= 0) {
|
|
|
|
return;
|
2024-03-13 21:11:44 +00:00
|
|
|
}
|
2024-03-15 18:31:58 +00:00
|
|
|
|
|
|
|
// Add the container's padding to the result.
|
|
|
|
max_width += content_lpad + content_rpad;
|
|
|
|
|
|
|
|
// Add the scrollbar's width to the result. Will add 0 if scrollbar isnt present.
|
|
|
|
max_width += scroll_area.offsetWidth - scroll_area.clientWidth;
|
|
|
|
|
|
|
|
// Add the resize handle's padding to the result and default to minLeftColWidth if necessary.
|
|
|
|
max_width = Math.max(max_width + e.detail.pad, e.detail.minLeftColWidth);
|
|
|
|
|
|
|
|
e.detail.setLeftColGridTemplate(e.target, max_width);
|
|
|
|
|
|
|
|
extraNetworksUpdateClusterizersRows(tabname_full);
|
2024-03-13 21:11:44 +00:00
|
|
|
});
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
function setupExtraNetworks() {
|
|
|
|
setupExtraNetworksForTab('txt2img');
|
|
|
|
setupExtraNetworksForTab('img2img');
|
|
|
|
|
|
|
|
extraNetworksSetupEventHandlers();
|
|
|
|
}
|
|
|
|
|
2023-12-30 20:52:27 +00:00
|
|
|
function tryToRemoveExtraNetworkFromPrompt(textarea, text, isNeg) {
|
|
|
|
var m = text.match(isNeg ? re_extranet_neg : re_extranet);
|
2023-01-28 20:31:48 +00:00
|
|
|
var replaced = false;
|
2023-05-17 02:20:11 +00:00
|
|
|
var newTextareaText;
|
2024-01-18 03:38:51 +00:00
|
|
|
var extraTextBeforeNet = opts.extra_networks_add_text_separator;
|
2023-05-17 02:20:11 +00:00
|
|
|
if (m) {
|
2023-07-15 21:56:53 +00:00
|
|
|
var extraTextAfterNet = m[2];
|
2023-05-17 02:20:11 +00:00
|
|
|
var partToSearch = m[1];
|
2023-07-15 21:56:53 +00:00
|
|
|
var foundAtPosition = -1;
|
2023-12-30 20:52:27 +00:00
|
|
|
newTextareaText = textarea.value.replaceAll(isNeg ? re_extranet_g_neg : re_extranet_g, function(found, net, pos) {
|
|
|
|
m = found.match(isNeg ? re_extranet_neg : re_extranet);
|
2023-05-17 02:20:11 +00:00
|
|
|
if (m[1] == partToSearch) {
|
|
|
|
replaced = true;
|
2023-07-15 21:56:53 +00:00
|
|
|
foundAtPosition = pos;
|
2023-05-17 02:20:11 +00:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
});
|
2023-09-10 00:22:10 +00:00
|
|
|
if (foundAtPosition >= 0) {
|
2023-12-30 20:52:27 +00:00
|
|
|
if (extraTextAfterNet && newTextareaText.substr(foundAtPosition, extraTextAfterNet.length) == extraTextAfterNet) {
|
2023-09-10 00:22:10 +00:00
|
|
|
newTextareaText = newTextareaText.substr(0, foundAtPosition) + newTextareaText.substr(foundAtPosition + extraTextAfterNet.length);
|
|
|
|
}
|
|
|
|
if (newTextareaText.substr(foundAtPosition - extraTextBeforeNet.length, extraTextBeforeNet.length) == extraTextBeforeNet) {
|
|
|
|
newTextareaText = newTextareaText.substr(0, foundAtPosition - extraTextBeforeNet.length) + newTextareaText.substr(foundAtPosition);
|
|
|
|
}
|
2023-07-15 21:56:53 +00:00
|
|
|
}
|
2023-05-17 02:20:11 +00:00
|
|
|
} else {
|
2024-01-18 03:38:51 +00:00
|
|
|
newTextareaText = textarea.value.replaceAll(new RegExp(`((?:${extraTextBeforeNet})?${text})`, "g"), "");
|
|
|
|
replaced = (newTextareaText != textarea.value);
|
2023-05-17 02:20:11 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-01-28 20:31:48 +00:00
|
|
|
if (replaced) {
|
|
|
|
textarea.value = newTextareaText;
|
|
|
|
return true;
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-01-28 20:31:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-12-30 20:52:27 +00:00
|
|
|
function updatePromptArea(text, textArea, isNeg) {
|
|
|
|
if (!tryToRemoveExtraNetworkFromPrompt(textArea, text, isNeg)) {
|
|
|
|
textArea.value = textArea.value + opts.extra_networks_add_text_separator + text;
|
2023-01-28 20:31:48 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-12-30 20:52:27 +00:00
|
|
|
updateInput(textArea);
|
|
|
|
}
|
|
|
|
|
|
|
|
function cardClicked(tabname, textToAdd, textToAddNegative, allowNegativePrompt) {
|
|
|
|
if (textToAddNegative.length > 0) {
|
2024-03-13 21:11:44 +00:00
|
|
|
updatePromptArea(textToAdd, gradioApp().querySelector(`#${tabname}_prompt > label > textarea`));
|
|
|
|
updatePromptArea(textToAddNegative, gradioApp().querySelector(`#${tabname}_neg_prompt > label > textarea`), true);
|
2023-12-30 20:52:27 +00:00
|
|
|
} else {
|
2024-03-13 21:11:44 +00:00
|
|
|
var textarea = allowNegativePrompt ? activePromptTextarea[tabname] : gradioApp().querySelector(`#${tabname}_prompt > label > textarea`);
|
2023-12-30 21:16:51 +00:00
|
|
|
updatePromptArea(textToAdd, textarea);
|
2023-12-30 20:52:27 +00:00
|
|
|
}
|
2023-01-21 05:36:07 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
function saveCardPreview(event, tabname, filename) {
|
2024-03-13 21:11:44 +00:00
|
|
|
var textarea = gradioApp().querySelector(`#${tabname}_preview_filename > label > textarea`);
|
|
|
|
var button = gradioApp().getElementById(`${tabname}_save_preview`);
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
textarea.value = filename;
|
|
|
|
updateInput(textarea);
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
button.click();
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksSearchButton(event, tabname_full) {
|
|
|
|
var searchTextarea = gradioApp().querySelector("#" + tabname_full + "_extra_search");
|
2024-03-08 06:52:25 +00:00
|
|
|
var button = event.target;
|
|
|
|
var text = button.classList.contains("search-all") ? "" : button.textContent.trim();
|
|
|
|
|
|
|
|
searchTextarea.value = text;
|
|
|
|
updateInput(searchTextarea);
|
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksTreeProcessFileClick(event, btn, tabname_full) {
|
2024-01-13 18:16:39 +00:00
|
|
|
/**
|
|
|
|
* Processes `onclick` events when user clicks on files in tree.
|
2024-01-14 18:49:39 +00:00
|
|
|
*
|
2024-03-13 21:11:44 +00:00
|
|
|
* @param event The generated event.
|
|
|
|
* @param btn The clicked `tree-list-item` button.
|
|
|
|
* @param tabname_full The full active tabname.
|
|
|
|
* i.e. txt2img_lora, img2img_checkpoints, etc.
|
2024-01-13 18:16:39 +00:00
|
|
|
*/
|
2024-01-16 18:35:01 +00:00
|
|
|
// NOTE: Currently unused.
|
|
|
|
return;
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksTreeProcessDirectoryClick(event, btn, tabname_full) {
|
2024-01-13 18:16:39 +00:00
|
|
|
/**
|
|
|
|
* Processes `onclick` events when user clicks on directories in tree.
|
2024-01-14 18:49:39 +00:00
|
|
|
*
|
2024-01-13 18:16:39 +00:00
|
|
|
* Here is how the tree reacts to clicks for various states:
|
2024-03-04 06:37:23 +00:00
|
|
|
* unselected unopened directory: Directory is selected and expanded.
|
2024-01-13 18:16:39 +00:00
|
|
|
* unselected opened directory: Directory is selected.
|
|
|
|
* selected opened directory: Directory is collapsed and deselected.
|
|
|
|
* chevron is clicked: Directory is expanded or collapsed. Selected state unchanged.
|
2024-01-14 18:49:39 +00:00
|
|
|
*
|
2024-03-13 21:11:44 +00:00
|
|
|
* @param event The generated event.
|
|
|
|
* @param btn The clicked `tree-list-item` button.
|
|
|
|
* @param tabname_full The full active tabname.
|
|
|
|
* i.e. txt2img_lora, img2img_checkpoints, etc.
|
2024-01-13 18:16:39 +00:00
|
|
|
*/
|
|
|
|
// This is the actual target that the user clicked on within the target button.
|
|
|
|
// We use this to detect if the chevron was clicked.
|
|
|
|
var true_targ = event.target;
|
2024-03-13 21:11:44 +00:00
|
|
|
const div_id = btn.dataset.divId;
|
2024-01-13 18:16:39 +00:00
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function _expandOrCollapse(_btn) {
|
|
|
|
// Expands/Collapses all children of the button.
|
|
|
|
if ("expanded" in _btn.dataset) {
|
2024-01-16 18:35:01 +00:00
|
|
|
delete _btn.dataset.expanded;
|
2024-03-13 21:11:44 +00:00
|
|
|
clusterizers[tabname_full].tree_list.removeChildRows(div_id);
|
|
|
|
} else {
|
|
|
|
_btn.dataset.expanded = "";
|
|
|
|
clusterizers[tabname_full].tree_list.addChildRows(div_id);
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
// update html after changing attr.
|
|
|
|
clusterizers[tabname_full].tree_list.updateDivContent(div_id, _btn.outerHTML);
|
|
|
|
clusterizers[tabname_full].tree_list.updateRows();
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function _removeSelectedFromAll() {
|
2024-01-13 18:16:39 +00:00
|
|
|
// Removes the `selected` attribute from all buttons.
|
2024-03-13 21:11:44 +00:00
|
|
|
var sels = document.querySelectorAll(".tree-list-item");
|
2024-01-13 18:16:39 +00:00
|
|
|
[...sels].forEach(el => {
|
2024-01-16 18:35:01 +00:00
|
|
|
delete el.dataset.selected;
|
2024-01-14 18:49:39 +00:00
|
|
|
});
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function _selectButton(_btn) {
|
2024-01-16 18:35:01 +00:00
|
|
|
// Removes `data-selected` attribute from all buttons then adds to passed button.
|
2024-03-13 21:11:44 +00:00
|
|
|
_removeSelectedFromAll();
|
2024-01-16 18:35:01 +00:00
|
|
|
_btn.dataset.selected = "";
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function _updateSearch(_search_text) {
|
2024-01-14 18:39:01 +00:00
|
|
|
// Update search input with select button's path.
|
2024-03-15 18:31:58 +00:00
|
|
|
var search_input_elem = gradioApp().querySelector(`#${tabname_full}_extra_search`);
|
2024-01-14 18:39:01 +00:00
|
|
|
search_input_elem.value = _search_text;
|
|
|
|
updateInput(search_input_elem);
|
2024-03-14 20:51:52 +00:00
|
|
|
applyExtraNetworkFilter(tabname_full);
|
2024-01-14 18:39:01 +00:00
|
|
|
}
|
|
|
|
|
2024-01-14 18:49:39 +00:00
|
|
|
|
2024-01-13 18:16:39 +00:00
|
|
|
// If user clicks on the chevron, then we do not select the folder.
|
2024-01-15 18:40:47 +00:00
|
|
|
if (true_targ.matches(".tree-list-item-action--leading, .tree-list-item-action-chevron")) {
|
2024-03-13 21:11:44 +00:00
|
|
|
_expandOrCollapse(btn);
|
2024-01-13 18:16:39 +00:00
|
|
|
} else {
|
|
|
|
// User clicked anywhere else on the button.
|
2024-03-13 21:11:44 +00:00
|
|
|
if ("selected" in btn.dataset) {
|
|
|
|
// If folder is selected, deselect button.
|
2024-01-16 18:35:01 +00:00
|
|
|
delete btn.dataset.selected;
|
2024-03-15 18:31:58 +00:00
|
|
|
_expandOrCollapse(btn);
|
2024-03-13 21:11:44 +00:00
|
|
|
_updateSearch("");
|
2024-01-13 18:16:39 +00:00
|
|
|
} else {
|
2024-03-13 21:11:44 +00:00
|
|
|
// If folder is not selected, select it.
|
|
|
|
_selectButton(btn);
|
|
|
|
_updateSearch(btn.dataset.path);
|
2024-01-13 18:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksTreeOnClick(event, tabname_full) {
|
2024-01-13 18:16:39 +00:00
|
|
|
/**
|
2024-01-15 18:40:47 +00:00
|
|
|
* Handles `onclick` events for buttons within an `extra-network-tree .tree-list--tree`.
|
2024-01-14 18:49:39 +00:00
|
|
|
*
|
2024-01-13 18:16:39 +00:00
|
|
|
* Determines whether the clicked button in the tree is for a file entry or a directory
|
|
|
|
* then calls the appropriate function.
|
2024-01-14 18:49:39 +00:00
|
|
|
*
|
2024-03-13 21:11:44 +00:00
|
|
|
* @param event The generated event.
|
|
|
|
* @param tabname_full The full active tabname.
|
|
|
|
* i.e. txt2img_lora, img2img_checkpoints, etc.
|
2024-01-13 18:16:39 +00:00
|
|
|
*/
|
2024-03-13 21:11:44 +00:00
|
|
|
let btn = event.target.closest(".tree-list-item");
|
|
|
|
if (btn.dataset.treeEntryType === "file") {
|
|
|
|
extraNetworksTreeProcessFileClick(event, btn, tabname_full);
|
|
|
|
} else {
|
|
|
|
extraNetworksTreeProcessDirectoryClick(event, btn, tabname_full);
|
|
|
|
}
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
function extraNetworkDirsOnClick(event, tabname_full) {
|
2024-03-15 23:11:30 +00:00
|
|
|
var txt_search = gradioApp().querySelector(`#${tabname_full}_extra_search`);
|
|
|
|
|
|
|
|
function _deselect_all() {
|
|
|
|
// deselect all buttons
|
|
|
|
gradioApp().querySelectorAll(".extra-network-dirs-view-button").forEach((elem) => {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function _select_button(elem) {
|
|
|
|
_deselect_all();
|
|
|
|
// Update search input with select button's path.
|
|
|
|
elem.dataset.selected = "";
|
|
|
|
txt_search.value = elem.textContent.trim();
|
|
|
|
}
|
|
|
|
|
|
|
|
function _deselect_button(elem) {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
txt_search.value = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ("selected" in event.target.dataset) {
|
|
|
|
_deselect_button(event.target);
|
|
|
|
} else {
|
|
|
|
_select_button(event.target);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateInput(txt_search);
|
2024-03-15 18:31:58 +00:00
|
|
|
applyExtraNetworkFilter(tabname_full);
|
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksControlSearchClearOnClick(event, tabname_full) {
|
|
|
|
/** Clears the search <input> text. */
|
|
|
|
let clear_btn = event.target.closest(".extra-network-control--search-clear");
|
2024-03-15 23:11:30 +00:00
|
|
|
|
|
|
|
// Deselect all buttons from both dirs view and tree view
|
|
|
|
gradioApp().querySelectorAll(".extra-network-dirs-view-button").forEach((elem) => {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
});
|
|
|
|
|
|
|
|
gradioApp().querySelectorAll(".tree-list-item").forEach((elem) => {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
});
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
let txt_search = clear_btn.previousElementSibling;
|
|
|
|
txt_search.value = "";
|
|
|
|
txt_search.dispatchEvent(new CustomEvent("extra-network-control--search-clear", {}));
|
2023-03-14 06:10:26 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksControlSortModeOnClick(event, tabname_full) {
|
2024-03-09 05:25:01 +00:00
|
|
|
/** Handles `onclick` events for Sort Mode buttons. */
|
|
|
|
|
|
|
|
var self = event.currentTarget;
|
|
|
|
var parent = event.currentTarget.parentElement;
|
|
|
|
|
2024-03-14 20:51:52 +00:00
|
|
|
parent.querySelectorAll('.extra-network-control--sort-mode').forEach(function(x) {
|
2024-03-09 05:25:01 +00:00
|
|
|
x.classList.remove('extra-network-control--enabled');
|
|
|
|
});
|
|
|
|
|
|
|
|
self.classList.add('extra-network-control--enabled');
|
2024-03-09 04:24:25 +00:00
|
|
|
|
2024-03-14 20:51:52 +00:00
|
|
|
if (tabname_full in clusterizers) {
|
|
|
|
clusterizers[tabname_full].cards_list.setSortMode(self);
|
|
|
|
applyExtraNetworkSort(tabname_full);
|
|
|
|
}
|
2024-01-15 22:34:44 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksControlSortDirOnClick(event, tabname_full) {
|
2024-01-16 18:35:01 +00:00
|
|
|
/**
|
|
|
|
* Handles `onclick` events for the Sort Direction button.
|
|
|
|
*
|
|
|
|
* Modifies the data attributes of the Sort Direction button to cycle between
|
|
|
|
* ascending and descending sort directions.
|
|
|
|
*
|
2024-03-13 21:11:44 +00:00
|
|
|
* @param event The generated event.
|
|
|
|
* @param tabname_full The full active tabname.
|
|
|
|
* i.e. txt2img_lora, img2img_checkpoints, etc.
|
2024-01-16 18:35:01 +00:00
|
|
|
*/
|
2024-03-13 21:11:44 +00:00
|
|
|
if (event.currentTarget.dataset.sortDir.toLowerCase() == "ascending") {
|
|
|
|
event.currentTarget.dataset.sortDir = "descending";
|
2024-01-15 22:34:44 +00:00
|
|
|
event.currentTarget.setAttribute("title", "Sort descending");
|
|
|
|
} else {
|
2024-03-13 21:11:44 +00:00
|
|
|
event.currentTarget.dataset.sortDir = "ascending";
|
2024-01-15 22:34:44 +00:00
|
|
|
event.currentTarget.setAttribute("title", "Sort ascending");
|
|
|
|
}
|
2024-03-14 20:51:52 +00:00
|
|
|
|
|
|
|
if (tabname_full in clusterizers) {
|
|
|
|
clusterizers[tabname_full].cards_list.setSortDir(event.currentTarget);
|
|
|
|
applyExtraNetworkSort(tabname_full);
|
|
|
|
}
|
2024-01-15 22:34:44 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksControlTreeViewOnClick(event, tabname_full) {
|
2024-01-20 16:43:45 +00:00
|
|
|
/**
|
|
|
|
* Handles `onclick` events for the Tree View button.
|
|
|
|
*
|
|
|
|
* Toggles the tree view in the extra networks pane.
|
|
|
|
*
|
2024-03-13 21:11:44 +00:00
|
|
|
* @param event The generated event.
|
|
|
|
* @param tabname_full The full active tabname.
|
|
|
|
* i.e. txt2img_lora, img2img_checkpoints, etc.
|
2024-01-20 16:43:45 +00:00
|
|
|
*/
|
2024-03-08 06:52:25 +00:00
|
|
|
var button = event.currentTarget;
|
|
|
|
button.classList.toggle("extra-network-control--enabled");
|
2024-03-08 13:54:39 +00:00
|
|
|
var show = !button.classList.contains("extra-network-control--enabled");
|
2024-03-08 06:52:25 +00:00
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
if ("tree" === opts.extra_networks_tree_view_style.toLowerCase()) {
|
|
|
|
gradioApp().getElementById(`${tabname_full}_tree_list_scroll_area`).classList.toggle("hidden", show);
|
|
|
|
} else {
|
|
|
|
gradioApp().getElementById(`${tabname_full}_dirs`).classList.toggle("hidden", show);
|
|
|
|
}
|
2024-03-14 20:51:52 +00:00
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
extraNetworksUpdateClusterizersRows(tabname_full);
|
2024-01-20 16:43:45 +00:00
|
|
|
}
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
function extraNetworksControlRefreshOnClick(event, tabname_full) {
|
2024-01-16 18:35:01 +00:00
|
|
|
/**
|
|
|
|
* Handles `onclick` events for the Refresh Page button.
|
|
|
|
*
|
|
|
|
* In order to actually call the python functions in `ui_extra_networks.py`
|
|
|
|
* to refresh the page, we created an empty gradio button in that file with an
|
|
|
|
* event handler that refreshes the page. So what this function here does
|
|
|
|
* is it manually raises a `click` event on that button.
|
|
|
|
*
|
2024-03-13 21:11:44 +00:00
|
|
|
* @param event The generated event.
|
|
|
|
* @param tabname_full The full active tabname.
|
|
|
|
* i.e. txt2img_lora, img2img_checkpoints, etc.
|
2024-01-16 18:35:01 +00:00
|
|
|
*/
|
2024-03-15 18:31:58 +00:00
|
|
|
initialUiOptionsLoaded = false;
|
2024-03-13 21:11:44 +00:00
|
|
|
var btn_refresh_internal = gradioApp().getElementById(`${tabname_full}_extra_refresh_internal`);
|
2024-01-15 22:34:44 +00:00
|
|
|
btn_refresh_internal.dispatchEvent(new Event("click"));
|
|
|
|
}
|
|
|
|
|
2023-07-15 18:05:33 +00:00
|
|
|
function closePopup() {
|
2023-07-15 17:39:04 +00:00
|
|
|
if (!globalPopup) return;
|
|
|
|
globalPopup.style.display = "none";
|
|
|
|
}
|
2023-10-03 04:22:15 +00:00
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
function popup(contents) {
|
|
|
|
if (!globalPopup) {
|
|
|
|
globalPopup = document.createElement('div');
|
|
|
|
globalPopup.classList.add('global-popup');
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
var close = document.createElement('div');
|
|
|
|
close.classList.add('global-popup-close');
|
2023-10-03 04:22:15 +00:00
|
|
|
close.addEventListener("click", closePopup);
|
2023-03-14 06:10:26 +00:00
|
|
|
close.title = "Close";
|
|
|
|
globalPopup.appendChild(close);
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
globalPopupInner = document.createElement('div');
|
|
|
|
globalPopupInner.classList.add('global-popup-inner');
|
|
|
|
globalPopup.appendChild(globalPopupInner);
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-07-17 15:56:14 +00:00
|
|
|
gradioApp().querySelector('.main').appendChild(globalPopup);
|
2023-03-14 06:10:26 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
globalPopupInner.innerHTML = '';
|
|
|
|
globalPopupInner.appendChild(contents);
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
globalPopup.style.display = "flex";
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-08-27 06:39:37 +00:00
|
|
|
function popupId(id) {
|
2023-08-27 07:11:14 +00:00
|
|
|
if (!storedPopupIds[id]) {
|
2023-08-27 06:39:37 +00:00
|
|
|
storedPopupIds[id] = gradioApp().getElementById(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
popup(storedPopupIds[id]);
|
|
|
|
}
|
|
|
|
|
2024-03-04 23:33:22 +00:00
|
|
|
function extraNetworksFlattenMetadata(obj) {
|
|
|
|
const result = {};
|
|
|
|
|
|
|
|
// Convert any stringified JSON objects to actual objects
|
|
|
|
for (const key of Object.keys(obj)) {
|
|
|
|
if (typeof obj[key] === 'string') {
|
|
|
|
try {
|
|
|
|
const parsed = JSON.parse(obj[key]);
|
|
|
|
if (parsed && typeof parsed === 'object') {
|
|
|
|
obj[key] = parsed;
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flatten the object
|
|
|
|
for (const key of Object.keys(obj)) {
|
|
|
|
if (typeof obj[key] === 'object' && obj[key] !== null) {
|
|
|
|
const nested = extraNetworksFlattenMetadata(obj[key]);
|
|
|
|
for (const nestedKey of Object.keys(nested)) {
|
|
|
|
result[`${key}/${nestedKey}`] = nested[nestedKey];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
result[key] = obj[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special case for handling modelspec keys
|
|
|
|
for (const key of Object.keys(result)) {
|
|
|
|
if (key.startsWith("modelspec.")) {
|
|
|
|
result[key.replaceAll(".", "/")] = result[key];
|
|
|
|
delete result[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add empty keys to designate hierarchy
|
|
|
|
for (const key of Object.keys(result)) {
|
|
|
|
const parts = key.split("/");
|
|
|
|
for (let i = 1; i < parts.length; i++) {
|
|
|
|
const parent = parts.slice(0, i).join("/");
|
|
|
|
if (!result[parent]) {
|
|
|
|
result[parent] = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-03-25 09:10:03 +00:00
|
|
|
function extraNetworksShowMetadata(text) {
|
2024-03-04 23:33:22 +00:00
|
|
|
try {
|
|
|
|
let parsed = JSON.parse(text);
|
|
|
|
if (parsed && typeof parsed === 'object') {
|
|
|
|
parsed = extraNetworksFlattenMetadata(parsed);
|
|
|
|
const table = createVisualizationTable(parsed, 0);
|
|
|
|
popup(table);
|
|
|
|
return;
|
|
|
|
}
|
2024-03-04 23:46:25 +00:00
|
|
|
} catch (error) {
|
2024-03-14 20:51:52 +00:00
|
|
|
console.error(error);
|
2024-03-04 23:46:25 +00:00
|
|
|
}
|
2024-03-04 23:33:22 +00:00
|
|
|
|
2023-04-30 19:08:52 +00:00
|
|
|
var elem = document.createElement('pre');
|
2023-03-14 06:10:26 +00:00
|
|
|
elem.classList.add('popup-metadata');
|
|
|
|
elem.textContent = text;
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
popup(elem);
|
2024-03-04 23:33:22 +00:00
|
|
|
return;
|
2023-03-14 06:10:26 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-25 07:11:04 +00:00
|
|
|
function requestGet(url, data, handler, errorHandler) {
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
var args = Object.keys(data).map(function(k) {
|
|
|
|
return encodeURIComponent(k) + '=' + encodeURIComponent(data[k]);
|
|
|
|
}).join('&');
|
|
|
|
xhr.open("GET", url + "?" + args, true);
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-25 07:11:04 +00:00
|
|
|
xhr.onreadystatechange = function() {
|
|
|
|
if (xhr.readyState === 4) {
|
|
|
|
if (xhr.status === 200) {
|
|
|
|
try {
|
|
|
|
var js = JSON.parse(xhr.responseText);
|
|
|
|
handler(js);
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
errorHandler();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
errorHandler();
|
2023-05-17 12:46:58 +00:00
|
|
|
}
|
2023-03-25 07:11:04 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
var js = JSON.stringify(data);
|
|
|
|
xhr.send(js);
|
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-03-14 20:51:52 +00:00
|
|
|
function extraNetworksCopyPathToClipboard(event, path) {
|
2024-01-08 19:10:03 +00:00
|
|
|
navigator.clipboard.writeText(path);
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
|
2023-03-25 09:10:03 +00:00
|
|
|
function extraNetworksRequestMetadata(event, extraPage, cardName) {
|
2023-04-30 19:08:52 +00:00
|
|
|
var showError = function() {
|
|
|
|
extraNetworksShowMetadata("there was an error getting metadata");
|
|
|
|
};
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-25 07:11:04 +00:00
|
|
|
requestGet("./sd_extra_networks/metadata", {page: extraPage, item: cardName}, function(data) {
|
|
|
|
if (data && data.metadata) {
|
|
|
|
extraNetworksShowMetadata(data.metadata);
|
|
|
|
} else {
|
|
|
|
showError();
|
|
|
|
}
|
|
|
|
}, showError);
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2023-03-25 09:10:03 +00:00
|
|
|
event.stopPropagation();
|
2023-03-25 07:11:04 +00:00
|
|
|
}
|
2023-07-15 17:39:04 +00:00
|
|
|
|
|
|
|
function extraNetworksEditUserMetadata(event, tabname, extraPage, cardName) {
|
|
|
|
var id = tabname + '_' + extraPage + '_edit_user_metadata';
|
|
|
|
|
2023-07-15 18:05:33 +00:00
|
|
|
var editor = extraPageUserMetadataEditors[id];
|
|
|
|
if (!editor) {
|
2023-07-15 17:39:04 +00:00
|
|
|
editor = {};
|
|
|
|
editor.page = gradioApp().getElementById(id);
|
|
|
|
editor.nameTextarea = gradioApp().querySelector("#" + id + "_name" + ' textarea');
|
|
|
|
editor.button = gradioApp().querySelector("#" + id + "_button");
|
|
|
|
extraPageUserMetadataEditors[id] = editor;
|
|
|
|
}
|
|
|
|
|
|
|
|
editor.nameTextarea.value = cardName;
|
|
|
|
updateInput(editor.nameTextarea);
|
|
|
|
|
|
|
|
editor.button.click();
|
|
|
|
|
|
|
|
popup(editor.page);
|
|
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
2023-07-15 21:56:53 +00:00
|
|
|
|
2023-07-16 05:38:23 +00:00
|
|
|
function extraNetworksRefreshSingleCard(page, tabname, name) {
|
|
|
|
requestGet("./sd_extra_networks/get-single-card", {page: page, tabname: tabname, name: name}, function(data) {
|
|
|
|
if (data && data.html) {
|
2023-09-27 03:08:55 +00:00
|
|
|
var card = gradioApp().querySelector(`#${tabname}_${page.replace(" ", "_")}_cards > .card[data-name="${name}"]`);
|
2023-07-16 05:38:23 +00:00
|
|
|
|
|
|
|
var newDiv = document.createElement('DIV');
|
|
|
|
newDiv.innerHTML = data.html;
|
|
|
|
var newCard = newDiv.firstElementChild;
|
|
|
|
|
2023-08-14 16:27:04 +00:00
|
|
|
newCard.style.display = '';
|
2023-07-16 05:38:23 +00:00
|
|
|
card.parentElement.insertBefore(newCard, card);
|
|
|
|
card.parentElement.removeChild(card);
|
|
|
|
}
|
|
|
|
});
|
2023-07-15 21:56:53 +00:00
|
|
|
}
|
2023-12-01 05:36:12 +00:00
|
|
|
|
|
|
|
window.addEventListener("keydown", function(event) {
|
|
|
|
if (event.key == "Escape") {
|
|
|
|
closePopup();
|
|
|
|
}
|
|
|
|
});
|
2024-01-13 18:16:39 +00:00
|
|
|
|
2024-03-15 18:31:58 +00:00
|
|
|
var initialUiOptionsLoaded = false;
|
|
|
|
|
2024-03-13 21:11:44 +00:00
|
|
|
onUiLoaded(setupExtraNetworks);
|
2024-03-15 18:31:58 +00:00
|
|
|
onOptionsChanged(function() { initialUiOptionsLoaded = true; });
|