-
-
Notifications
You must be signed in to change notification settings - Fork 467
/
Copy pathuiConfig.js
21 lines (20 loc) · 824 Bytes
/
uiConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function uiOpenSubmenus() {
const accordions = Array.from(gradioApp().querySelectorAll('.gradio-accordion'));
const states = {};
accordions.forEach((el) => {
const name = el.querySelector('.label-wrap > span:not(.icon)').innerText.trim();
const children = Array.from(el.childNodes);
const open = children.filter((c) => c.style?.display === 'block');
if (states[name] === undefined) states[name] = open.length > 0;
});
return states;
}
async function getUIDefaults() {
const btn = gradioApp().getElementById('ui_defaults_view');
if (!btn) return;
const intersectionObserver = new IntersectionObserver((entries) => {
if (entries[0].intersectionRatio <= 0) { }
if (entries[0].intersectionRatio > 0) btn.click();
});
intersectionObserver.observe(btn); // monitor visibility of tab
}