aboutsummaryrefslogtreecommitdiff
path: root/script.js
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-09-17 14:57:10 +0300
committerGitHub <noreply@github.com>2022-09-17 14:57:10 +0300
commit0d7fdb179104e48983d07e0175021f0e4bdc2d55 (patch)
treea183247f90049207a5af64b2882c0f92136ee6fe /script.js
parentac61e4663c21ea0f51a4319162d3877e00554a2a (diff)
parent1ef79f926e6314b3ef9308b12ff7ad482afd790a (diff)
Merge branch 'master' into image_info_tab
Diffstat (limited to 'script.js')
-rw-r--r--script.js76
1 files changed, 74 insertions, 2 deletions
diff --git a/script.js b/script.js
index 0852e421..a016eb4e 100644
--- a/script.js
+++ b/script.js
@@ -66,6 +66,8 @@ titles = {
"Style 2": "Style to apply; styles have components for both positive and negative prompts and apply to both",
"Apply style": "Insert selected styles into prompt fields",
"Create style": "Save current prompts as a style. If you add the token {prompt} to the text, the style use that as placeholder for your prompt when you use the style in the future.",
+
+ "Checkpoint name": "Loads weights from checkpoint before making images. You can either use hash or a part of filename (as seen in settings) for checkpoint name. Recommended to use with Y axis for less switching.",
}
function gradioApp(){
@@ -74,6 +76,41 @@ function gradioApp(){
global_progressbar = null
+function closeModal() {
+ gradioApp().getElementById("lightboxModal").style.display = "none";
+}
+
+function showModal(elem) {
+ gradioApp().getElementById("modalImage").src = elem.src
+ gradioApp().getElementById("lightboxModal").style.display = "block";
+}
+
+function showGalleryImage(){
+ setTimeout(function() {
+ fullImg_preview = gradioApp().querySelectorAll('img.w-full.object-contain')
+
+ if(fullImg_preview != null){
+ fullImg_preview.forEach(function function_name(e) {
+ if(e && e.parentElement.tagName == 'DIV'){
+ e.style.cursor='pointer'
+
+ elemfunc = function(elem){
+ elem.onclick = function(){showModal(elem)};
+ }
+ elemfunc(e)
+ }
+ });
+ }
+
+ }, 100);
+}
+
+function galleryImageHandler(e){
+ if(e && e.parentElement.tagName == 'BUTTON'){
+ e.onclick = showGalleryImage;
+ }
+}
+
function addTitles(root){
root.querySelectorAll('span, button, select').forEach(function(span){
tooltip = titles[span.textContent];
@@ -115,13 +152,18 @@ function addTitles(root){
img2img_preview.style.width = img2img_gallery.clientWidth + "px"
img2img_preview.style.height = img2img_gallery.clientHeight + "px"
}
-
-
+
window.setTimeout(requestProgress, 500)
});
mutationObserver.observe( progressbar, { childList:true, subtree:true })
}
+
+ fullImg_preview = gradioApp().querySelectorAll('img.w-full')
+ if(fullImg_preview != null){
+ fullImg_preview.forEach(galleryImageHandler);
+ }
+
}
document.addEventListener("DOMContentLoaded", function() {
@@ -129,6 +171,27 @@ document.addEventListener("DOMContentLoaded", function() {
addTitles(gradioApp());
});
mutationObserver.observe( gradioApp(), { childList:true, subtree:true })
+
+ const modalFragment = document.createDocumentFragment();
+ const modal = document.createElement('div')
+ modal.onclick = closeModal;
+
+ const modalClose = document.createElement('span')
+ modalClose.className = 'modalClose cursor';
+ modalClose.innerHTML = '&times;'
+ modalClose.onclick = closeModal;
+ modal.id = "lightboxModal";
+ modal.appendChild(modalClose)
+
+ const modalImage = document.createElement('img')
+ modalImage.id = 'modalImage';
+ modalImage.onclick = closeModal;
+ modal.appendChild(modalImage)
+
+ gradioApp().getRootNode().appendChild(modal)
+
+ document.body.appendChild(modalFragment);
+
});
function selected_gallery_index(){
@@ -180,6 +243,15 @@ function submit(){
for(var i=0;i<arguments.length;i++){
res.push(arguments[i])
}
+
+ // As it is currently, txt2img and img2img send back the previous output args (txt2img_gallery, generation_info, html_info) whenever you generate a new image.
+ // This can lead to uploading a huge gallery of previously generated images, which leads to an unnecessary delay between submitting and beginning to generate.
+ // I don't know why gradio is seding outputs along with inputs, but we can prevent sending the image gallery here, which seems to be an issue for some.
+ // If gradio at some point stops sending outputs, this may break something
+ if(Array.isArray(res[res.length - 3])){
+ res[res.length - 3] = null
+ }
+
return res
}