Fix issue #290: ViewTransitions on Layout.astro disables the theme

This commit is contained in:
prototypa
2023-12-03 12:17:47 -05:00
parent 132788934f
commit c08360233d

View File

@ -17,6 +17,7 @@ import { UI } from '~/utils/config';
}
}
const initTheme = function () {
if ((defaultTheme && defaultTheme.endsWith(':only')) || (!localStorage.theme && defaultTheme !== 'system')) {
applyTheme(defaultTheme.replace(':only', ''));
} else if (
@ -27,6 +28,8 @@ import { UI } from '~/utils/config';
} else {
applyTheme('light');
}
};
initTheme();
function attachEvent(selector, event, fn) {
const matches = typeof selector === 'string' ? document.querySelectorAll(selector) : selector;
@ -134,12 +137,13 @@ import { UI } from '~/utils/config';
document.getElementById('header')?.classList.remove('h-screen');
document.getElementById('header')?.classList.remove('expanded');
document.querySelector('#header nav')?.classList.add('hidden');
}
};
window.onload = onLoad;
window.onpageshow = onPageShow;
document.addEventListener('astro:after-swap', () => {
initTheme();
onLoad();
onPageShow();
});