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