update pwd change

This commit is contained in:
wjqserver 2025-06-22 17:23:41 +08:00
parent b91daad8ad
commit 47b6f4903f
13 changed files with 572 additions and 90 deletions

59
frontend/js/common.js Normal file
View file

@ -0,0 +1,59 @@
// js/common.js - 存放共享模块
const theme = {
init: (toggleElement) => {
const storedTheme = localStorage.getItem('theme');
const systemPrefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
const currentTheme = storedTheme || (systemPrefersDark ? 'dark' : 'light');
theme.apply(currentTheme);
if (toggleElement) {
toggleElement.addEventListener('change', (e) => theme.apply(e.target.checked ? 'dark' : 'light'));
}
},
apply: (themeName) => {
document.documentElement.dataset.theme = themeName;
localStorage.setItem('theme', themeName);
const themeToggleInput = document.getElementById('theme-toggle-input');
if (themeToggleInput) {
themeToggleInput.checked = themeName === 'dark';
}
}
};
function hideToast(toastElement) {
if (!toastElement) return;
toastElement.classList.remove('show');
toastElement.addEventListener('transitionend', () => toastElement.remove(), { once: true });
}
const toast = {
show: (message, type = 'info', duration = 3000) => {
const toastContainer = document.getElementById('toast-container');
if (!toastContainer) return;
const icons = { success: 'fa-check-circle', error: 'fa-times-circle', info: 'fa-info-circle' };
const iconClass = icons[type] || 'fa-info-circle';
const toastElement = document.createElement('div');
toastElement.className = `toast ${type}`;
toastElement.innerHTML = `<i class="toast-icon fa-solid ${iconClass}"></i><p class="toast-message">${message}</p><button class="toast-close" data-toast-close>×</button>`;
toastContainer.appendChild(toastElement);
requestAnimationFrame(() => toastElement.classList.add('show'));
const timeoutId = setTimeout(() => hideToast(toastElement), duration);
toastElement.querySelector('[data-toast-close]').addEventListener('click', () => {
clearTimeout(timeoutId);
hideToast(toastElement);
});
}
};
function activateNav(pageId) {
const navLinks = document.querySelectorAll('.sidebar-nav a');
navLinks.forEach(link => {
link.classList.remove('active');
if (link.dataset.navId === pageId) {
link.classList.add('active');
}
});
}
// 导出模块
export { theme, toast, activateNav };