2022-09-18 00:00:06 -06:00
// various functions for interation with ui.py not large enough to warrant putting them in separate files
2022-09-02 14:25:29 -06:00
function selected _gallery _index ( ) {
2022-09-26 15:18:57 -06:00
var buttons = gradioApp ( ) . querySelectorAll ( '[style="display: block;"].tabitem .gallery-item' )
var button = gradioApp ( ) . querySelector ( '[style="display: block;"].tabitem .gallery-item.\\!ring-2' )
2022-09-02 14:25:29 -06:00
var result = - 1
buttons . forEach ( function ( v , i ) { if ( v == button ) { result = i } } )
return result
}
function extract _image _from _gallery ( gallery ) {
if ( gallery . length == 1 ) {
return gallery [ 0 ]
}
index = selected _gallery _index ( )
if ( index < 0 || index >= gallery . length ) {
2022-09-10 02:10:00 -06:00
return [ null ]
2022-09-02 14:25:29 -06:00
}
return gallery [ index ] ;
2022-09-10 15:17:34 -06:00
}
2022-09-23 13:49:21 -06:00
function args _to _array ( args ) {
res = [ ]
for ( var i = 0 ; i < args . length ; i ++ ) {
res . push ( args [ i ] )
}
return res
}
function switch _to _txt2img ( ) {
gradioApp ( ) . querySelectorAll ( 'button' ) [ 0 ] . click ( ) ;
return args _to _array ( arguments ) ;
}
function switch _to _img2img _img2img ( ) {
gradioApp ( ) . querySelectorAll ( 'button' ) [ 1 ] . click ( ) ;
gradioApp ( ) . getElementById ( 'mode_img2img' ) . querySelectorAll ( 'button' ) [ 0 ] . click ( ) ;
return args _to _array ( arguments ) ;
}
function switch _to _img2img _inpaint ( ) {
2022-09-10 15:17:34 -06:00
gradioApp ( ) . querySelectorAll ( 'button' ) [ 1 ] . click ( ) ;
2022-09-23 13:49:21 -06:00
gradioApp ( ) . getElementById ( 'mode_img2img' ) . querySelectorAll ( 'button' ) [ 1 ] . click ( ) ;
return args _to _array ( arguments ) ;
}
function switch _to _extras ( ) {
gradioApp ( ) . querySelectorAll ( 'button' ) [ 2 ] . click ( ) ;
return args _to _array ( arguments ) ;
}
function extract _image _from _gallery _txt2img ( gallery ) {
switch _to _txt2img ( )
return extract _image _from _gallery ( gallery ) ;
}
function extract _image _from _gallery _img2img ( gallery ) {
switch _to _img2img _img2img ( )
return extract _image _from _gallery ( gallery ) ;
}
function extract _image _from _gallery _inpaint ( gallery ) {
switch _to _img2img _inpaint ( )
2022-09-10 15:17:34 -06:00
return extract _image _from _gallery ( gallery ) ;
}
function extract _image _from _gallery _extras ( gallery ) {
2022-09-23 13:49:21 -06:00
switch _to _extras ( )
2022-09-10 15:17:34 -06:00
return extract _image _from _gallery ( gallery ) ;
2022-09-02 14:25:29 -06:00
}
2022-09-05 17:09:01 -06:00
2022-09-22 03:11:48 -06:00
function get _tab _index ( tabId ) {
var res = 0
gradioApp ( ) . getElementById ( tabId ) . querySelector ( 'div' ) . querySelectorAll ( 'button' ) . forEach ( function ( button , i ) {
if ( button . className . indexOf ( 'bg-white' ) != - 1 )
res = i
} )
return res
}
function create _tab _index _args ( tabId , args ) {
var res = [ ]
for ( var i = 0 ; i < args . length ; i ++ ) {
res . push ( args [ i ] )
}
2022-09-05 17:09:01 -06:00
2022-09-22 03:11:48 -06:00
res [ 0 ] = get _tab _index ( tabId )
return res
}
function get _extras _tab _index ( ) {
return create _tab _index _args ( 'mode_extras' , arguments )
}
function create _submit _args ( args ) {
2022-09-05 17:09:01 -06:00
res = [ ]
2022-09-22 03:11:48 -06:00
for ( var i = 0 ; i < args . length ; i ++ ) {
res . push ( args [ i ] )
2022-09-05 17:09:01 -06:00
}
2022-09-16 23:03:47 -06: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.
// 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
}
2022-09-05 17:09:01 -06:00
return res
2022-09-07 12:26:19 -06:00
}
2022-09-07 13:58:11 -06:00
2022-09-22 03:11:48 -06:00
function submit ( ) {
2022-09-23 11:46:02 -06:00
requestProgress ( 'txt2img' )
2022-09-22 03:11:48 -06:00
return create _submit _args ( arguments )
}
function submit _img2img ( ) {
2022-09-23 11:46:02 -06:00
requestProgress ( 'img2img' )
2022-09-22 03:11:48 -06:00
res = create _submit _args ( arguments )
res [ 0 ] = get _tab _index ( 'mode_img2img' )
return res
}
2022-09-11 08:35:12 -06:00
function ask _for _style _name ( _ , prompt _text , negative _prompt _text ) {
name _ = prompt ( 'Style name:' )
return name _ === null ? [ null , null , null ] : [ name _ , prompt _text , negative _prompt _text ]
2022-09-09 14:16:02 -06:00
}
2022-09-18 13:25:18 -06:00
2022-09-22 03:11:48 -06:00
2022-09-18 13:25:18 -06:00
opts = { }
function apply _settings ( jsdata ) {
console . log ( jsdata )
opts = JSON . parse ( jsdata )
return jsdata
}
onUiUpdate ( function ( ) {
if ( Object . keys ( opts ) . length != 0 ) return ;
json _elem = gradioApp ( ) . getElementById ( 'settings_json' )
if ( json _elem == null ) return ;
textarea = json _elem . querySelector ( 'textarea' )
jsdata = textarea . value
opts = JSON . parse ( jsdata )
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 )
}
} ,
get : function ( ) {
var valueProp = Object . getOwnPropertyDescriptor ( HTMLTextAreaElement . prototype , 'value' ) ;
return valueProp . get . call ( textarea ) ;
}
} ) ;
json _elem . parentElement . style . display = "none"
} )
2022-09-27 13:56:18 -06:00
2022-09-27 17:29:53 -06:00
let wait _time = 800
let token _timeout ;
function txt2img _token _counter ( text ) {
return update _token _counter ( "txt2img_token_button" , text ) ;
}
function img2img _token _counter ( text ) {
return update _token _counter ( "img2img_token_button" , text ) ;
}
2022-09-27 13:56:18 -06:00
2022-09-27 17:29:53 -06:00
function update _token _counter ( button _id , text ) {
if ( token _timeout )
clearTimeout ( token _timeout ) ;
token _timeout = setTimeout ( ( ) => gradioApp ( ) . getElementById ( button _id ) ? . click ( ) , wait _time ) ;
return [ ] ;
}