73 lines
2.3 KiB
JavaScript
73 lines
2.3 KiB
JavaScript
/* global KEEP */
|
|
|
|
KEEP.initModeToggle = () => {
|
|
|
|
KEEP.utils.modeToggle = {
|
|
|
|
localStorageKey: 'KEEP',
|
|
modeToggleButton_dom: document.querySelector('.tool-dark-light-toggle'),
|
|
iconDom: document.querySelector('.tool-dark-light-toggle i'),
|
|
articleContent: document.querySelector('.main-content'),
|
|
|
|
setItemUtil(modeClass, prefersColorScheme) {
|
|
document.body.classList.toggle(modeClass);
|
|
const isDark = document.body.className.indexOf(modeClass) === -1;
|
|
|
|
if (isDark) {
|
|
this.iconDom.className = 'fas fa-moon';
|
|
this.articleContent.classList.remove('night-code-theme');
|
|
} else {
|
|
this.iconDom.className = 'fas fa-sun';
|
|
this.articleContent.classList.add('night-code-theme');
|
|
}
|
|
KEEP.styleStatus.isDark = isDark;
|
|
KEEP.styleStatus.prefersColorScheme = prefersColorScheme;
|
|
KEEP.setStyleStatus();
|
|
},
|
|
|
|
initModeStatus() {
|
|
const styleStatus = KEEP.getStyleStatus();
|
|
if (styleStatus) {
|
|
if (styleStatus.prefersColorScheme === 'dark') {
|
|
if (styleStatus.isDark) {
|
|
document.body.classList.remove('light-mode');
|
|
this.articleContent.classList.remove('night-code-theme');
|
|
this.iconDom.className = 'fas fa-sun';
|
|
} else {
|
|
document.body.classList.add('light-mode');
|
|
this.articleContent.classList.add('night-code-theme');
|
|
this.iconDom.className = 'fas fa-moon';
|
|
}
|
|
} else {
|
|
|
|
if (styleStatus.isDark) {
|
|
document.body.classList.remove('dark-mode');
|
|
this.articleContent.classList.remove('night-code-theme');
|
|
this.iconDom.className = 'fas fa-moon';
|
|
} else {
|
|
document.body.classList.add('dark-mode');
|
|
this.articleContent.classList.add('night-code-theme');
|
|
this.iconDom.className = 'fas fa-sun';
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
},
|
|
|
|
initModeToggleButton() {
|
|
this.modeToggleButton_dom.addEventListener('click', () => {
|
|
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
this.setItemUtil('light-mode', 'dark');
|
|
} else {
|
|
this.setItemUtil('dark-mode', 'light');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
KEEP.utils.modeToggle.initModeStatus();
|
|
KEEP.utils.modeToggle.initModeToggleButton();
|
|
|
|
};
|