2023-11-09 17:05:59 +01:00
|
|
|
/*
|
|
|
|
This file creates the simple UI by fetching the default UI and modifying it.
|
|
|
|
*/
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
var loc = false, locip, locproto = "http:";
|
|
|
|
if (window.location.protocol == "file:") {
|
|
|
|
loc = true;
|
|
|
|
locip = localStorage.getItem('locIp');
|
|
|
|
if (!locip) {
|
|
|
|
locip = prompt("File Mode. Please enter WLED IP!");
|
|
|
|
localStorage.setItem('locIp', locip);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// detect reverse proxy
|
|
|
|
let paths = window.location.pathname.slice(1, window.location.pathname.endsWith('/') ? -1 : undefined).split("/");
|
|
|
|
if (paths.length > 2) {
|
|
|
|
locproto = window.location.protocol;
|
|
|
|
loc = true;
|
|
|
|
locip = window.location.hostname + (window.location.port ? ":" + window.location.port : "") + "/" + paths[0];
|
2021-08-10 17:11:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-04 18:40:29 +02:00
|
|
|
function getURL(path) {
|
|
|
|
return (loc ? locproto + "//" + locip : "") + path;
|
|
|
|
}
|
2021-11-05 23:25:11 +01:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// fetch default UI and modify it
|
|
|
|
fetch(getURL("/index.htm"))
|
|
|
|
.then(response => response.text())
|
|
|
|
.then(data => {
|
|
|
|
let parser = new DOMParser();
|
|
|
|
let doc = parser.parseFromString(data, 'text/html');
|
|
|
|
// patch simple ui
|
|
|
|
simplifyUI(doc);
|
|
|
|
|
|
|
|
// copy page to current page
|
|
|
|
document.documentElement.innerHTML = doc.documentElement.innerHTML;
|
|
|
|
|
|
|
|
// execute scripts in page
|
|
|
|
let scripts = document.querySelectorAll('script');
|
|
|
|
scripts.forEach(script => {
|
|
|
|
// create new script element
|
|
|
|
let newScript = document.createElement('script');
|
|
|
|
// copy attributes
|
|
|
|
for (let i = 0; i < script.attributes.length; i++) {
|
|
|
|
newScript.setAttribute(script.attributes[i].name, script.attributes[i].value);
|
2021-08-10 17:11:17 +02:00
|
|
|
}
|
2023-11-09 17:05:59 +01:00
|
|
|
// copy content
|
|
|
|
newScript.innerHTML = script.innerHTML;
|
|
|
|
// replace script
|
|
|
|
script.parentNode.replaceChild(newScript, script);
|
2021-08-10 17:11:17 +02:00
|
|
|
});
|
2023-11-09 17:05:59 +01:00
|
|
|
finalizeSimpleUI();
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2022-01-03 22:37:21 +01:00
|
|
|
})
|
2023-11-09 17:05:59 +01:00
|
|
|
.catch(error => console.error('Error:', error));
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Transforms the default UI into the simple UI
|
|
|
|
function simplifyUI(doc) {
|
|
|
|
function gId(id) {
|
|
|
|
return doc.getElementById(id);
|
2021-08-10 17:11:17 +02:00
|
|
|
}
|
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Disable PC Mode as it does not exist in simple UI
|
|
|
|
localStorage.setItem("pcm", "false");
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Put effects below palett list
|
|
|
|
gId("Colors").innerHTML += gId("Effects").innerHTML;
|
2023-11-09 18:15:04 +01:00
|
|
|
// Put preset quick load before palette list
|
|
|
|
gId("Colors").insertBefore(gId("pql"), gId("pall"));
|
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Hide buttons in top bar
|
|
|
|
gId("buttonNl").style.display = "none";
|
|
|
|
gId("buttonSync").style.display = "none";
|
|
|
|
gId("buttonSr").style.display = "none";
|
|
|
|
gId("buttonPcm").style.display = "none";
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Hide bottom bar
|
|
|
|
gId("bot").style.display = "none";
|
|
|
|
doc.documentElement.style.setProperty('--bh', '0px');
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Hide other tabs
|
|
|
|
gId("Effects").style.display = "none";
|
|
|
|
gId("Segments").style.display = "none";
|
|
|
|
gId("Presets").style.display = "none";
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Chage height of palette list
|
|
|
|
gId("pallist").style.height = "300px";
|
|
|
|
gId("pallist").style.overflow = "scroll";
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// set brightness to 255 and hide slider
|
|
|
|
gId("sliderBri").value = 255;
|
|
|
|
gId("briwrap").style.display = "none";
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
// Hide filter options
|
|
|
|
gId("filters").style.display = "none";
|
2021-08-10 17:11:17 +02:00
|
|
|
|
2023-11-09 17:05:59 +01:00
|
|
|
/* var observer = new MutationObserver(function (mutations) {
|
|
|
|
mutations.forEach(function (mutation) {
|
|
|
|
if (mutation.attributeName === "class") {
|
|
|
|
let element = mutation.target;
|
|
|
|
if (element.matches("#pallist .lstI.selected")) {
|
|
|
|
element.style.top = "0px";
|
|
|
|
}
|
2021-08-10 17:11:17 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2023-11-09 17:05:59 +01:00
|
|
|
var config = { attributes: true, childList: true, subtree: true };
|
|
|
|
observer.observe(doc.body, config); */
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called when simple UI is ready
|
|
|
|
function finalizeSimpleUI() {
|
|
|
|
// disable horizontal scrolling
|
|
|
|
simpleUI = true;
|
|
|
|
// set brightness
|
|
|
|
setBri();
|
|
|
|
// set correct position of selected and sticky palette
|
|
|
|
Array.from(document.styleSheets[0].cssRules).find(rule => rule.selectorText == "#pallist .lstI.sticky").style.top = "0px";
|
|
|
|
Array.from(document.styleSheets[0].cssRules).find(rule => rule.selectorText == "#pallist .lstI.selected").style.top = "42px";
|
|
|
|
}
|