mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-11 02:44:57 +08:00
62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
function arraysEqual(a, b) {
|
|
if (a === b) return true;
|
|
if (a == null || b == null) return false;
|
|
if (a.length !== b.length) return false;
|
|
for (let i = 0; i < a.length; i++) {
|
|
if (a[i] !== b[i]) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function decodeIfBase64(str) {
|
|
try {
|
|
let s = str.replace(/-/g, '+').replace(/_/g, '/');
|
|
while (s.length % 4) s += '=';
|
|
const decoded = decodeURIComponent(
|
|
atob(s).split('').map(c =>
|
|
'%' + c.charCodeAt(0).toString(16).padStart(2, '0')
|
|
).join('')
|
|
);
|
|
if (btoa(unescape(encodeURIComponent(decoded))).replace(/=+$/, '') === s.replace(/=+$/, '')) {
|
|
return decoded;
|
|
}
|
|
} catch (e) {}
|
|
return str;
|
|
}
|
|
|
|
function waitForElement(selector, callback) {
|
|
const el = document.querySelector(selector);
|
|
if (el) return callback(el);
|
|
const observer = new MutationObserver(() => {
|
|
const el = document.querySelector(selector);
|
|
if (el) {
|
|
observer.disconnect();
|
|
callback(el);
|
|
}
|
|
});
|
|
observer.observe(document.body, { childList: true, subtree: true });
|
|
}
|
|
|
|
function get_current_url() {
|
|
return window.location.origin + window.location.pathname;
|
|
}
|
|
|
|
function getOption(config, section, opt) {
|
|
let obj;
|
|
const id = `cbid.${config}.${section}.${opt}`;
|
|
obj = document.getElementsByName(id)[0] || document.getElementById(id);
|
|
if (obj) {
|
|
const combobox = document.getElementById('cbi.combobox.' + id);
|
|
if (combobox) {
|
|
obj.combobox = combobox;
|
|
}
|
|
const div = document.getElementById(id);
|
|
if (div && div.getElementsByTagName("li").length > 0) {
|
|
obj = div;
|
|
}
|
|
return obj;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|