aboutsummaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authoryfszzx <yfszzx@gmail.com>2022-10-17 15:20:16 +0800
committeryfszzx <yfszzx@gmail.com>2022-10-17 15:20:16 +0800
commit5b1394bead93e5485ced5de10f1c000eea4458c6 (patch)
treec9e9974fd9c5e0d2bc0da906b4b9b128ae24022a /javascript
parenta4de699e3c235d83b5a957d08779cb41cb0781bc (diff)
parentc57919ea2a8e4a23a05d21f28928e08bbf34c59e (diff)
speed up images history perfect
Diffstat (limited to 'javascript')
-rw-r--r--javascript/images_history.js30
-rw-r--r--javascript/progressbar.js6
2 files changed, 17 insertions, 19 deletions
diff --git a/javascript/images_history.js b/javascript/images_history.js
index 9d9d04fb..3c028bc6 100644
--- a/javascript/images_history.js
+++ b/javascript/images_history.js
@@ -43,7 +43,6 @@ function images_history_get_parent_by_tagname(item, tagname){
var parent = item.parentElement;
tagname = tagname.toUpperCase()
while(parent.tagName != tagname){
- console.log(parent.tagName, tagname)
parent = parent.parentElement;
}
return parent;
@@ -108,7 +107,6 @@ function images_history_delete(del_num, tabname, image_index){
});
var img_num = buttons.length / 2;
del_num = Math.min(img_num - image_index, del_num)
- console.log(del_num, img_num)
if (img_num <= del_num){
setTimeout(function(tabname){
gradioApp().getElementById(tabname + '_images_history_renew_page').click();
@@ -133,7 +131,6 @@ function images_history_delete(del_num, tabname, image_index){
}
function images_history_turnpage(tabname){
- console.log("del_button")
gradioApp().getElementById(tabname + '_images_history_del_button').setAttribute('disabled','disabled');
var buttons = gradioApp().getElementById(tabname + '_images_history').querySelectorAll(".gallery-item");
buttons.forEach(function(elem) {
@@ -148,8 +145,9 @@ function images_history_enable_del_buttons(){
}
function images_history_init(){
- var load_txt2img_button = gradioApp().getElementById('saved_images_history_start')
- if (load_txt2img_button){
+ var loaded = gradioApp().getElementById("images_history_reconstruct_directory")
+ if (loaded){
+ var init_status = loaded.querySelector("input").checked
for (var i in images_history_tab_list ){
tab = images_history_tab_list[i];
gradioApp().getElementById(tab + '_images_history').classList.add("images_history_cantainor");
@@ -160,26 +158,24 @@ function images_history_init(){
}
var tabs_box = gradioApp().getElementById("tab_images_history").querySelector("div").querySelector("div").querySelector("div");
tabs_box.setAttribute("id", "images_history_tab");
- var tab_btns = tabs_box.querySelectorAll("button");
+ var tab_btns = tabs_box.querySelectorAll("button");
+
for (var i in images_history_tab_list){
var tabname = images_history_tab_list[i]
tab_btns[i].setAttribute("tabname", tabname);
-
- // this refreshes history upon tab switch
- // until the history is known to work well, which is not the case now, we do not do this at startup
- // -- load page very fast now, so better user experience by automatically activating pages
- tab_btns[i].addEventListener('click', images_history_click_tab);
- }
- tabs_box.classList.add(images_history_tab_list[0]);
-
- // same as above, at page load-- load very fast now
- load_txt2img_button.click();
+ if (init_status){
+ tab_btns[i].addEventListener('click', images_history_click_tab);
+ }
+ }
+ if (init_status){
+ tab_btns[0].click();
+ }
} else {
setTimeout(images_history_init, 500);
}
}
-var images_history_tab_list = ["saved", "txt2img", "img2img", "extras"];
+var images_history_tab_list = ["txt2img", "img2img", "extras", "saved"];
setTimeout(images_history_init, 500);
document.addEventListener("DOMContentLoaded", function() {
var mutationObserver = new MutationObserver(function(m){
diff --git a/javascript/progressbar.js b/javascript/progressbar.js
index 076f0a97..c7d0343f 100644
--- a/javascript/progressbar.js
+++ b/javascript/progressbar.js
@@ -34,7 +34,7 @@ function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_skip
preview.style.height = gallery.clientHeight + "px"
//only watch gallery if there is a generation process going on
- check_gallery(id_gallery);
+ check_gallery(id_gallery);
var progressDiv = gradioApp().querySelectorAll('#' + id_progressbar_span).length > 0;
if(!progressDiv){
@@ -73,8 +73,10 @@ function check_gallery(id_gallery){
let galleryBtnSelected = gradioApp().querySelector('#'+id_gallery+' .gallery-item.\\!ring-2')
if (prevSelectedIndex !== -1 && galleryButtons.length>prevSelectedIndex && !galleryBtnSelected) {
//automatically re-open previously selected index (if exists)
+ activeElement = document.activeElement;
galleryButtons[prevSelectedIndex].click();
- showGalleryImage();
+ showGalleryImage();
+ if(activeElement) activeElement.focus()
}
})
galleryObservers[id_gallery].observe( gallery, { childList:true, subtree:false })