function get(id) { return document.getElementById(id); } function set(id, text) { get(id).innerText = text; } function get_class(class_name, parent) { if (!parent) parent = document; return parent.getElementsByClassName(class_name); } function for_all(class_name, func, parent) { let a = get_class(class_name, parent); for (let i = 0; i < a.length; i++) { func(a[i]); } } function load_img(img) { img.classList.remove("unloaded"); } function get_background() { let bg = get("background"); return bg.children[1-1+bg.classList.contains("dark")]; } function safe_text(text) { text = text.replaceAll("<", "<"); text = text.replaceAll(">", ">"); text = text.replaceAll("&", "&"); return text; } function mk_entry(app) { return `
${safe_text(app["name"])}
${safe_text(app["desc"])}
`; } function config(key, value) { let def = CONFIG["ui"][key]; let val = localStorage.getItem(key); if (def == value && !val) return; if (value !== undefined) { localStorage.setItem(key, value); return; } if (!val) val = CONFIG["ui"][key].toString(); return val; } function get_bool(key) { return config(key) == "true"; } function load_config(conf) { CONFIG = JSON.parse(conf); let ui = CONFIG.ui; set("app-name", ui.name); set("app-desc", ui.desc); get("app-icon").src = ui.icon; if (ui.hosted_by) set("app-hostedby", ui.hosted_by); else get("app-hostedby").parentNode.style.display = "none"; load_apps(); }