philomena/assets/js/settings.ts

29 lines
815 B
TypeScript
Raw Normal View History

2019-10-05 02:09:52 +02:00
/**
* Settings.
*/
import { $, $$ } from './utils/dom';
import store from './utils/store';
export function setupSettings() {
if (!$<HTMLElement>('#js-setting-table')) return;
2019-10-05 02:09:52 +02:00
const localCheckboxes = $$<HTMLInputElement>('[data-tab="local"] input[type="checkbox"]');
const themeSelect = $<HTMLSelectElement>('#user_theme');
const styleSheet = $<HTMLLinkElement>('head link[rel="stylesheet"]');
2019-10-05 02:09:52 +02:00
// Local settings
localCheckboxes.forEach(checkbox => {
checkbox.addEventListener('change', () => {
store.set(checkbox.id.replace('user_', ''), checkbox.checked);
2019-10-05 02:09:52 +02:00
});
});
// Theme preview
themeSelect && themeSelect.addEventListener('change', () => {
if (styleSheet) {
styleSheet.href = themeSelect.options[themeSelect.selectedIndex].dataset.themePath || '#';
}
2019-10-05 02:09:52 +02:00
});
}