2022-10-17 01:29:26 +02:00
|
|
|
import {showTemporaryTooltip} from '../../modules/tippy.js';
|
2023-10-05 03:08:19 +02:00
|
|
|
import {POST} from '../../modules/fetch.js';
|
2022-10-17 01:29:26 +02:00
|
|
|
|
2023-10-05 03:08:19 +02:00
|
|
|
const {appSubUrl} = window.config;
|
2022-10-17 01:29:26 +02:00
|
|
|
|
|
|
|
export function initAdminConfigs() {
|
2023-10-05 03:08:19 +02:00
|
|
|
const elAdminConfig = document.querySelector('.page-content.admin.config');
|
|
|
|
if (!elAdminConfig) return;
|
2022-10-17 01:29:26 +02:00
|
|
|
|
2023-10-05 03:08:19 +02:00
|
|
|
for (const el of elAdminConfig.querySelectorAll('input[type="checkbox"][data-config-dyn-key]')) {
|
|
|
|
el.addEventListener('change', async () => {
|
|
|
|
try {
|
|
|
|
const resp = await POST(`${appSubUrl}/admin/config`, {
|
|
|
|
data: new URLSearchParams({key: el.getAttribute('data-config-dyn-key'), value: el.checked}),
|
|
|
|
});
|
|
|
|
const json = await resp.json();
|
|
|
|
if (json.errorMessage) throw new Error(json.errorMessage);
|
|
|
|
} catch (ex) {
|
|
|
|
showTemporaryTooltip(el, ex.toString());
|
|
|
|
el.checked = !el.checked;
|
2022-10-17 01:29:26 +02:00
|
|
|
}
|
|
|
|
});
|
2023-10-05 03:08:19 +02:00
|
|
|
}
|
2022-10-17 01:29:26 +02:00
|
|
|
}
|