- Move all inline <script> blocks (layout head/theme, topbar dark toggle, foot, paste, new, history, mine, settings, admin, unlock) to external files under internal/web/static/. Page data reaches scripts via data-* attributes (data-paste-id, data-default-dark) instead of template vars. - Replace inline onclick handlers (copy, delete, stats toggle) with addEventListener wiring. - Convert inline style="" attributes to CSS utility classes; swatch colors are now set via CSSOM/DOM APIs instead of innerHTML strings. - script-src/style-src are now plain 'self'; img-src data: stays for the SVG data-URI backgrounds. Verified with headless chromium: zero CSP violations on all pages in dark and light presets, theme swatches, admin lock, tables and paste view render correctly.
45 lines
1.8 KiB
JavaScript
45 lines
1.8 KiB
JavaScript
// #127: dark mode toggle: flips to the other variant of the active pair.
|
|
// #127: dark mode toggle - flips to the other variant of the active pair.
|
|
(function () {
|
|
var PAIRS = {
|
|
'midnight': { light: 'midnight-light', dark: 'midnight' },
|
|
'smooth': { light: 'smooth', dark: 'smooth-dark' },
|
|
'pastel-lavender': { light: 'pastel-lavender', dark: 'pastel-lavender-dark' },
|
|
'pastel-peach': { light: 'pastel-peach', dark: 'pastel-peach-dark' },
|
|
'pastel-cloud': { light: 'pastel-cloud', dark: 'pastel-cloud-dark' }
|
|
};
|
|
var root = document.documentElement;
|
|
function state() {
|
|
var p = root.dataset.preset || 'midnight';
|
|
for (var base in PAIRS) {
|
|
if (p === PAIRS[base].dark) return { base: base, dark: true };
|
|
if (p === PAIRS[base].light) return { base: base, dark: false };
|
|
}
|
|
return { base: 'midnight', dark: true };
|
|
}
|
|
function apply() {
|
|
var s = state();
|
|
document.body.classList.toggle('dark', s.dark);
|
|
root.classList.toggle('dark', s.dark);
|
|
}
|
|
function sync(btns) {
|
|
btns.forEach(function (b) {
|
|
b.setAttribute('aria-pressed', state().dark ? 'true' : 'false');
|
|
});
|
|
}
|
|
var btns = document.querySelectorAll('.dark-toggle');
|
|
apply();
|
|
sync(Array.prototype.slice.call(btns));
|
|
btns.forEach(function (b) {
|
|
b.addEventListener('click', function () {
|
|
var s = state();
|
|
var dark = !s.dark;
|
|
root.dataset.preset = dark ? PAIRS[s.base].dark : PAIRS[s.base].light;
|
|
try { localStorage.setItem('palette-dark', dark ? 'true' : 'false'); } catch (e) {}
|
|
apply();
|
|
sync(Array.prototype.slice.call(btns));
|
|
document.dispatchEvent(new CustomEvent('palette-darkchange'));
|
|
});
|
|
});
|
|
})();
|