2022-12-10 11:51:40 +00:00
|
|
|
function gradioApp() {
|
2023-01-12 16:47:44 +00:00
|
|
|
const elems = document.getElementsByTagName('gradio-app');
|
2023-03-20 13:09:36 +00:00
|
|
|
const elem = elems.length == 0 ? document : elems[0];
|
|
|
|
|
2023-03-25 14:23:34 +00:00
|
|
|
if (elem !== document) {
|
|
|
|
elem.getElementById = function(id) {
|
|
|
|
return document.getElementById(id);
|
2023-05-17 12:46:58 +00:00
|
|
|
};
|
2023-03-25 14:23:34 +00:00
|
|
|
}
|
2023-03-20 13:09:36 +00:00
|
|
|
return elem.shadowRoot ? elem.shadowRoot : elem;
|
2022-08-31 19:19:30 +00:00
|
|
|
}
|
|
|
|
|
2022-09-23 23:12:13 +00:00
|
|
|
function get_uiCurrentTab() {
|
2023-04-03 02:53:29 +00:00
|
|
|
return gradioApp().querySelector('#tabs button.selected');
|
2022-09-23 23:12:13 +00:00
|
|
|
}
|
|
|
|
|
2022-10-11 05:22:46 +00:00
|
|
|
function get_uiCurrentTabContent() {
|
|
|
|
return gradioApp().querySelector('.tabitem[id^=tab_]:not([style*="display: none"])');
|
|
|
|
}
|
|
|
|
|
2023-05-18 06:59:10 +00:00
|
|
|
var uiUpdateCallbacks = [];
|
|
|
|
var uiLoadedCallbacks = [];
|
|
|
|
var uiTabChangeCallbacks = [];
|
|
|
|
var optionsChangedCallbacks = [];
|
|
|
|
var uiCurrentTab = null;
|
2022-09-23 23:12:13 +00:00
|
|
|
|
2022-09-18 05:37:03 +00:00
|
|
|
function onUiUpdate(callback) {
|
|
|
|
uiUpdateCallbacks.push(callback);
|
2022-09-17 00:03:03 +00:00
|
|
|
}
|
2023-01-21 05:36:07 +00:00
|
|
|
function onUiLoaded(callback) {
|
|
|
|
uiLoadedCallbacks.push(callback);
|
|
|
|
}
|
2022-09-23 23:12:13 +00:00
|
|
|
function onUiTabChange(callback) {
|
|
|
|
uiTabChangeCallbacks.push(callback);
|
|
|
|
}
|
2023-01-14 12:55:40 +00:00
|
|
|
function onOptionsChanged(callback) {
|
|
|
|
optionsChangedCallbacks.push(callback);
|
|
|
|
}
|
2022-09-17 00:03:03 +00:00
|
|
|
|
2023-05-25 06:02:38 +00:00
|
|
|
function executeCallbacks(queue, arg) {
|
|
|
|
for (const callback of queue) {
|
|
|
|
try {
|
|
|
|
callback(arg);
|
|
|
|
} catch (e) {
|
|
|
|
console.error("error running callback", callback, ":", e);
|
|
|
|
}
|
2022-09-23 23:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
2022-08-31 19:19:30 +00:00
|
|
|
}
|
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
var executedOnLoaded = false;
|
|
|
|
|
2022-08-31 19:19:30 +00:00
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
|
|
var mutationObserver = new MutationObserver(function(m) {
|
2023-01-21 05:36:07 +00:00
|
|
|
if (!executedOnLoaded && gradioApp().querySelector('#txt2img_prompt')) {
|
|
|
|
executedOnLoaded = true;
|
|
|
|
executeCallbacks(uiLoadedCallbacks);
|
|
|
|
}
|
|
|
|
|
2022-10-17 18:15:32 +00:00
|
|
|
executeCallbacks(uiUpdateCallbacks, m);
|
2022-09-23 23:12:13 +00:00
|
|
|
const newTab = get_uiCurrentTab();
|
|
|
|
if (newTab && (newTab !== uiCurrentTab)) {
|
|
|
|
uiCurrentTab = newTab;
|
|
|
|
executeCallbacks(uiTabChangeCallbacks);
|
|
|
|
}
|
2022-08-31 19:19:30 +00:00
|
|
|
});
|
2023-05-18 06:59:10 +00:00
|
|
|
mutationObserver.observe(gradioApp(), {childList: true, subtree: true});
|
2022-08-31 19:19:30 +00:00
|
|
|
});
|
2022-09-26 16:12:55 +00:00
|
|
|
|
2022-10-10 16:16:04 +00:00
|
|
|
/**
|
|
|
|
* Add a ctrl+enter as a shortcut to start a generation
|
|
|
|
*/
|
2023-01-21 05:36:07 +00:00
|
|
|
document.addEventListener('keydown', function(e) {
|
2022-10-10 16:16:04 +00:00
|
|
|
var handled = false;
|
|
|
|
if (e.key !== undefined) {
|
2022-10-15 03:48:13 +00:00
|
|
|
if ((e.key == "Enter" && (e.metaKey || e.ctrlKey || e.altKey))) handled = true;
|
2022-10-10 16:16:04 +00:00
|
|
|
} else if (e.keyCode !== undefined) {
|
2022-10-15 03:48:13 +00:00
|
|
|
if ((e.keyCode == 13 && (e.metaKey || e.ctrlKey || e.altKey))) handled = true;
|
2022-10-10 16:16:04 +00:00
|
|
|
}
|
2022-10-11 05:22:46 +00:00
|
|
|
if (handled) {
|
2023-05-18 06:59:10 +00:00
|
|
|
var button = get_uiCurrentTabContent().querySelector('button[id$=_generate]');
|
2022-10-11 05:22:46 +00:00
|
|
|
if (button) {
|
|
|
|
button.click();
|
|
|
|
}
|
2022-10-10 16:16:04 +00:00
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-09-26 16:12:55 +00:00
|
|
|
/**
|
|
|
|
* checks that a UI element is not in another hidden element or tab content
|
|
|
|
*/
|
|
|
|
function uiElementIsVisible(el) {
|
2023-05-18 23:09:09 +00:00
|
|
|
if (el === document) {
|
|
|
|
return true;
|
2022-09-26 16:12:55 +00:00
|
|
|
}
|
|
|
|
|
2023-05-18 23:09:09 +00:00
|
|
|
const computedStyle = getComputedStyle(el);
|
|
|
|
const isVisible = computedStyle.display !== 'none';
|
|
|
|
|
2023-05-19 06:43:01 +00:00
|
|
|
if (!isVisible) return false;
|
|
|
|
return uiElementIsVisible(el.parentNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
function uiElementInSight(el) {
|
2023-05-18 23:09:09 +00:00
|
|
|
const clRect = el.getBoundingClientRect();
|
|
|
|
const windowHeight = window.innerHeight;
|
2023-05-19 06:43:01 +00:00
|
|
|
const isOnScreen = clRect.bottom > 0 && clRect.top < windowHeight;
|
2023-05-18 23:09:09 +00:00
|
|
|
|
2023-05-19 06:43:01 +00:00
|
|
|
return isOnScreen;
|
2022-12-05 15:30:15 +00:00
|
|
|
}
|