Replace the single-icon popover with a dropdown of radio inputs with a compact two-button toggle (light/dark), inspired by vale.rocks' design: clicking an icon forces that theme, clicking the active icon again returns to following the system preference. Keeps the existing light-dark() colour-scheme mechanism and view-transition wipe animation, and reuses the project's existing Fluent UI sun/moon icons. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Fn4aNjE3ofpDM78F4qmdCV
61 lines
2 KiB
JavaScript
61 lines
2 KiB
JavaScript
class ThemeSelector {
|
|
constructor() {
|
|
this.widget = document.querySelector('#theme-selector');
|
|
this.btnLight = this.widget.querySelector('#btn-light');
|
|
this.btnDark = this.widget.querySelector('#btn-dark');
|
|
this.status = this.widget.querySelector('#theme-status');
|
|
this.currentTheme = 'system';
|
|
}
|
|
|
|
setupEventListeners() {
|
|
this.btnLight.addEventListener('click', () => {
|
|
this.applyTheme(this.currentTheme === 'light' ? 'system' : 'light');
|
|
});
|
|
|
|
this.btnDark.addEventListener('click', () => {
|
|
this.applyTheme(this.currentTheme === 'dark' ? 'system' : 'dark');
|
|
});
|
|
}
|
|
|
|
applyTheme(theme) {
|
|
const selectedTheme = (theme === 'light' || theme === 'dark') ? theme : 'light dark';
|
|
|
|
const systemTheme = (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) ? 'dark' : 'light';
|
|
const html = document.documentElement;
|
|
let currentColorScheme = html.style.getPropertyValue('color-scheme');
|
|
if (currentColorScheme === '') {
|
|
currentColorScheme = 'light dark';
|
|
}
|
|
|
|
/* do we need to transition */
|
|
let doTransition = false;
|
|
|
|
if (selectedTheme !== currentColorScheme) {
|
|
if (selectedTheme === 'light dark') {
|
|
doTransition = currentColorScheme !== systemTheme;
|
|
} else if (currentColorScheme === 'light dark') {
|
|
doTransition = selectedTheme !== systemTheme;
|
|
} else {
|
|
doTransition = true;
|
|
}
|
|
}
|
|
|
|
const applyChange = () => {
|
|
this.currentTheme = theme;
|
|
html.style.setProperty('color-scheme', selectedTheme);
|
|
|
|
this.btnLight.setAttribute('aria-pressed', String(theme === 'light'));
|
|
this.btnDark.setAttribute('aria-pressed', String(theme === 'dark'));
|
|
this.status.textContent = theme === 'system' ? 'Theme set to system default' : '';
|
|
};
|
|
|
|
html.style.viewTransitionName = 'changing-theme';
|
|
if (doTransition && document.startViewTransition) {
|
|
document.startViewTransition(applyChange);
|
|
} else {
|
|
applyChange();
|
|
}
|
|
}
|
|
}
|
|
|
|
export { ThemeSelector };
|