2022-11-02 16:05:00 +00:00
// various functions for interaction with ui.py not large enough to warrant putting them in separate files
2022-09-02 20:25:29 +00:00
2022-10-17 16:24:24 +00:00
function set _theme ( theme ) {
2023-04-30 19:08:52 +00:00
var gradioURL = window . location . href ;
2022-10-17 16:24:24 +00:00
if ( ! gradioURL . includes ( '?__theme=' ) ) {
window . location . replace ( gradioURL + '?__theme=' + theme ) ;
2022-10-17 09:05:05 +00:00
}
}
2023-03-25 18:52:47 +00:00
function all _gallery _buttons ( ) {
var allGalleryButtons = gradioApp ( ) . querySelectorAll ( '[style="display: block;"].tabitem div[id$=_gallery].gradio-gallery .thumbnails > .thumbnail-item.thumbnail-small' ) ;
var visibleGalleryButtons = [ ] ;
allGalleryButtons . forEach ( function ( elem ) {
if ( elem . parentElement . offsetParent ) {
visibleGalleryButtons . push ( elem ) ;
}
} ) ;
return visibleGalleryButtons ;
}
function selected _gallery _button ( ) {
var allCurrentButtons = gradioApp ( ) . querySelectorAll ( '[style="display: block;"].tabitem div[id$=_gallery].gradio-gallery .thumbnail-item.thumbnail-small.selected' ) ;
var visibleCurrentButton = null ;
allCurrentButtons . forEach ( function ( elem ) {
if ( elem . parentElement . offsetParent ) {
visibleCurrentButton = elem ;
}
} ) ;
return visibleCurrentButton ;
}
2022-09-02 20:25:29 +00:00
function selected _gallery _index ( ) {
2023-03-25 18:52:47 +00:00
var buttons = all _gallery _buttons ( ) ;
var button = selected _gallery _button ( ) ;
2022-09-02 20:25:29 +00:00
var result = - 1 ;
buttons . forEach ( function ( v , i ) {
if ( v == button ) {
result = i ;
}
} ) ;
return result ;
}
function extract _image _from _gallery ( gallery ) {
2023-03-25 18:52:47 +00:00
if ( gallery . length == 0 ) {
return [ null ] ;
}
if ( gallery . length == 1 ) {
return [ gallery [ 0 ] ] ;
2022-09-02 20:25:29 +00:00
}
2023-04-30 19:08:52 +00:00
var index = selected _gallery _index ( ) ;
2022-09-02 20:25:29 +00:00
if ( index < 0 || index >= gallery . length ) {
2023-03-25 18:52:47 +00:00
// Use the first image in the gallery as the default
index = 0 ;
2022-09-02 20:25:29 +00:00
}
2023-01-02 19:44:46 +00:00
return [ gallery [ index ] ] ;
2022-09-10 21:17:34 +00:00
}
2023-05-19 10:01:36 +00:00
window . args _to _array = Array . from ; // Compatibility with e.g. extensions that may expect this to be around
2022-09-23 19:49:21 +00:00
function switch _to _txt2img ( ) {
2022-10-13 17:42:27 +00:00
gradioApp ( ) . querySelector ( '#tabs' ) . querySelectorAll ( 'button' ) [ 0 ] . click ( ) ;
2022-09-23 19:49:21 +00:00
2023-05-19 10:01:36 +00:00
return Array . from ( arguments ) ;
2022-09-23 19:49:21 +00:00
}
2023-01-14 19:43:01 +00:00
function switch _to _img2img _tab ( no ) {
2022-10-13 17:42:27 +00:00
gradioApp ( ) . querySelector ( '#tabs' ) . querySelectorAll ( 'button' ) [ 1 ] . click ( ) ;
2023-01-14 19:43:01 +00:00
gradioApp ( ) . getElementById ( 'mode_img2img' ) . querySelectorAll ( 'button' ) [ no ] . click ( ) ;
}
function switch _to _img2img ( ) {
switch _to _img2img _tab ( 0 ) ;
2023-05-19 10:01:36 +00:00
return Array . from ( arguments ) ;
2023-01-14 19:43:01 +00:00
}
function switch _to _sketch ( ) {
switch _to _img2img _tab ( 1 ) ;
2023-05-19 10:01:36 +00:00
return Array . from ( arguments ) ;
2023-01-14 19:43:01 +00:00
}
function switch _to _inpaint ( ) {
switch _to _img2img _tab ( 2 ) ;
2023-05-19 10:01:36 +00:00
return Array . from ( arguments ) ;
2023-01-14 19:43:01 +00:00
}
2022-09-23 19:49:21 +00:00
2023-01-14 19:43:01 +00:00
function switch _to _inpaint _sketch ( ) {
switch _to _img2img _tab ( 3 ) ;
2023-05-19 10:01:36 +00:00
return Array . from ( arguments ) ;
2022-09-23 19:49:21 +00:00
}
function switch _to _extras ( ) {
2022-10-13 17:42:27 +00:00
gradioApp ( ) . querySelector ( '#tabs' ) . querySelectorAll ( 'button' ) [ 2 ] . click ( ) ;
2022-09-23 19:49:21 +00:00
2023-05-19 10:01:36 +00:00
return Array . from ( arguments ) ;
2022-09-23 19:49:21 +00:00
}
2022-09-22 09:11:48 +00:00
function get _tab _index ( tabId ) {
2023-05-19 10:06:12 +00:00
let buttons = gradioApp ( ) . getElementById ( tabId ) . querySelector ( 'div' ) . querySelectorAll ( 'button' ) ;
for ( let i = 0 ; i < buttons . length ; i ++ ) {
if ( buttons [ i ] . classList . contains ( 'selected' ) ) {
return i ;
2023-05-17 12:46:58 +00:00
}
2023-05-19 10:06:12 +00:00
}
return 0 ;
2022-09-22 09:11:48 +00:00
}
function create _tab _index _args ( tabId , args ) {
2023-05-19 10:01:36 +00:00
var res = Array . from ( args ) ;
2022-09-22 09:11:48 +00:00
res [ 0 ] = get _tab _index ( tabId ) ;
return res ;
}
2023-01-18 17:16:52 +00:00
function get _img2img _tab _index ( ) {
2023-05-19 10:01:36 +00:00
let res = Array . from ( arguments ) ;
2023-03-28 17:36:57 +00:00
res . splice ( - 2 ) ;
2023-01-18 17:16:52 +00:00
res [ 0 ] = get _tab _index ( 'mode_img2img' ) ;
return res ;
}
2022-09-22 09:11:48 +00:00
function create _submit _args ( args ) {
2023-05-19 10:01:36 +00:00
var res = Array . from ( args ) ;
2022-09-17 05:03:47 +00:00
// 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.
2022-12-15 02:01:32 +00:00
// I don't know why gradio is sending outputs along with inputs, but we can prevent sending the image gallery here, which seems to be an issue for some.
2022-09-17 05:03:47 +00:00
// If gradio at some point stops sending outputs, this may break something
if ( Array . isArray ( res [ res . length - 3 ] ) ) {
res [ res . length - 3 ] = null ;
}
2022-09-05 23:09:01 +00:00
return res ;
2022-09-07 18:26:19 +00:00
}
2022-09-07 19:58:11 +00:00
2023-01-15 15:50:56 +00:00
function showSubmitButtons ( tabname , show ) {
gradioApp ( ) . getElementById ( tabname + '_interrupt' ) . style . display = show ? "none" : "block" ;
gradioApp ( ) . getElementById ( tabname + '_skip' ) . style . display = show ? "none" : "block" ;
}
2023-04-29 19:16:54 +00:00
function showRestoreProgressButton ( tabname , show ) {
2023-04-30 19:08:52 +00:00
var button = gradioApp ( ) . getElementById ( tabname + "_restore_progress" ) ;
2023-04-29 19:16:54 +00:00
if ( ! button ) return ;
button . style . display = show ? "flex" : "none" ;
}
2022-09-22 09:11:48 +00:00
function submit ( ) {
2023-01-15 15:50:56 +00:00
showSubmitButtons ( 'txt2img' , false ) ;
2023-03-28 16:17:19 +00:00
var id = randomId ( ) ;
2023-04-29 19:16:54 +00:00
localStorage . setItem ( "txt2img_task_id" , id ) ;
2023-01-15 15:50:56 +00:00
requestProgress ( id , gradioApp ( ) . getElementById ( 'txt2img_gallery_container' ) , gradioApp ( ) . getElementById ( 'txt2img_gallery' ) , function ( ) {
showSubmitButtons ( 'txt2img' , true ) ;
2023-04-29 19:16:54 +00:00
localStorage . removeItem ( "txt2img_task_id" ) ;
showRestoreProgressButton ( 'txt2img' , false ) ;
2023-01-15 15:50:56 +00:00
} ) ;
2022-09-22 09:11:48 +00:00
2023-01-15 15:50:56 +00:00
var res = create _submit _args ( arguments ) ;
res [ 0 ] = id ;
return res ;
2022-09-22 09:11:48 +00:00
}
function submit _img2img ( ) {
2023-01-15 15:50:56 +00:00
showSubmitButtons ( 'img2img' , false ) ;
2023-03-28 16:17:19 +00:00
var id = randomId ( ) ;
2023-04-29 19:16:54 +00:00
localStorage . setItem ( "img2img_task_id" , id ) ;
2023-01-15 15:50:56 +00:00
requestProgress ( id , gradioApp ( ) . getElementById ( 'img2img_gallery_container' ) , gradioApp ( ) . getElementById ( 'img2img_gallery' ) , function ( ) {
showSubmitButtons ( 'img2img' , true ) ;
2023-04-29 19:16:54 +00:00
localStorage . removeItem ( "img2img_task_id" ) ;
showRestoreProgressButton ( 'img2img' , false ) ;
2023-01-15 15:50:56 +00:00
} ) ;
2022-09-22 09:11:48 +00:00
2023-01-15 15:50:56 +00:00
var res = create _submit _args ( arguments ) ;
2022-09-22 09:11:48 +00:00
2023-01-15 15:50:56 +00:00
res [ 0 ] = id ;
res [ 1 ] = get _tab _index ( 'mode_img2img' ) ;
2022-09-22 09:11:48 +00:00
return res ;
}
2023-04-30 19:12:24 +00:00
function restoreProgressTxt2img ( ) {
2023-05-01 10:58:10 +00:00
showRestoreProgressButton ( "txt2img" , false ) ;
2023-04-30 19:08:52 +00:00
var id = localStorage . getItem ( "txt2img_task_id" ) ;
2023-04-29 19:16:54 +00:00
id = localStorage . getItem ( "txt2img_task_id" ) ;
if ( id ) {
requestProgress ( id , gradioApp ( ) . getElementById ( 'txt2img_gallery_container' ) , gradioApp ( ) . getElementById ( 'txt2img_gallery' ) , function ( ) {
showSubmitButtons ( 'txt2img' , true ) ;
} , null , 0 ) ;
}
2023-05-01 10:59:52 +00:00
return id ;
2023-04-29 19:16:54 +00:00
}
2023-05-01 10:58:10 +00:00
2023-04-30 19:12:24 +00:00
function restoreProgressImg2img ( ) {
2023-05-01 11:39:46 +00:00
showRestoreProgressButton ( "img2img" , false ) ;
2023-04-29 19:16:54 +00:00
2023-04-30 19:08:52 +00:00
var id = localStorage . getItem ( "img2img_task_id" ) ;
2023-04-29 19:16:54 +00:00
if ( id ) {
requestProgress ( id , gradioApp ( ) . getElementById ( 'img2img_gallery_container' ) , gradioApp ( ) . getElementById ( 'img2img_gallery' ) , function ( ) {
showSubmitButtons ( 'img2img' , true ) ;
} , null , 0 ) ;
}
2023-05-01 10:59:52 +00:00
return id ;
2023-04-29 19:16:54 +00:00
}
onUiLoaded ( function ( ) {
showRestoreProgressButton ( 'txt2img' , localStorage . getItem ( "txt2img_task_id" ) ) ;
showRestoreProgressButton ( 'img2img' , localStorage . getItem ( "img2img_task_id" ) ) ;
} ) ;
2023-01-19 06:25:37 +00:00
function modelmerger ( ) {
var id = randomId ( ) ;
requestProgress ( id , gradioApp ( ) . getElementById ( 'modelmerger_results_panel' ) , null , function ( ) { } ) ;
var res = create _submit _args ( arguments ) ;
res [ 0 ] = id ;
return res ;
}
2022-09-22 09:11:48 +00:00
2022-09-11 14:35:12 +00:00
function ask _for _style _name ( _ , prompt _text , negative _prompt _text ) {
2023-04-30 19:08:52 +00:00
var name _ = prompt ( 'Style name:' ) ;
2022-10-15 11:22:30 +00:00
return [ name _ , prompt _text , negative _prompt _text ] ;
2022-09-09 20:16:02 +00:00
}
2022-09-18 19:25:18 +00:00
2022-12-10 10:46:18 +00:00
function confirm _clear _prompt ( prompt , negative _prompt ) {
if ( confirm ( "Delete prompt?" ) ) {
prompt = "" ;
negative _prompt = "" ;
2022-10-20 06:08:24 +00:00
}
2022-10-20 22:03:25 +00:00
2022-12-10 10:46:18 +00:00
return [ prompt , negative _prompt ] ;
2022-10-20 06:08:24 +00:00
}
2023-01-29 22:03:31 +00:00
2023-04-30 19:08:52 +00:00
var opts = { } ;
2023-05-25 06:09:13 +00:00
onAfterUiUpdate ( function ( ) {
2022-09-18 19:25:18 +00:00
if ( Object . keys ( opts ) . length != 0 ) return ;
2023-04-30 19:08:52 +00:00
var json _elem = gradioApp ( ) . getElementById ( 'settings_json' ) ;
2022-09-18 19:25:18 +00:00
if ( json _elem == null ) return ;
2023-01-21 06:48:38 +00:00
var textarea = json _elem . querySelector ( 'textarea' ) ;
var jsdata = textarea . value ;
2022-09-18 19:25:18 +00:00
opts = JSON . parse ( jsdata ) ;
2023-05-18 06:59:10 +00:00
executeCallbacks ( optionsChangedCallbacks ) ; /*global optionsChangedCallbacks*/
2022-09-18 19:25:18 +00:00
Object . defineProperty ( textarea , 'value' , {
set : function ( newValue ) {
var valueProp = Object . getOwnPropertyDescriptor ( HTMLTextAreaElement . prototype , 'value' ) ;
var oldValue = valueProp . get . call ( textarea ) ;
valueProp . set . call ( textarea , newValue ) ;
if ( oldValue != newValue ) {
opts = JSON . parse ( textarea . value ) ;
}
2023-01-14 12:55:40 +00:00
executeCallbacks ( optionsChangedCallbacks ) ;
2022-09-18 19:25:18 +00:00
} ,
get : function ( ) {
var valueProp = Object . getOwnPropertyDescriptor ( HTMLTextAreaElement . prototype , 'value' ) ;
return valueProp . get . call ( textarea ) ;
}
} ) ;
json _elem . parentElement . style . display = "none" ;
2022-09-28 13:43:54 +00:00
2023-05-21 20:16:14 +00:00
setupTokenCounters ( ) ;
2023-05-17 12:46:58 +00:00
2023-04-30 19:08:52 +00:00
var show _all _pages = gradioApp ( ) . getElementById ( 'settings_show_all_pages' ) ;
var settings _tabs = gradioApp ( ) . querySelector ( '#settings div' ) ;
2023-01-03 07:01:06 +00:00
if ( show _all _pages && settings _tabs ) {
settings _tabs . appendChild ( show _all _pages ) ;
show _all _pages . onclick = function ( ) {
gradioApp ( ) . querySelectorAll ( '#settings > div' ) . forEach ( function ( elem ) {
2023-05-08 12:30:32 +00:00
if ( elem . id == "settings_tab_licenses" ) {
return ;
2023-05-17 12:46:58 +00:00
}
2023-05-08 12:30:32 +00:00
2023-01-03 07:01:06 +00:00
elem . style . display = "block" ;
} ) ;
} ;
}
2022-09-18 19:25:18 +00:00
} ) ;
2022-09-27 19:56:18 +00:00
2023-01-14 12:55:40 +00:00
onOptionsChanged ( function ( ) {
2023-04-30 19:08:52 +00:00
var elem = gradioApp ( ) . getElementById ( 'sd_checkpoint_hash' ) ;
var sd _checkpoint _hash = opts . sd _checkpoint _hash || "" ;
2023-04-30 19:15:59 +00:00
var shorthash = sd _checkpoint _hash . substring ( 0 , 10 ) ;
2023-01-14 12:55:40 +00:00
if ( elem && elem . textContent != shorthash ) {
elem . textContent = shorthash ;
elem . title = sd _checkpoint _hash ;
elem . href = "https://google.com/search?q=" + sd _checkpoint _hash ;
}
} ) ;
2022-09-28 13:43:54 +00:00
let txt2img _textarea , img2img _textarea = undefined ;
2022-10-01 23:12:49 +00:00
function restart _reload ( ) {
document . body . innerHTML = '<h1 style="font-family:monospace;margin-top:20%;color:lightgray;text-align:center;">Reloading...</h1>' ;
2023-05-09 08:42:47 +00:00
var requestPing = function ( ) {
requestGet ( "./internal/ping" , { } , function ( data ) {
location . reload ( ) ;
} , function ( ) {
setTimeout ( requestPing , 500 ) ;
} ) ;
} ;
setTimeout ( requestPing , 2000 ) ;
2022-11-06 06:02:25 +00:00
return [ ] ;
2022-10-01 23:12:49 +00:00
}
2023-01-17 11:15:47 +00:00
// Simulate an `input` DOM event for Gradio Textbox component. Needed after you edit its contents in javascript, otherwise your edits
// will only visible on web page and not sent to python.
function updateInput ( target ) {
2023-05-18 06:59:10 +00:00
let e = new Event ( "input" , { bubbles : true } ) ;
2023-01-17 11:15:47 +00:00
Object . defineProperty ( e , "target" , { value : target } ) ;
target . dispatchEvent ( e ) ;
}
2023-01-28 19:52:27 +00:00
var desiredCheckpointName = null ;
function selectCheckpoint ( name ) {
desiredCheckpointName = name ;
gradioApp ( ) . getElementById ( 'change_checkpoint' ) . click ( ) ;
}
2023-04-04 02:27:48 +00:00
2023-05-18 06:59:10 +00:00
function currentImg2imgSourceResolution ( w , h , scaleBy ) {
2023-03-28 19:23:40 +00:00
var img = gradioApp ( ) . querySelector ( '#mode_img2img > div[style="display: block;"] img' ) ;
return img ? [ img . naturalWidth , img . naturalHeight , scaleBy ] : [ 0 , 0 , scaleBy ] ;
}
2023-04-29 16:39:22 +00:00
function updateImg2imgResizeToTextAfterChangingImage ( ) {
// At the time this is called from gradio, the image has no yet been replaced.
// There may be a better solution, but this is simple and straightforward so I'm going with it.
setTimeout ( function ( ) {
gradioApp ( ) . getElementById ( 'img2img_update_resize_to' ) . click ( ) ;
} , 500 ) ;
2023-05-18 07:03:48 +00:00
return [ ] ;
2023-05-17 20:18:56 +00:00
}
2023-04-04 02:27:48 +00:00
2023-05-17 20:27:06 +00:00
function setRandomSeed ( elem _id ) {
var input = gradioApp ( ) . querySelector ( "#" + elem _id + " input" ) ;
if ( ! input ) return [ ] ;
input . value = "-1" ;
updateInput ( input ) ;
2023-04-04 02:27:48 +00:00
return [ ] ;
}
2023-05-17 20:27:06 +00:00
function switchWidthHeight ( tabname ) {
var width = gradioApp ( ) . querySelector ( "#" + tabname + "_width input[type=number]" ) ;
var height = gradioApp ( ) . querySelector ( "#" + tabname + "_height input[type=number]" ) ;
if ( ! width || ! height ) return [ ] ;
var tmp = width . value ;
2023-04-04 02:27:48 +00:00
width . value = height . value ;
height . value = tmp ;
2023-05-17 20:27:06 +00:00
updateInput ( width ) ;
updateInput ( height ) ;
2023-04-04 02:27:48 +00:00
return [ ] ;
}