2024-03-26 18:11:01 +00:00
|
|
|
// Prevent eslint errors on functions defined in other files.
|
|
|
|
/*global
|
|
|
|
ExtraNetworksClusterizeTreeList,
|
|
|
|
ExtraNetworksClusterizeCardsList,
|
2024-04-14 18:52:17 +00:00
|
|
|
waitForElement,
|
2024-04-22 22:25:48 +00:00
|
|
|
isString,
|
2024-04-14 18:52:17 +00:00
|
|
|
isElement,
|
|
|
|
isElementThrowError,
|
|
|
|
requestGetPromise,
|
|
|
|
isElementLogError,
|
|
|
|
isNumber,
|
|
|
|
waitForKeyInObject,
|
|
|
|
isNullOrUndefined,
|
|
|
|
debounce,
|
|
|
|
waitForBool,
|
|
|
|
copyToClipboard,
|
2024-03-26 18:11:01 +00:00
|
|
|
*/
|
|
|
|
/*eslint no-undef: "error"*/
|
|
|
|
|
2024-03-25 14:26:29 +00:00
|
|
|
const SEARCH_INPUT_DEBOUNCE_TIME_MS = 250;
|
2024-04-16 15:22:12 +00:00
|
|
|
const EXTRA_NETWORKS_GET_PAGE_READY_MAX_ATTEMPTS = 10;
|
2024-04-17 19:24:45 +00:00
|
|
|
const EXTRA_NETWORKS_WAIT_FOR_PAGE_READY_TIMEOUT_MS = 1000;
|
2024-04-16 15:22:12 +00:00
|
|
|
const EXTRA_NETWORKS_REQUEST_GET_TIMEOUT_MS = 1000;
|
2024-04-16 16:43:30 +00:00
|
|
|
const EXTRA_NETWORKS_REFRESH_INTERNAL_DEBOUNCE_TIMEOUT_MS = 200;
|
2024-03-25 14:26:29 +00:00
|
|
|
|
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;
|
2024-03-20 18:01:38 +00:00
|
|
|
var globalPopup = null;
|
|
|
|
var globalPopupInner = null;
|
|
|
|
const storedPopupIds = {};
|
|
|
|
const extraPageUserMetadataEditors = {};
|
2024-04-12 16:40:20 +00:00
|
|
|
const extra_networks_tabs = {};
|
2024-04-16 16:43:30 +00:00
|
|
|
var extra_networks_refresh_internal_debounce_timer;
|
|
|
|
|
2024-04-14 18:43:31 +00:00
|
|
|
/** Boolean flags used along with utils.js::waitForBool(). */
|
|
|
|
// Set true when we first load the UI options.
|
2024-03-26 17:58:21 +00:00
|
|
|
const initialUiOptionsLoaded = {state: false};
|
2024-03-13 21:11:44 +00:00
|
|
|
|
2024-04-17 19:24:45 +00:00
|
|
|
const _debounce = (handler, timeout_ms) => {
|
|
|
|
/** Debounces a function call.
|
|
|
|
*
|
|
|
|
* NOTE: This will NOT work if called from within a class.
|
|
|
|
* It will drop `this` from scope.
|
|
|
|
*
|
|
|
|
* Repeated calls to the debounce handler will not call the handler until there are
|
|
|
|
* no new calls to the debounce handler for timeout_ms time.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* function add(x, y) { return x + y; }
|
|
|
|
* let debounce_handler = debounce(add, 5000);
|
|
|
|
* let res;
|
|
|
|
* for (let i = 0; i < 10; i++) {
|
|
|
|
* res = debounce_handler(i, 100);
|
|
|
|
* }
|
|
|
|
* console.log("Result:", res);
|
|
|
|
*
|
|
|
|
* This example will print "Result: 109".
|
|
|
|
*/
|
|
|
|
let timer = null;
|
|
|
|
return (...args) => {
|
|
|
|
clearTimeout(timer);
|
|
|
|
timer = setTimeout(() => handler(...args), timeout_ms);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
class ExtraNetworksTab {
|
2024-04-18 17:09:58 +00:00
|
|
|
tabname;
|
|
|
|
extra_networks_tabname;
|
|
|
|
tabname_full; // {tabname}_{extra_networks_tabname}
|
2024-04-12 16:40:20 +00:00
|
|
|
tree_list;
|
|
|
|
cards_list;
|
|
|
|
container_elem;
|
|
|
|
controls_elem;
|
|
|
|
txt_search_elem;
|
|
|
|
prompt_container_elem;
|
|
|
|
prompts_elem;
|
|
|
|
prompt_row_elem;
|
|
|
|
neg_prompt_row_elem;
|
|
|
|
txt_prompt_elem;
|
|
|
|
txt_neg_prompt_elem;
|
|
|
|
active_prompt_elem;
|
2024-04-14 18:43:31 +00:00
|
|
|
sort_mode_str = "";
|
|
|
|
sort_dir_str = "";
|
|
|
|
filter_str = "";
|
2024-04-22 22:25:48 +00:00
|
|
|
directory_filter_str = "";
|
2024-04-12 16:40:20 +00:00
|
|
|
show_prompt = true;
|
|
|
|
show_neg_prompt = true;
|
|
|
|
compact_prompt_en = false;
|
2024-04-16 16:43:30 +00:00
|
|
|
refresh_in_progress = false;
|
2024-04-12 16:40:20 +00:00
|
|
|
constructor({tabname, extra_networks_tabname}) {
|
|
|
|
this.tabname = tabname;
|
|
|
|
this.extra_networks_tabname = extra_networks_tabname;
|
|
|
|
this.tabname_full = `${tabname}_${extra_networks_tabname}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
async setup(pane, controls_div) {
|
|
|
|
this.container_elem = pane;
|
|
|
|
|
|
|
|
// get page elements
|
|
|
|
await Promise.all([
|
|
|
|
waitForElement(`#${this.tabname_full}_pane .extra-network-controls`).then(elem => this.controls_elem = elem),
|
|
|
|
waitForElement(`#${this.tabname}_prompt_container`).then(elem => this.prompt_container_elem = elem),
|
|
|
|
waitForElement(`#${this.tabname_full}_prompts`).then(elem => this.prompts_elem = elem),
|
|
|
|
waitForElement(`#${this.tabname}_prompt_row`).then(elem => this.prompt_row_elem = elem),
|
|
|
|
waitForElement(`#${this.tabname}_neg_prompt_row`).then(elem => this.neg_prompt_row_elem = elem),
|
|
|
|
waitForElement(`#${this.tabname_full}_tree_list_scroll_area`),
|
|
|
|
waitForElement(`#${this.tabname_full}_tree_list_content_area`),
|
|
|
|
waitForElement(`#${this.tabname_full}_cards_list_scroll_area`),
|
|
|
|
waitForElement(`#${this.tabname_full}_cards_list_content_area`),
|
|
|
|
]);
|
|
|
|
|
|
|
|
this.txt_search_elem = this.controls_elem.querySelector(".extra-network-control--search-text");
|
|
|
|
|
|
|
|
// determine whether compact prompt mode is enabled.
|
|
|
|
// cannot await this since it may not exist on page depending on user setting.
|
|
|
|
this.compact_prompt_en = isElement(gradioApp().querySelector(".toprow-compact-tools"));
|
|
|
|
|
|
|
|
// setup this tab's controls
|
|
|
|
this.controls_elem.id = `${this.tabname_full}_controls`;
|
|
|
|
controls_div.insertBefore(this.controls_elem, null);
|
|
|
|
|
2024-04-16 16:43:30 +00:00
|
|
|
await Promise.all([this.setupTreeList(), this.setupCardsList()]);
|
2024-04-12 16:40:20 +00:00
|
|
|
|
2024-04-14 18:43:31 +00:00
|
|
|
const sort_mode_elem = this.controls_elem.querySelector(".extra-network-control--sort-mode[data-selected='']");
|
|
|
|
isElementThrowError(sort_mode_elem);
|
|
|
|
const sort_dir_elem = this.controls_elem.querySelector(".extra-network-control--sort-dir");
|
|
|
|
isElementThrowError(sort_dir_elem);
|
|
|
|
|
|
|
|
this.setSortMode(sort_mode_elem.dataset.sortMode);
|
|
|
|
this.setSortDir(sort_dir_elem.dataset.sortDir);
|
2024-04-22 22:25:48 +00:00
|
|
|
this.applyDirectoryFilter();
|
|
|
|
this.applyFilter();
|
2024-04-14 18:43:31 +00:00
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
this.registerPrompt();
|
|
|
|
|
|
|
|
if (this.container_elem.style.display === "none") {
|
|
|
|
this.hideControls();
|
|
|
|
} else {
|
|
|
|
this.showControls();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-14 18:43:31 +00:00
|
|
|
destroy() {
|
|
|
|
this.unload();
|
|
|
|
this.tree_list.destroy();
|
|
|
|
this.cards_list.destroy();
|
|
|
|
this.tree_list = null;
|
|
|
|
this.cards_list = null;
|
|
|
|
this.container_elem = null;
|
|
|
|
this.controls_elem = null;
|
|
|
|
this.txt_search_elem = null;
|
|
|
|
this.prompt_container_elem = null;
|
|
|
|
this.prompts_elem = null;
|
|
|
|
this.prompt_row_elem = null;
|
|
|
|
this.neg_prompt_row_elem = null;
|
|
|
|
this.txt_prompt_elem = null;
|
|
|
|
this.txt_neg_prompt_elem = null;
|
|
|
|
this.active_prompt_elem = null;
|
2024-04-16 16:43:30 +00:00
|
|
|
this.refresh_in_progress = false;
|
2024-04-14 18:43:31 +00:00
|
|
|
}
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
async registerPrompt() {
|
|
|
|
await Promise.all([
|
|
|
|
waitForElement(`#${this.tabname}_prompt > label > textarea`).then(elem => this.txt_prompt_elem = elem),
|
|
|
|
waitForElement(`#${this.tabname}_neg_prompt > label > textarea`).then(elem => this.txt_neg_prompt_elem = elem),
|
|
|
|
]);
|
|
|
|
this.active_prompt_elem = this.txt_prompt_elem;
|
|
|
|
this.txt_prompt_elem.addEventListener("focus", () => this.active_prompt_elem = this.txt_prompt_elem);
|
|
|
|
this.txt_neg_prompt_elem.addEventListener("focus", () => this.active_prompt_elem = this.txt_neg_prompt_elem);
|
|
|
|
}
|
|
|
|
|
|
|
|
async setupTreeList() {
|
|
|
|
if (this.tree_list instanceof ExtraNetworksClusterizeTreeList) {
|
|
|
|
this.tree_list.destroy();
|
|
|
|
}
|
|
|
|
this.tree_list = new ExtraNetworksClusterizeTreeList({
|
|
|
|
tabname: this.tabname,
|
|
|
|
extra_networks_tabname: this.extra_networks_tabname,
|
|
|
|
scrollId: `${this.tabname_full}_tree_list_scroll_area`,
|
|
|
|
contentId: `${this.tabname_full}_tree_list_content_area`,
|
|
|
|
tag: "button",
|
|
|
|
callbacks: {
|
2024-04-14 18:43:31 +00:00
|
|
|
initData: this.onInitTreeData.bind(this),
|
|
|
|
fetchData: this.onFetchTreeData.bind(this),
|
2024-04-12 16:40:20 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
await this.tree_list.setup();
|
|
|
|
}
|
|
|
|
|
|
|
|
async setupCardsList() {
|
|
|
|
if (this.cards_list instanceof ExtraNetworksClusterizeCardsList) {
|
|
|
|
this.cards_list.destroy();
|
|
|
|
}
|
|
|
|
this.cards_list = new ExtraNetworksClusterizeCardsList({
|
|
|
|
tabname: this.tabname,
|
|
|
|
extra_networks_tabname: this.extra_networks_tabname,
|
|
|
|
scrollId: `${this.tabname_full}_cards_list_scroll_area`,
|
|
|
|
contentId: `${this.tabname_full}_cards_list_content_area`,
|
|
|
|
tag: "div",
|
|
|
|
callbacks: {
|
2024-04-14 18:43:31 +00:00
|
|
|
initData: this.onInitCardsData.bind(this),
|
|
|
|
fetchData: this.onFetchCardsData.bind(this),
|
2024-04-12 16:40:20 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
await this.cards_list.setup();
|
|
|
|
}
|
|
|
|
|
2024-04-14 18:43:31 +00:00
|
|
|
setSortMode(sort_mode_str) {
|
|
|
|
this.sort_mode_str = sort_mode_str;
|
|
|
|
this.cards_list.setSortMode(this.sort_mode_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
setSortDir(sort_dir_str) {
|
|
|
|
this.sort_dir_str = sort_dir_str;
|
|
|
|
this.cards_list.setSortDir(this.sort_dir_str);
|
|
|
|
}
|
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
setFilterStr(filter_str) {
|
2024-04-14 18:43:31 +00:00
|
|
|
this.filter_str = filter_str;
|
2024-04-22 22:25:48 +00:00
|
|
|
this.cards_list.setFilterStr(this.filter_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
setDirectoryFilterStr(filter_str) {
|
|
|
|
this.directory_filter_str = filter_str;
|
|
|
|
this.cards_list.setDirectoryFilterStr(this.directory_filter_str);
|
2024-04-14 18:43:31 +00:00
|
|
|
}
|
|
|
|
|
2024-04-14 18:52:17 +00:00
|
|
|
movePrompt(show_prompt = true, show_neg_prompt = true) {
|
2024-04-12 16:40:20 +00:00
|
|
|
// This function only applies when compact prompt mode is enabled.
|
|
|
|
if (!this.compact_prompt_en) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (show_neg_prompt) {
|
|
|
|
this.prompts_elem.insertBefore(this.neg_prompt_row_elem, this.prompts_elem.firstChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (show_prompt) {
|
|
|
|
this.prompts_elem.insertBefore(this.prompt_row_elem, this.prompts_elem.firstChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.prompts_elem.classList.toggle("extra-page-prompts-active", show_neg_prompt || show_prompt);
|
|
|
|
}
|
|
|
|
|
2024-04-22 19:02:00 +00:00
|
|
|
refreshSingleCard(elem) {
|
2024-04-14 18:43:31 +00:00
|
|
|
requestGet(
|
2024-04-12 16:40:20 +00:00
|
|
|
"./sd_extra_networks/get-single-card",
|
|
|
|
{
|
|
|
|
tabname: this.tabname,
|
|
|
|
extra_networks_tabname: this.extra_networks_tabname,
|
2024-04-22 19:02:00 +00:00
|
|
|
name: elem.dataset.name,
|
|
|
|
div_id: elem.dataset.divId,
|
2024-04-12 16:40:20 +00:00
|
|
|
},
|
|
|
|
(data) => {
|
|
|
|
if (data && data.html) {
|
2024-04-22 19:02:00 +00:00
|
|
|
this.cards_list.updateCard(elem, data.html);
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
showControls() {
|
|
|
|
this.controls_elem.classList.remove("hidden");
|
|
|
|
}
|
|
|
|
|
|
|
|
hideControls() {
|
|
|
|
this.controls_elem.classList.add("hidden");
|
|
|
|
}
|
|
|
|
|
2024-04-16 16:43:30 +00:00
|
|
|
async #refresh() {
|
2024-04-12 16:40:20 +00:00
|
|
|
const btn_dirs_view = this.controls_elem.querySelector(".extra-network-control--dirs-view");
|
|
|
|
const btn_tree_view = this.controls_elem.querySelector(".extra-network-control--tree-view");
|
|
|
|
const div_dirs = this.container_elem.querySelector(".extra-network-content--dirs-view");
|
2024-04-14 18:43:31 +00:00
|
|
|
// We actually want to select the tree view's column in the resize-handle-row.
|
|
|
|
// This is what we actually show/hide, not the inner elements.
|
2024-04-17 23:23:38 +00:00
|
|
|
const div_tree = this.tree_list.scroll_elem.closest(".resize-handle-col");
|
2024-04-12 16:40:20 +00:00
|
|
|
|
|
|
|
// Remove "hidden" class if button is enabled, otherwise add it.
|
|
|
|
div_dirs.classList.toggle("hidden", !("selected" in btn_dirs_view.dataset));
|
|
|
|
div_tree.classList.toggle("hidden", !("selected" in btn_tree_view.dataset));
|
|
|
|
|
2024-04-17 23:23:38 +00:00
|
|
|
// Apply the current resize handle classes.
|
|
|
|
const resize_handle_row = this.tree_list.scroll_elem.closest(".resize-handle-row");
|
|
|
|
resize_handle_row.classList.toggle("resize-handle-hidden", div_tree.classList.contains("hidden"));
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
await Promise.all([this.setupTreeList(), this.setupCardsList()]);
|
2024-04-16 16:43:30 +00:00
|
|
|
this.tree_list.enable(true);
|
|
|
|
this.cards_list.enable(true);
|
2024-04-12 16:40:20 +00:00
|
|
|
await Promise.all([this.tree_list.load(true), this.cards_list.load(true)]);
|
2024-04-14 18:43:31 +00:00
|
|
|
// apply the previous sort/filter options
|
|
|
|
this.setSortMode(this.sort_mode_str);
|
|
|
|
this.setSortDir(this.sort_dir_str);
|
2024-04-22 22:25:48 +00:00
|
|
|
this.applyDirectoryFilter(this.directory_filter_str);
|
|
|
|
this.applyFilter(this.filter_str);
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
2024-04-16 16:43:30 +00:00
|
|
|
async refresh() {
|
|
|
|
if (this.refresh_in_progress) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.refresh_in_progress = true;
|
|
|
|
await this.#refresh();
|
|
|
|
this.refresh_in_progress = false;
|
|
|
|
}
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
async load(show_prompt, show_neg_prompt) {
|
2024-04-14 18:52:17 +00:00
|
|
|
this.movePrompt(show_prompt, show_neg_prompt);
|
2024-04-12 16:40:20 +00:00
|
|
|
this.showControls();
|
|
|
|
this.tree_list.enable(true);
|
|
|
|
this.cards_list.enable(true);
|
|
|
|
await Promise.all([this.tree_list.load(), this.cards_list.load()]);
|
|
|
|
}
|
|
|
|
|
|
|
|
unload() {
|
|
|
|
this.movePrompt(false, false);
|
|
|
|
this.hideControls();
|
|
|
|
this.tree_list.enable(false);
|
|
|
|
this.cards_list.enable(false);
|
|
|
|
}
|
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
applyDirectoryFilter(filter_str) {
|
|
|
|
filter_str = !isString(filter_str) ? "" : filter_str;
|
|
|
|
this.setDirectoryFilterStr(filter_str);
|
|
|
|
}
|
2024-04-12 16:40:20 +00:00
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
applyFilter(filter_str) {
|
|
|
|
filter_str = !isString(filter_str) ? this.txt_search_elem.value : filter_str;
|
|
|
|
this.setFilterStr(filter_str);
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
2024-04-18 17:09:58 +00:00
|
|
|
async waitForServerPageReady(max_attempts = EXTRA_NETWORKS_GET_PAGE_READY_MAX_ATTEMPTS) {
|
2024-04-16 15:22:12 +00:00
|
|
|
/** Waits for a page on the server to be ready.
|
|
|
|
*
|
|
|
|
* We need to wait for the page to be ready before we can fetch any data.
|
|
|
|
* It is possible to click on a tab before the server has any data ready for us.
|
|
|
|
* Since clicking on tabs triggers a data request, there will be an error from
|
|
|
|
* the server since the data isn't ready. This function allows us to wait for
|
|
|
|
* the server to tell us that it is ready for data requests.
|
|
|
|
*
|
|
|
|
* Args:
|
2024-04-18 17:09:58 +00:00
|
|
|
* max_attempts [int]: The max number of requests that will be attempted
|
2024-04-16 15:22:12 +00:00
|
|
|
* before giving up. If set to 0, will attempt forever.
|
|
|
|
*/
|
2024-04-18 17:09:58 +00:00
|
|
|
const err_prefix = `error waiting for server page (${this.tabname_full})`;
|
2024-04-16 15:22:12 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
let attempt = 0;
|
|
|
|
const loop = () => {
|
|
|
|
setTimeout(async() => {
|
|
|
|
try {
|
2024-04-18 17:09:58 +00:00
|
|
|
await requestGetPromise(
|
|
|
|
"./sd_extra_networks/page-is-ready",
|
|
|
|
{extra_networks_tabname: this.extra_networks_tabname},
|
|
|
|
EXTRA_NETWORKS_WAIT_FOR_PAGE_READY_TIMEOUT_MS,
|
2024-04-16 15:22:12 +00:00
|
|
|
);
|
2024-04-18 17:09:58 +00:00
|
|
|
return resolve();
|
2024-04-16 15:22:12 +00:00
|
|
|
} catch (error) {
|
2024-04-17 19:24:45 +00:00
|
|
|
// If we get anything other than a timeout error, reject.
|
2024-04-18 17:09:58 +00:00
|
|
|
// Otherwise, fall through to retry request.
|
|
|
|
if (error.status !== 408) {
|
|
|
|
return reject(`${err_prefix}: uncaught exception: ${JSON.stringify(error)}`);
|
2024-04-17 19:24:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max_attempts !== 0 && attempt++ >= max_attempts) {
|
|
|
|
return reject(`${err_prefix}: max attempts exceeded`);
|
|
|
|
} else {
|
2024-04-18 17:09:58 +00:00
|
|
|
// small delay since our request has a timeout.
|
|
|
|
setTimeout(() => loop(), 100);
|
2024-04-16 15:22:12 +00:00
|
|
|
}
|
|
|
|
}, 0);
|
|
|
|
};
|
|
|
|
return loop();
|
|
|
|
});
|
2024-04-14 18:43:31 +00:00
|
|
|
}
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
async onInitCardsData() {
|
2024-04-16 15:22:12 +00:00
|
|
|
try {
|
|
|
|
await this.waitForServerPageReady();
|
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = "./sd_extra_networks/init-cards-data";
|
|
|
|
const payload = {tabname: this.tabname, extra_networks_tabname: this.extra_networks_tabname};
|
|
|
|
const timeout = EXTRA_NETWORKS_REQUEST_GET_TIMEOUT_MS;
|
|
|
|
try {
|
2024-04-18 17:09:58 +00:00
|
|
|
const response = await requestGetPromise(url, payload, timeout);
|
|
|
|
return response.response;
|
2024-04-16 15:22:12 +00:00
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async onInitTreeData() {
|
2024-04-16 15:22:12 +00:00
|
|
|
try {
|
|
|
|
await this.waitForServerPageReady();
|
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = "./sd_extra_networks/init-tree-data";
|
|
|
|
const payload = {tabname: this.tabname, extra_networks_tabname: this.extra_networks_tabname};
|
|
|
|
const timeout = EXTRA_NETWORKS_REQUEST_GET_TIMEOUT_MS;
|
|
|
|
try {
|
2024-04-18 17:09:58 +00:00
|
|
|
const response = await requestGetPromise(url, payload, timeout);
|
|
|
|
return response.response;
|
2024-04-16 15:22:12 +00:00
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async onFetchCardsData(div_ids) {
|
2024-04-16 15:22:12 +00:00
|
|
|
try {
|
|
|
|
await this.waitForServerPageReady();
|
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = "./sd_extra_networks/fetch-cards-data";
|
|
|
|
const payload = {extra_networks_tabname: this.extra_networks_tabname, div_ids: div_ids};
|
|
|
|
const timeout = EXTRA_NETWORKS_REQUEST_GET_TIMEOUT_MS;
|
|
|
|
try {
|
2024-04-18 17:09:58 +00:00
|
|
|
const response = await requestGetPromise(url, payload, timeout);
|
2024-04-19 20:11:47 +00:00
|
|
|
if (response.response.missing_div_ids.length) {
|
|
|
|
console.warn(`Failed to fetch multiple div_ids: ${response.response.missing_div_ids}`);
|
|
|
|
}
|
|
|
|
return response.response.data;
|
2024-04-16 15:22:12 +00:00
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async onFetchTreeData(div_ids) {
|
2024-04-16 15:22:12 +00:00
|
|
|
try {
|
|
|
|
await this.waitForServerPageReady();
|
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = "./sd_extra_networks/fetch-tree-data";
|
|
|
|
const payload = {extra_networks_tabname: this.extra_networks_tabname, div_ids: div_ids};
|
|
|
|
const timeout = EXTRA_NETWORKS_REQUEST_GET_TIMEOUT_MS;
|
|
|
|
try {
|
2024-04-18 17:09:58 +00:00
|
|
|
const response = await requestGetPromise(url, payload, timeout);
|
2024-04-19 20:11:47 +00:00
|
|
|
if (response.response.missing_div_ids.length) {
|
|
|
|
console.warn(`Failed to fetch multiple div_ids: ${response.response.missing_div_ids}`);
|
|
|
|
}
|
|
|
|
return response.response.data;
|
2024-04-16 15:22:12 +00:00
|
|
|
} catch (error) {
|
2024-04-18 17:09:58 +00:00
|
|
|
console.error(JSON.stringify(error));
|
2024-04-16 15:22:12 +00:00
|
|
|
return {};
|
|
|
|
}
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
updateSearch(text) {
|
2024-04-12 16:40:20 +00:00
|
|
|
this.txt_search_elem.value = text;
|
|
|
|
updateInput(this.txt_search_elem);
|
2024-04-22 22:25:48 +00:00
|
|
|
this.applyFilter(this.txt_search_elem.value);
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
autoSetTreeWidth() {
|
|
|
|
const row = this.container_elem.querySelector(".resize-handle-row");
|
|
|
|
if (!isElementLogError(row)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const left_col = row.firstElementChild;
|
|
|
|
if (!isElementLogError(left_col)) {
|
|
|
|
return;
|
|
|
|
}
|
2024-04-14 18:52:17 +00:00
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
// If the left column is hidden then we don't want to do anything.
|
|
|
|
if (left_col.classList.contains("hidden")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const pad = parseFloat(row.style.gridTemplateColumns.split(" ")[1]);
|
|
|
|
const min_left_col_width = parseFloat(left_col.style.flexBasis.slice(0, -2));
|
|
|
|
// We know that the tree list is the left column. That is the only one we want to resize.
|
|
|
|
let max_width = this.tree_list.getMaxRowWidth();
|
|
|
|
if (!isNumber(max_width)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Add the resize handle's padding to the result and default to minLeftColWidth if necessary.
|
|
|
|
max_width = Math.max(max_width + pad, min_left_col_width);
|
|
|
|
|
|
|
|
// Mimicks resizeHandle.js::setLeftColGridTemplate().
|
|
|
|
row.style.gridTemplateColumns = `${max_width}px ${pad}px 1fr`;
|
|
|
|
}
|
2024-04-22 22:25:48 +00:00
|
|
|
|
2024-04-23 14:48:50 +00:00
|
|
|
setDirectoryButtons(source_elem, override) {
|
2024-04-22 22:25:48 +00:00
|
|
|
/** Sets the selected state of buttons in the tree and dirs views.
|
|
|
|
*
|
|
|
|
* Args:
|
2024-04-23 14:48:50 +00:00
|
|
|
* source_elem: If passed, the `data-selected` attribute of this element
|
|
|
|
* will be applied to the tree/dirs view buttons. This element MUST
|
|
|
|
* have a `data-path` attribute as this will be used to lookup matching
|
|
|
|
* tree/dirs buttons. If not passed, then the selected state is
|
|
|
|
* inferred from the existing DOM.
|
|
|
|
* override: Optional new selected state.
|
2024-04-22 22:25:48 +00:00
|
|
|
*/
|
|
|
|
// Checks if an element exists and is visible on the page.
|
|
|
|
const _exists = (elem) => {
|
|
|
|
return isElement(elem) && !isNullOrUndefined(elem.offsetParent);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Removes `data-selected` attribute from all tree/dirs buttons.
|
|
|
|
const _reset = () => {
|
|
|
|
this.container_elem.querySelectorAll(".extra-network-dirs-view-button").forEach(elem => {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
});
|
|
|
|
this.tree_list.content_elem.querySelectorAll(".tree-list-item").forEach(elem => {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
_reset.bind(this);
|
|
|
|
|
|
|
|
let dirs_btn;
|
|
|
|
let tree_btn;
|
|
|
|
|
2024-04-23 14:48:50 +00:00
|
|
|
let new_state;
|
|
|
|
if (override === true || override === false) {
|
|
|
|
new_state = override;
|
|
|
|
}
|
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
if (_exists(source_elem)) {
|
2024-04-23 14:48:50 +00:00
|
|
|
if (isNullOrUndefined(new_state)) {
|
|
|
|
new_state = "selected" in source_elem.dataset;
|
|
|
|
}
|
|
|
|
// Escape backslashes and create raw string to select data attributes with backslash.
|
|
|
|
const src_path = String.raw`${source_elem.dataset.path.replaceAll("\\", "\\\\")}`;
|
|
|
|
dirs_btn = this.container_elem.querySelector(`.extra-network-dirs-view-button[data-path="${src_path}"]`);
|
|
|
|
tree_btn = this.tree_list.content_elem.querySelector(`.tree-list-item[data-path="${src_path}"]`);
|
2024-04-22 22:25:48 +00:00
|
|
|
|
|
|
|
_reset();
|
|
|
|
|
|
|
|
if (new_state) {
|
|
|
|
if (_exists(dirs_btn)) {
|
|
|
|
dirs_btn.dataset.selected = "";
|
|
|
|
}
|
|
|
|
if (_exists(tree_btn)) {
|
|
|
|
tree_btn.dataset.selected = "";
|
|
|
|
}
|
2024-04-23 14:48:50 +00:00
|
|
|
this.applyDirectoryFilter(source_elem.dataset.path);
|
2024-04-22 22:25:48 +00:00
|
|
|
} else {
|
|
|
|
if (_exists(dirs_btn)) {
|
|
|
|
delete dirs_btn.dataset.selected;
|
|
|
|
}
|
|
|
|
if (_exists(tree_btn)) {
|
|
|
|
delete tree_btn.dataset.selected;
|
|
|
|
}
|
|
|
|
this.applyDirectoryFilter("");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dirs_btn = this.container_elem.querySelector(".extra-network-dirs-view-button[data-selected='']");
|
|
|
|
tree_btn = this.tree_list.content_elem.querySelector(".tree-list-item[data-selected='']");
|
|
|
|
if (_exists(dirs_btn)) {
|
2024-04-23 14:48:50 +00:00
|
|
|
const src_path = String.raw`${dirs_btn.dataset.path.replaceAll("\\", "\\\\")}`;
|
|
|
|
tree_btn = this.tree_list.content_elem.querySelector(`.tree-list-item[data-path="${src_path}"]`);
|
|
|
|
if (_exists(tree_btn)) {
|
|
|
|
// Filter is already applied from dirs btn. Just need to select the tree btn.
|
2024-04-22 22:25:48 +00:00
|
|
|
_reset();
|
|
|
|
dirs_btn.dataset.selected = "";
|
|
|
|
tree_btn.dataset.selected = "";
|
|
|
|
}
|
|
|
|
} else if (_exists(tree_btn)) {
|
2024-04-23 14:48:50 +00:00
|
|
|
const src_path = String.raw`${tree_btn.dataset.path.replaceAll("\\", "\\\\")}`;
|
|
|
|
dirs_btn = this.container_elem.querySelector(`.extra-network-dirs-view-button[data-path="${src_path}"]`);
|
|
|
|
if (_exists(dirs_btn)) {
|
|
|
|
// Filter is already applied from tree btn. Just need to select the dirs btn.
|
2024-04-22 22:25:48 +00:00
|
|
|
_reset();
|
|
|
|
dirs_btn.dataset.selected = "";
|
|
|
|
tree_btn.dataset.selected = "";
|
|
|
|
}
|
|
|
|
} else {
|
2024-04-23 14:48:50 +00:00
|
|
|
// No tree/dirs button is selected. Apply empty directory filter.
|
2024-04-22 22:25:48 +00:00
|
|
|
this.applyDirectoryFilter("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-12 16:40:20 +00:00
|
|
|
}
|
|
|
|
|
2024-04-14 18:52:17 +00:00
|
|
|
//
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function popup(contents) {
|
2024-04-09 11:19:07 +00:00
|
|
|
if (!globalPopup) {
|
|
|
|
globalPopup = document.createElement('div');
|
|
|
|
globalPopup.classList.add('global-popup');
|
|
|
|
|
|
|
|
var close = document.createElement('div');
|
|
|
|
close.classList.add('global-popup-close');
|
|
|
|
close.addEventListener("click", closePopup);
|
|
|
|
close.title = "Close";
|
|
|
|
globalPopup.appendChild(close);
|
|
|
|
|
|
|
|
globalPopupInner = document.createElement('div');
|
|
|
|
globalPopupInner.classList.add('global-popup-inner');
|
|
|
|
globalPopup.appendChild(globalPopupInner);
|
|
|
|
|
|
|
|
gradioApp().querySelector('.main').appendChild(globalPopup);
|
2023-08-05 06:15:18 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
|
|
|
globalPopupInner.innerHTML = '';
|
|
|
|
globalPopupInner.appendChild(contents);
|
|
|
|
|
|
|
|
globalPopup.style.display = "flex";
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function popupId(id) {
|
2024-04-09 11:19:07 +00:00
|
|
|
if (!storedPopupIds[id]) {
|
|
|
|
storedPopupIds[id] = gradioApp().getElementById(id);
|
2023-08-05 06:15:18 +00:00
|
|
|
}
|
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
popup(storedPopupIds[id]);
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-19 01:59:41 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function closePopup() {
|
2024-04-09 11:19:07 +00:00
|
|
|
if (!globalPopup) return;
|
|
|
|
globalPopup.style.display = "none";
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-19 01:59:41 +00:00
|
|
|
|
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
// ==== GENERAL EXTRA NETWORKS FUNCTIONS ====
|
2024-03-13 21:11:44 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksRemoveFromPrompt(textarea, text, is_neg) {
|
2024-04-09 11:19:07 +00:00
|
|
|
let match = text.match(is_neg ? re_extranet_neg : re_extranet);
|
|
|
|
let replaced = false;
|
|
|
|
let res;
|
2024-04-15 15:18:01 +00:00
|
|
|
let sep = opts.extra_networks_add_text_separator;
|
2024-04-09 11:19:07 +00:00
|
|
|
|
|
|
|
if (match) {
|
|
|
|
const content = match[1];
|
|
|
|
const postfix = match[2];
|
|
|
|
let idx = -1;
|
|
|
|
res = textarea.value.replaceAll(
|
|
|
|
is_neg ? re_extranet_g_neg : re_extranet_g,
|
|
|
|
(found, net, pos) => {
|
|
|
|
match = found.match(is_neg ? re_extranet_neg : re_extranet);
|
|
|
|
if (match[1] === content) {
|
|
|
|
replaced = true;
|
|
|
|
idx = pos;
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
if (idx >= 0) {
|
2024-04-15 14:48:28 +00:00
|
|
|
if (postfix && res.slice(idx, idx + postfix.length) === postfix) {
|
2024-04-09 11:19:07 +00:00
|
|
|
res = res.slice(0, idx) + res.slice(idx + postfix.length);
|
|
|
|
}
|
2024-04-15 15:18:01 +00:00
|
|
|
if (res.slice(idx - sep.length, idx) === sep) {
|
|
|
|
res = res.slice(0, idx - sep.length) + res.slice(idx);
|
|
|
|
}
|
|
|
|
// Remove separator if it is at beginning of string.
|
|
|
|
if (res.startsWith(sep)) {
|
|
|
|
res = res.slice(sep.length);
|
2024-04-09 11:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2024-04-15 15:18:01 +00:00
|
|
|
res = textarea.value.replaceAll(new RegExp(`((?:${sep})?${text})`, "g"), "");
|
2024-04-09 11:19:07 +00:00
|
|
|
replaced = (res !== textarea.value);
|
|
|
|
}
|
2024-01-22 20:20:30 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
if (replaced) {
|
|
|
|
textarea.value = res;
|
|
|
|
return true;
|
|
|
|
}
|
2024-01-22 20:20:30 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
return false;
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2023-11-05 16:19:55 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksUpdatePrompt(textarea, text, is_neg) {
|
2024-04-09 11:19:07 +00:00
|
|
|
if (!extraNetworksRemoveFromPrompt(textarea, text, is_neg)) {
|
2024-04-15 15:18:01 +00:00
|
|
|
if (!textarea.value) {
|
|
|
|
// if textarea is empty, dont add the separator.
|
|
|
|
textarea.value = text;
|
|
|
|
} else {
|
|
|
|
textarea.value = textarea.value + opts.extra_networks_add_text_separator + text;
|
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
updateInput(textarea);
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksSaveCardPreview(event, tabname, filename) {
|
2024-04-09 11:19:07 +00:00
|
|
|
const textarea = gradioApp().querySelector(`#${tabname}_preview_filename > label > textarea`);
|
|
|
|
const button = gradioApp().getElementById(`${tabname}_save_preview`);
|
2023-11-05 16:19:55 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
textarea.value = filename;
|
|
|
|
updateInput(textarea);
|
2024-03-22 20:16:45 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
button.click();
|
2024-03-27 20:11:13 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksFlattenMetadata(obj) {
|
2024-04-09 11:19:07 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2024-03-22 20:16:45 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
// 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];
|
2024-03-21 20:03:27 +00:00
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
// 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];
|
2024-03-22 20:16:45 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
}
|
2024-03-26 17:58:21 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
// 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] = "";
|
2024-03-29 16:21:02 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksShowMetadata(text) {
|
2024-04-09 11:19:07 +00:00
|
|
|
try {
|
|
|
|
let parsed = JSON.parse(text);
|
|
|
|
if (parsed && typeof parsed === 'object') {
|
|
|
|
parsed = extraNetworksFlattenMetadata(parsed);
|
|
|
|
const table = createVisualizationTable(parsed, 0);
|
|
|
|
popup(table);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
var elem = document.createElement('pre');
|
|
|
|
elem.classList.add('popup-metadata');
|
|
|
|
elem.textContent = text;
|
|
|
|
|
|
|
|
popup(elem);
|
|
|
|
return;
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksRefreshSingleCard(tabname, extra_networks_tabname, name) {
|
2024-04-14 18:43:31 +00:00
|
|
|
const tab = extra_networks_tabs[`${tabname}_${extra_networks_tabname}`];
|
2024-04-22 19:02:00 +00:00
|
|
|
const elem = tab.cards_list.content_elem.querySelector(`.card[data-name="${name}"]`);
|
|
|
|
isElementThrowError(elem);
|
|
|
|
tab.refreshSingleCard(elem);
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-16 16:43:30 +00:00
|
|
|
function extraNetworksRefreshTab(tabname_full) {
|
2024-04-09 11:19:07 +00:00
|
|
|
/** called from python when user clicks the extra networks refresh tab button */
|
2024-04-16 16:43:30 +00:00
|
|
|
extra_networks_tabs[tabname_full].refresh();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
// ==== EVENT HANDLING ====
|
2023-12-30 20:52:27 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksFetchMetadata(extra_networks_tabname, card_name) {
|
2024-04-14 18:52:17 +00:00
|
|
|
const _showError = () => {
|
|
|
|
extraNetworksShowMetadata("there was an error getting metadata");
|
|
|
|
};
|
2024-01-13 18:16:39 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
requestGet(
|
|
|
|
"./sd_extra_networks/metadata",
|
|
|
|
{extra_networks_tabname: extra_networks_tabname, item: card_name},
|
|
|
|
function(data) {
|
|
|
|
if (data && data.metadata) {
|
|
|
|
extraNetworksShowMetadata(data.metadata);
|
|
|
|
} else {
|
|
|
|
_showError();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_showError,
|
|
|
|
);
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-01-13 18:16:39 +00:00
|
|
|
|
2024-04-15 15:18:01 +00:00
|
|
|
function extraNetworksUnrelatedTabSelected(tabname) {
|
2024-04-09 11:19:07 +00:00
|
|
|
/** called from python when user selects an unrelated tab (generate) */
|
2024-04-15 15:18:01 +00:00
|
|
|
for (const v of Object.values(extra_networks_tabs)) {
|
2024-04-12 16:40:20 +00:00
|
|
|
v.unload();
|
|
|
|
}
|
2024-04-15 15:18:01 +00:00
|
|
|
|
|
|
|
// Move all prompts into the selected tab.
|
|
|
|
const prompt_container_elem = document.querySelector(`#${tabname}_prompt_container`);
|
|
|
|
const prompt_row_elem = document.querySelector(`#${tabname}_prompt_row`);
|
|
|
|
const neg_prompt_row_elem = document.querySelector(`#${tabname}_neg_prompt_row`);
|
|
|
|
prompt_container_elem.insertBefore(neg_prompt_row_elem, prompt_container_elem.firstChild);
|
|
|
|
prompt_container_elem.insertBefore(prompt_row_elem, prompt_container_elem.firstChild);
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
async function extraNetworksTabSelected(tabname_full, show_prompt, show_neg_prompt) {
|
2024-04-09 11:19:07 +00:00
|
|
|
/** called from python when user selects an extra networks tab */
|
2024-04-14 18:43:31 +00:00
|
|
|
await waitForKeyInObject({obj: extra_networks_tabs, k: tabname_full});
|
2024-04-12 16:40:20 +00:00
|
|
|
for (const [k, v] of Object.entries(extra_networks_tabs)) {
|
|
|
|
if (k === tabname_full) {
|
2024-04-16 15:22:12 +00:00
|
|
|
v.load(show_prompt, show_neg_prompt);
|
2024-04-12 16:40:20 +00:00
|
|
|
} else {
|
|
|
|
v.unload();
|
|
|
|
}
|
|
|
|
}
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-13 21:11:44 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksBtnDirsViewItemOnClick(event, tabname_full) {
|
2024-03-25 17:50:44 +00:00
|
|
|
/** Handles `onclick` events for buttons in the directory view. */
|
2024-04-12 16:40:20 +00:00
|
|
|
const tab = extra_networks_tabs[tabname_full];
|
2024-03-15 23:11:30 +00:00
|
|
|
|
|
|
|
if ("selected" in event.target.dataset) {
|
2024-04-23 14:48:50 +00:00
|
|
|
tab.setDirectoryButtons(event.target, false);
|
2024-03-15 23:11:30 +00:00
|
|
|
} else {
|
2024-04-23 14:48:50 +00:00
|
|
|
tab.setDirectoryButtons(event.target, true);
|
2024-03-15 23:11:30 +00:00
|
|
|
}
|
2024-03-20 18:01:38 +00:00
|
|
|
|
2024-04-23 14:48:50 +00:00
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
|
2024-04-17 17:01:46 +00:00
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-15 18:31:58 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksControlSearchClearOnClick(event, tabname_full) {
|
2024-03-25 17:50:44 +00:00
|
|
|
/** Dispatches custom event when the `clear` button in a search input is clicked. */
|
2024-04-12 16:40:20 +00:00
|
|
|
const txt_search_elem = extra_networks_tabs[tabname_full].txt_search_elem;
|
|
|
|
txt_search_elem.value = "";
|
|
|
|
txt_search_elem.dispatchEvent(
|
2024-03-25 14:26:29 +00:00
|
|
|
new CustomEvent(
|
|
|
|
"extra-network-control--search-clear",
|
2024-04-09 11:19:07 +00:00
|
|
|
{bubbles: true, detail: {tabname_full: tabname_full}},
|
2024-03-25 14:26:29 +00:00
|
|
|
)
|
|
|
|
);
|
2024-04-17 17:01:46 +00:00
|
|
|
|
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksControlSortModeOnClick(event, tabname_full) {
|
2024-03-09 05:25:01 +00:00
|
|
|
/** Handles `onclick` events for Sort Mode buttons. */
|
2024-04-12 16:40:20 +00:00
|
|
|
const tab = extra_networks_tabs[tabname_full];
|
|
|
|
tab.controls_elem.querySelectorAll(".extra-network-control--sort-mode").forEach(elem => {
|
2024-03-25 20:43:29 +00:00
|
|
|
delete elem.dataset.selected;
|
2024-03-09 05:25:01 +00:00
|
|
|
});
|
|
|
|
|
2024-03-25 20:43:29 +00:00
|
|
|
event.currentTarget.dataset.selected = "";
|
2024-03-09 04:24:25 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
const sort_mode_str = event.currentTarget.dataset.sortMode.toLowerCase();
|
2024-04-12 16:40:20 +00:00
|
|
|
|
2024-04-14 18:43:31 +00:00
|
|
|
tab.setSortMode(sort_mode_str);
|
2024-04-17 17:01:46 +00:00
|
|
|
|
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksControlSortDirOnClick(event, tabname_full) {
|
2024-03-25 17:50:44 +00:00
|
|
|
/** Handles `onclick` events for the Sort Direction button.
|
2024-01-16 18:35:01 +00:00
|
|
|
*
|
|
|
|
* Modifies the data attributes of the Sort Direction button to cycle between
|
|
|
|
* ascending and descending sort directions.
|
|
|
|
*/
|
2024-04-12 16:40:20 +00:00
|
|
|
const tab = extra_networks_tabs[tabname_full];
|
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
const curr_sort_dir_str = event.currentTarget.dataset.sortDir.toLowerCase();
|
|
|
|
if (!["ascending", "descending"].includes(curr_sort_dir_str)) {
|
|
|
|
console.error(`Invalid sort_dir_str: ${curr_sort_dir_str}`);
|
|
|
|
return;
|
2024-01-15 22:34:44 +00:00
|
|
|
}
|
2024-03-14 20:51:52 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
let sort_dir_str = curr_sort_dir_str === "ascending" ? "descending" : "ascending";
|
|
|
|
event.currentTarget.dataset.sortDir = sort_dir_str;
|
|
|
|
event.currentTarget.setAttribute("title", `Sort ${sort_dir_str}`);
|
|
|
|
|
2024-04-14 18:43:31 +00:00
|
|
|
tab.setSortDir(sort_dir_str);
|
2024-04-17 17:01:46 +00:00
|
|
|
|
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksControlTreeViewOnClick(event, tabname_full) {
|
2024-03-25 17:50:44 +00:00
|
|
|
/** Handles `onclick` events for the Tree View button.
|
2024-01-20 16:43:45 +00:00
|
|
|
*
|
|
|
|
* Toggles the tree view in the extra networks pane.
|
|
|
|
*/
|
2024-04-23 14:48:50 +00:00
|
|
|
const show = !("selected" in event.currentTarget.dataset);
|
|
|
|
const tab = extra_networks_tabs[tabname_full];
|
2024-03-25 20:43:29 +00:00
|
|
|
if ("selected" in event.currentTarget.dataset) {
|
|
|
|
delete event.currentTarget.dataset.selected;
|
|
|
|
} else {
|
|
|
|
event.currentTarget.dataset.selected = "";
|
|
|
|
}
|
2024-03-08 06:52:25 +00:00
|
|
|
|
2024-04-23 14:48:50 +00:00
|
|
|
if (!show) {
|
|
|
|
// If hiding, we want to deselect all buttons prior to hiding.
|
|
|
|
tab.tree_list.content_elem.querySelectorAll(
|
|
|
|
".tree-list-item[data-selected='']"
|
|
|
|
).forEach(elem => {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
tab.tree_list.scroll_elem.parentElement.classList.toggle("hidden", !show);
|
|
|
|
tab.tree_list.enable(show);
|
2024-04-17 17:01:46 +00:00
|
|
|
|
2024-04-17 23:23:38 +00:00
|
|
|
// Apply the resize-handle-hidden class to the resize-handle-row.
|
|
|
|
// NOTE: This can be simplified using only css with the ":has" selector however
|
|
|
|
// this is only recently supported in firefox. So for now we just add a class
|
|
|
|
// to the resize-handle-row instead.
|
|
|
|
const resize_handle_row = tab.tree_list.scroll_elem.closest(".resize-handle-row");
|
|
|
|
resize_handle_row.classList.toggle("resize-handle-hidden", !show);
|
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
tab.setDirectoryButtons();
|
|
|
|
|
2024-04-17 17:01:46 +00:00
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-19 01:59:41 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksControlDirsViewOnClick(event, tabname_full) {
|
2024-03-25 17:50:44 +00:00
|
|
|
/** Handles `onclick` events for the Dirs View button.
|
2024-03-19 01:59:41 +00:00
|
|
|
*
|
|
|
|
* Toggles the directory view in the extra networks pane.
|
|
|
|
*/
|
2024-04-23 14:48:50 +00:00
|
|
|
const tab = extra_networks_tabs[tabname_full];
|
2024-04-09 11:19:07 +00:00
|
|
|
const show = !("selected" in event.currentTarget.dataset);
|
|
|
|
if (show) {
|
2024-03-25 20:43:29 +00:00
|
|
|
event.currentTarget.dataset.selected = "";
|
2024-04-09 11:19:07 +00:00
|
|
|
} else {
|
|
|
|
delete event.currentTarget.dataset.selected;
|
2024-03-25 20:43:29 +00:00
|
|
|
}
|
2024-03-14 20:51:52 +00:00
|
|
|
|
2024-04-23 14:48:50 +00:00
|
|
|
if (!show) {
|
|
|
|
// If hiding, we want to deselect all buttons prior to hiding.
|
|
|
|
tab.container_elem.querySelectorAll(
|
|
|
|
".extra-network-dirs-view-button[data-selected='']"
|
|
|
|
).forEach(elem => {
|
|
|
|
delete elem.dataset.selected;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
tab.container_elem.querySelector(
|
|
|
|
".extra-network-content--dirs-view"
|
|
|
|
).classList.toggle("hidden", !show);
|
2024-04-17 17:01:46 +00:00
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
tab.setDirectoryButtons();
|
|
|
|
|
2024-04-17 17:01:46 +00:00
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-01-20 16:43:45 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksControlRefreshOnClick(event, tabname_full) {
|
2024-03-25 17:50:44 +00:00
|
|
|
/** Handles `onclick` events for the Refresh Page button.
|
2024-01-16 18:35:01 +00:00
|
|
|
*
|
|
|
|
* 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-04-16 16:43:30 +00:00
|
|
|
clearTimeout(extra_networks_refresh_internal_debounce_timer);
|
|
|
|
extra_networks_refresh_internal_debounce_timer = setTimeout(() => {
|
2024-04-17 16:50:22 +00:00
|
|
|
// We want to reset tab lists on refresh click so that the viewing area
|
2024-04-16 16:43:30 +00:00
|
|
|
// shows that it is loading new data.
|
2024-04-17 16:50:22 +00:00
|
|
|
extra_networks_tabs[tabname_full].tree_list.clear();
|
|
|
|
extra_networks_tabs[tabname_full].cards_list.clear();
|
2024-04-16 16:43:30 +00:00
|
|
|
// Fire an event for this button click.
|
|
|
|
gradioApp().getElementById(`${tabname_full}_extra_refresh_internal`).dispatchEvent(new Event("click"));
|
|
|
|
}, EXTRA_NETWORKS_REFRESH_INTERNAL_DEBOUNCE_TIMEOUT_MS);
|
2024-04-17 17:01:46 +00:00
|
|
|
|
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2023-08-27 06:39:37 +00:00
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
function extraNetworksCardOnClick(event, tabname_full) {
|
2024-04-09 11:19:07 +00:00
|
|
|
const elem = event.currentTarget;
|
2024-04-12 16:40:20 +00:00
|
|
|
const tab = extra_networks_tabs[tabname_full];
|
2024-04-09 11:19:07 +00:00
|
|
|
if ("negPrompt" in elem.dataset) {
|
2024-04-12 16:40:20 +00:00
|
|
|
extraNetworksUpdatePrompt(tab.txt_prompt_elem, elem.dataset.prompt);
|
|
|
|
extraNetworksUpdatePrompt(tab.txt_neg_prompt_elem, elem.dataset.negPrompt);
|
2024-04-09 11:19:07 +00:00
|
|
|
} else if ("allowNeg" in elem.dataset) {
|
2024-04-12 16:40:20 +00:00
|
|
|
extraNetworksUpdatePrompt(tab.active_prompt_elem, elem.dataset.prompt);
|
2024-04-09 11:19:07 +00:00
|
|
|
} else {
|
2024-04-12 16:40:20 +00:00
|
|
|
extraNetworksUpdatePrompt(tab.txt_prompt_elem, elem.dataset.prompt);
|
2024-03-04 23:33:22 +00:00
|
|
|
}
|
2024-04-17 17:01:46 +00:00
|
|
|
|
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-04 23:33:22 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksTreeFileOnClick(event, btn, tabname_full) {
|
2024-04-09 11:19:07 +00:00
|
|
|
return;
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-04 23:33:22 +00:00
|
|
|
|
2024-04-22 22:25:48 +00:00
|
|
|
async function extraNetworksTreeDirectoryOnClick(event, btn, tabname_full) {
|
2024-04-12 16:40:20 +00:00
|
|
|
const div_id = btn.dataset.divId;
|
|
|
|
const tab = extra_networks_tabs[tabname_full];
|
|
|
|
|
2024-04-23 14:55:58 +00:00
|
|
|
if (event.target.matches(".tree-list-item-action--leading .tree-list-item-action-chevron")) {
|
2024-04-22 22:25:48 +00:00
|
|
|
await tab.tree_list.onRowExpandClick(div_id, btn);
|
2024-04-23 14:55:58 +00:00
|
|
|
tab.setDirectoryButtons();
|
|
|
|
} else if (event.target.matches(".tree-list-item-action--trailing .tree-list-item-action-expand")) {
|
2024-04-22 22:25:48 +00:00
|
|
|
await tab.tree_list.onExpandAllClick(div_id);
|
2024-04-23 15:17:40 +00:00
|
|
|
tab.setDirectoryButtons();
|
2024-04-23 14:55:58 +00:00
|
|
|
} else if (event.target.matches(".tree-list-item-action--trailing .tree-list-item-action-collapse")) {
|
2024-04-22 22:25:48 +00:00
|
|
|
await tab.tree_list.onCollapseAllClick(div_id);
|
2024-04-23 15:17:40 +00:00
|
|
|
tab.setDirectoryButtons();
|
2024-04-12 16:40:20 +00:00
|
|
|
} else {
|
2024-04-23 15:17:40 +00:00
|
|
|
// No action items were clicked. Select the row.
|
2024-04-22 22:25:48 +00:00
|
|
|
await tab.tree_list.onRowSelected(div_id, btn);
|
2024-04-23 15:17:40 +00:00
|
|
|
tab.setDirectoryButtons(btn);
|
2024-04-21 16:07:53 +00:00
|
|
|
}
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-03-04 23:33:22 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksTreeOnClick(event, tabname_full) {
|
2024-04-09 11:19:07 +00:00
|
|
|
const btn = event.target.closest(".tree-list-item");
|
|
|
|
if (!isElementLogError(btn)) {
|
|
|
|
return;
|
2024-03-04 23:33:22 +00:00
|
|
|
}
|
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
if (btn.dataset.treeEntryType === "file") {
|
|
|
|
extraNetworksTreeFileOnClick(event, btn, tabname_full);
|
|
|
|
} else {
|
|
|
|
extraNetworksTreeDirectoryOnClick(event, btn, tabname_full);
|
2024-03-04 23:46:25 +00:00
|
|
|
}
|
2024-03-04 23:33:22 +00:00
|
|
|
|
2024-01-08 19:10:03 +00:00
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2023-05-17 12:46:58 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksBtnShowMetadataOnClick(event, extra_networks_tabname, card_name) {
|
2024-04-09 11:19:07 +00:00
|
|
|
extraNetworksFetchMetadata(extra_networks_tabname, card_name);
|
2023-03-25 09:10:03 +00:00
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2023-07-15 17:39:04 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksBtnEditMetadataOnClick(event, tabname_full, card_name) {
|
2024-03-29 16:21:02 +00:00
|
|
|
const id = `${tabname_full}_edit_user_metadata`;
|
|
|
|
let editor = extraPageUserMetadataEditors[id];
|
2024-04-09 11:19:07 +00:00
|
|
|
if (isNullOrUndefined(editor)) {
|
2023-07-15 17:39:04 +00:00
|
|
|
editor = {};
|
|
|
|
editor.page = gradioApp().getElementById(id);
|
2024-03-29 16:21:02 +00:00
|
|
|
editor.nameTextarea = gradioApp().querySelector(`#${id}_name textarea`);
|
|
|
|
editor.button = gradioApp().querySelector(`#${id}_button`);
|
2023-07-15 17:39:04 +00:00
|
|
|
extraPageUserMetadataEditors[id] = editor;
|
|
|
|
}
|
|
|
|
|
2024-03-29 16:21:02 +00:00
|
|
|
editor.nameTextarea.value = card_name;
|
2023-07-15 17:39:04 +00:00
|
|
|
updateInput(editor.nameTextarea);
|
|
|
|
|
|
|
|
editor.button.click();
|
|
|
|
|
|
|
|
popup(editor.page);
|
2024-04-17 17:01:46 +00:00
|
|
|
|
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2023-07-15 17:39:04 +00:00
|
|
|
|
2024-04-22 13:07:35 +00:00
|
|
|
function extraNetworksBtnCopyPathOnClick(event) {
|
|
|
|
copyToClipboard(event.target.dataset.clipboardText);
|
2023-07-15 17:39:04 +00:00
|
|
|
event.stopPropagation();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
|
|
|
// ==== MAIN SETUP ====
|
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
function extraNetworksSetupEventDelegators() {
|
2024-04-09 11:19:07 +00:00
|
|
|
/** Sets up event delegators for all extraNetworks tabs.
|
|
|
|
*
|
|
|
|
* These event handlers are not tied to any specific elements on the page.
|
|
|
|
* We do this because elements within each tab may be removed and replaced
|
|
|
|
* which would break references to elements in DOM and thus prevent any event
|
|
|
|
* listeners from firing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
window.addEventListener("resizeHandleDblClick", event => {
|
|
|
|
// See resizeHandle.js::onDoubleClick() for event detail.
|
|
|
|
event.stopPropagation();
|
2024-04-12 16:40:20 +00:00
|
|
|
const pane = event.target.closest(".extra-network-pane");
|
|
|
|
extra_networks_tabs[pane.dataset.tabnameFull].autoSetTreeWidth();
|
2024-04-09 11:19:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Update search filter whenever the search input's clear button is pressed.
|
|
|
|
window.addEventListener("extra-network-control--search-clear", event => {
|
|
|
|
event.stopPropagation();
|
2024-04-12 16:40:20 +00:00
|
|
|
extra_networks_tabs[event.detail.tabname_full].applyFilter();
|
2024-04-09 11:19:07 +00:00
|
|
|
});
|
2023-07-15 21:56:53 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
// Debounce search text input. This way we only search after user is done typing.
|
2024-04-17 19:24:45 +00:00
|
|
|
const search_input_debounce = _debounce(tabname_full => {
|
2024-04-12 16:40:20 +00:00
|
|
|
extra_networks_tabs[tabname_full].applyFilter();
|
2024-04-09 11:19:07 +00:00
|
|
|
}, SEARCH_INPUT_DEBOUNCE_TIME_MS);
|
2023-07-16 05:38:23 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
window.addEventListener("keyup", event => {
|
|
|
|
const controls = event.target.closest(".extra-network-controls");
|
|
|
|
if (isElement(controls)) {
|
|
|
|
const tabname_full = controls.dataset.tabnameFull;
|
|
|
|
const target = event.target.closest(".extra-network-control--search-text");
|
|
|
|
if (isElement(target)) {
|
|
|
|
search_input_debounce.call(target, tabname_full);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-07-16 05:38:23 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
window.addEventListener("keydown", event => {
|
|
|
|
if (event.key === "Escape") {
|
|
|
|
closePopup();
|
2023-07-16 05:38:23 +00:00
|
|
|
}
|
|
|
|
});
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
async function extraNetworksSetupTab(tabname) {
|
2024-04-09 11:19:07 +00:00
|
|
|
const this_tab = await waitForElement(`#${tabname}_extra_tabs`);
|
|
|
|
const tab_nav = await waitForElement(`#${tabname}_extra_tabs > div.tab-nav`);
|
2024-04-12 16:40:20 +00:00
|
|
|
const controls_div = document.createElement("div");
|
|
|
|
|
|
|
|
controls_div.id = `${tabname}_extra_network_controls_div`;
|
2024-04-09 11:19:07 +00:00
|
|
|
controls_div.classList.add("extra-network-controls-div");
|
|
|
|
tab_nav.appendChild(controls_div);
|
|
|
|
tab_nav.insertBefore(controls_div, null);
|
2024-04-14 18:52:17 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
const panes = this_tab.querySelectorAll(`:scope > .tabitem[id^="${tabname}_"]`);
|
|
|
|
for (const pane of panes) {
|
2024-04-12 16:40:20 +00:00
|
|
|
const tabname_full = pane.id;
|
|
|
|
const extra_networks_tabname = tabname_full.replace(`${tabname}_`, "");
|
|
|
|
extra_networks_tabs[tabname_full] = new ExtraNetworksTab({
|
|
|
|
tabname: tabname,
|
|
|
|
extra_networks_tabname: extra_networks_tabname,
|
|
|
|
});
|
|
|
|
await extra_networks_tabs[tabname_full].setup(pane, controls_div);
|
2024-04-09 11:19:07 +00:00
|
|
|
}
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
2024-04-09 21:26:56 +00:00
|
|
|
async function extraNetworksSetup() {
|
2024-04-09 11:19:07 +00:00
|
|
|
await waitForBool(initialUiOptionsLoaded);
|
|
|
|
|
2024-04-12 16:40:20 +00:00
|
|
|
await Promise.all([
|
|
|
|
extraNetworksSetupTab('txt2img'),
|
|
|
|
extraNetworksSetupTab('img2img'),
|
|
|
|
]);
|
2024-04-14 18:43:31 +00:00
|
|
|
|
2024-04-09 11:19:07 +00:00
|
|
|
extraNetworksSetupEventDelegators();
|
2024-04-09 21:26:56 +00:00
|
|
|
}
|
2024-04-09 11:19:07 +00:00
|
|
|
|
|
|
|
onUiLoaded(extraNetworksSetup);
|
2024-03-26 17:58:21 +00:00
|
|
|
onOptionsChanged(() => initialUiOptionsLoaded.state = true);
|