Files
StarFleetCPTN 16e7b7e6e5 refactor: Improve toast notification rendering and event handling
- Refactored the ShowToastJS function to create toast elements using DOM methods for better safety and maintainability.
- Changed the event listener for the 'showToast' event from document.body to document for improved event handling.
- Ensured that the message content is set using textContent to prevent potential XSS vulnerabilities.
2025-04-07 11:21:11 -07:00

466 lines
15 KiB
JavaScript

// Theme management for GoMFT application
document.addEventListener('DOMContentLoaded', function() {
initializeTheme();
initializeMobileSupport();
});
// Initialize theme based on user preference
function initializeTheme() {
const storedTheme = getCookie('theme');
if (storedTheme === 'dark') {
applyDarkTheme();
} else if (storedTheme === 'system') {
applySystemTheme();
} else {
// Default to light theme
applyLightTheme();
}
// Listen for theme changes from system
if (window.matchMedia) {
const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
// Add change listener
try {
// Chrome & Firefox
mediaQuery.addEventListener('change', (e) => {
if (getCookie('theme') === 'system') {
e.matches ? applyDarkTheme(false) : applyLightTheme(false);
}
});
} catch (e1) {
try {
// Safari
mediaQuery.addListener((e) => {
if (getCookie('theme') === 'system') {
e.matches ? applyDarkTheme(false) : applyLightTheme(false);
}
});
} catch (e2) {
console.error('Could not add media query listener', e2);
}
}
}
// Listen for theme changes via HTMX
document.body.addEventListener('htmx:afterRequest', function(event) {
if (event.detail.requestConfig && event.detail.requestConfig.path === '/profile/theme') {
// Refresh the theme after update
const updatedTheme = getCookie('theme');
applyTheme(updatedTheme);
}
});
}
// Toggle between light and dark theme
// Make toggleTheme global for onclick
window.toggleTheme = function() {
const currentTheme = document.documentElement.classList.contains('dark') ? 'dark' : 'light';
if (currentTheme === 'dark') {
applyLightTheme();
setCookie('theme', 'light', 365);
} else {
applyDarkTheme();
setCookie('theme', 'dark', 365);
}
// Add a subtle animation effect
document.body.classList.add('theme-transition');
setTimeout(() => {
document.body.classList.remove('theme-transition');
}, 500);
}
// Apply theme based on theme name
function applyTheme(theme) {
if (theme === 'dark') {
applyDarkTheme();
} else if (theme === 'system') {
applySystemTheme();
} else {
applyLightTheme();
}
}
// Apply dark theme
function applyDarkTheme() {
document.documentElement.classList.add('dark');
document.body.classList.add('dark');
localStorage.theme = 'dark';
// Apply dark theme to specific containers
const jobsContainer = document.getElementById('jobs-container');
const configsContainer = document.getElementById('configs-container');
if (jobsContainer) {
jobsContainer.classList.add('dark');
jobsContainer.style.backgroundColor = '#111827';
}
if (configsContainer) {
configsContainer.classList.add('dark');
configsContainer.style.backgroundColor = '#111827';
}
// Override any white backgrounds in card elements
document.querySelectorAll('.bg-white').forEach(function(element) {
element.classList.add('dark-mode-override');
element.classList.remove('bg-white');
element.classList.add('bg-gray-800');
});
updateThemeColors('dark');
}
// Apply light theme
function applyLightTheme() {
document.documentElement.classList.remove('dark');
document.body.classList.remove('dark');
localStorage.theme = 'light';
// Remove dark theme from specific containers
const jobsContainer = document.getElementById('jobs-container');
const configsContainer = document.getElementById('configs-container');
if (jobsContainer) {
jobsContainer.classList.remove('dark');
jobsContainer.style.backgroundColor = 'rgb(249, 250, 251)';
}
if (configsContainer) {
configsContainer.classList.remove('dark');
configsContainer.style.backgroundColor = 'rgb(249, 250, 251)';
}
// Restore white backgrounds
document.querySelectorAll('.dark-mode-override').forEach(function(element) {
element.classList.remove('dark-mode-override');
element.classList.remove('bg-gray-800');
element.classList.add('bg-white');
});
updateThemeColors('light');
}
// Apply system theme based on user's OS preference
function applySystemTheme() {
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
applyDarkTheme(true);
} else {
applyLightTheme(true);
}
// Store user preference in localStorage as a backup
localStorage.setItem('theme', 'system');
}
// Update theme colors
function updateThemeColors(theme) {
// This function can be expanded to update specific UI elements
// that might need special handling beyond CSS classes
// For example, updating charts, custom components, etc.
if (theme === 'dark') {
// Apply dark theme specific changes
// Ensure better contrast for text elements
const textElements = document.querySelectorAll('.text-gray-700, .text-gray-800, .text-gray-900, .text-secondary-700, .text-secondary-800, .text-secondary-900');
textElements.forEach(el => {
if (!el.classList.contains('dark:text-white') &&
!el.classList.contains('dark:text-gray-100') &&
!el.classList.contains('dark:text-gray-200') &&
!el.classList.contains('dark:text-secondary-100') &&
!el.classList.contains('dark:text-secondary-200')) {
el.classList.add('dark:text-secondary-200');
}
});
// Ensure better contrast for background elements
const bgElements = document.querySelectorAll('.bg-gray-800, .bg-gray-900, .bg-secondary-800, .bg-secondary-900');
bgElements.forEach(el => {
if (!el.classList.contains('dark:bg-gray-700') &&
!el.classList.contains('dark:bg-secondary-700')) {
el.classList.add('dark:bg-secondary-700');
}
});
// Apply custom animations for dark mode
document.body.classList.add('theme-dark-animation');
setTimeout(() => {
document.body.classList.remove('theme-dark-animation');
}, 500);
} else {
// Apply light theme specific changes
// Apply custom animations for light mode
document.body.classList.add('theme-light-animation');
setTimeout(() => {
document.body.classList.remove('theme-light-animation');
}, 500);
}
}
// Update theme toggle icon
function updateThemeToggleIcon(theme) {
const themeToggle = document.getElementById('theme-toggle');
if (!themeToggle) return;
const sunIcon = themeToggle.querySelector('.fa-sun');
const moonIcon = themeToggle.querySelector('.fa-moon');
if (theme === 'dark') {
if (sunIcon) sunIcon.classList.remove('hidden');
if (moonIcon) moonIcon.classList.add('hidden');
} else {
if (sunIcon) sunIcon.classList.add('hidden');
if (moonIcon) moonIcon.classList.remove('hidden');
}
}
// Helper function to get cookie value
function getCookie(name) {
const value = `; ${document.cookie}`;
const parts = value.split(`; ${name}=`);
if (parts.length === 2) return parts.pop().split(';').shift();
// Fallback to localStorage if cookie is not available
return localStorage.getItem(name) || '';
}
// Helper function to set cookie
function setCookie(name, value, days) {
let expires = '';
if (days) {
const date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = '; expires=' + date.toUTCString();
}
document.cookie = name + '=' + (value || '') + expires + '; path=/; SameSite=Strict';
}
// Closes the Flowbite modal with the given ID.
window.closeModal = function(modalId) {
// Get the modal element
const modalEl = document.getElementById(modalId);
if (!modalEl) {
console.error('Modal element not found:', modalId);
return;
}
// Assuming Flowbite's Modal class is available globally
// and initialized elsewhere (e.g., via data attributes or init script)
// Use try-catch in case FlowbiteInstances is not defined
try {
const modalInstance = FlowbiteInstances.getInstance('Modal', modalId);
if (modalInstance) {
modalInstance.hide();
} else {
console.warn('Flowbite Modal instance not found for ID:', modalId, '. Attempting manual hide or ensure Flowbite is initialized.');
// Basic fallback: Directly manipulate classes if Flowbite JS fails
modalEl.classList.add('hidden');
modalEl.classList.remove('flex'); // Assuming 'flex' is used to show
}
} catch (e) {
console.error('Error interacting with Flowbite:', e);
// Basic fallback: Directly manipulate classes if Flowbite JS fails
modalEl.classList.add('hidden');
modalEl.classList.remove('flex'); // Assuming 'flex' is used to show
}
}
// Function to show the modal (might be useful elsewhere)
window.showModal = function(modalId) {
const modalEl = document.getElementById(modalId);
if (!modalEl) {
console.error('Modal element not found:', modalId);
return;
}
// Use try-catch in case FlowbiteInstances is not defined
try {
const modalInstance = FlowbiteInstances.getInstance('Modal', modalId);
if (modalInstance) {
modalInstance.show();
} else {
// If instance doesn't exist, try creating one (requires Flowbite JS loaded)
// This assumes the modal element has the necessary data-modal attributes
console.warn('Flowbite Modal instance not found for ID:', modalId, '. Attempting to create instance or ensure Flowbite is initialized.');
try {
// Requires Flowbite constructor to be available
const newModal = new Modal(modalEl);
newModal.show();
} catch (createError) {
console.error('Failed to create Flowbite modal instance:', createError);
// Basic fallback: Directly manipulate classes if Flowbite JS fails
modalEl.classList.remove('hidden');
modalEl.classList.add('flex'); // Assuming 'flex' is used to show
}
}
} catch (e) {
console.error('Error interacting with Flowbite:', e);
// Basic fallback: Directly manipulate classes if Flowbite JS fails
modalEl.classList.remove('hidden');
modalEl.classList.add('flex'); // Assuming 'flex' is used to show
}
}
// Called when the file metadata delete confirmation button is clicked.
// Primarily closes the modal and sets flags; the actual delete is handled by hx-delete.
window.triggerFileDelete = function(dialogId, fileID, fileName) {
console.log(`Confirmed delete for file: ${fileName} (ID: ${fileID}). Closing modal: ${dialogId}`);
// Close the modal using the global function
if (typeof window.closeModal === 'function') {
window.closeModal(dialogId);
} else {
console.error('Global closeModal function not found.');
}
// Store data in a way that might be accessible to other event handlers (e.g., HTMX)
window.lastDeletedFile = {
id: fileID,
name: fileName
};
// Add custom marker to track this deletion (if needed by other scripts)
window.currentlyDeletingFile = true;
// Optional: Show a "Deleting..." toast here if desired.
// The hx-delete attribute on the button will trigger the actual backend request.
}
// Add CSS for theme transition animations
const style = document.createElement('style');
style.textContent = `
.theme-transition {
transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.theme-dark-animation {
animation: darkModeIn 0.5s ease forwards;
}
.theme-light-animation {
animation: lightModeIn 0.5s ease forwards;
}
@keyframes darkModeIn {
0% { opacity: 0.8; }
100% { opacity: 1; }
}
@keyframes lightModeIn {
0% { opacity: 0.8; }
100% { opacity: 1; }
}
`;
document.head.appendChild(style);
// Initialize mobile support features
function initializeMobileSupport() {
// Check if it's a mobile device
const isMobile = window.matchMedia('(max-width: 768px)').matches;
if (isMobile) {
// Add padding to main content to prevent overlap with bottom nav
const bottomNav = document.querySelector('.mobile-nav-container');
if (bottomNav) {
const main = document.querySelector('main');
if (main) {
main.style.paddingBottom = (bottomNav.offsetHeight + 16) + 'px';
}
}
// Add active class to current page in bottom nav
highlightCurrentPageInBottomNav();
// Make tables scrollable on mobile
makeTablesResponsive();
// Improve mobile form experience
enhanceMobileForms();
}
// Listen for orientation changes
window.addEventListener('orientationchange', function() {
// Wait for orientation change to complete
setTimeout(function() {
if (window.matchMedia('(max-width: 768px)').matches) {
makeTablesResponsive();
}
}, 300);
});
}
// Highlight current page in mobile bottom navigation
function highlightCurrentPageInBottomNav() {
const currentPath = window.location.pathname;
const bottomNavLinks = document.querySelectorAll('.mobile-nav-container a');
bottomNavLinks.forEach(link => {
const href = link.getAttribute('href');
if (currentPath === href || (href !== '/' && currentPath.startsWith(href))) {
link.classList.add('text-primary-600', 'dark:text-primary-400');
link.classList.remove('text-secondary-500', 'dark:text-secondary-400');
}
});
}
// Make tables responsive on mobile
function makeTablesResponsive() {
const tables = document.querySelectorAll('table');
tables.forEach(table => {
if (!table.parentElement.classList.contains('table-responsive')) {
const wrapper = document.createElement('div');
wrapper.classList.add('table-responsive');
table.parentNode.insertBefore(wrapper, table);
wrapper.appendChild(table);
}
});
}
// Enhance mobile forms
function enhanceMobileForms() {
// Prevent zooming on inputs in iOS
const metaViewport = document.querySelector('meta[name=viewport]');
if (metaViewport) {
metaViewport.setAttribute('content', 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0');
}
// Add 'required' visual indicator to required fields
const requiredInputs = document.querySelectorAll('input[required], select[required], textarea[required]');
requiredInputs.forEach(input => {
const label = input.previousElementSibling;
if (label && label.tagName === 'LABEL') {
if (!label.innerHTML.includes('*')) {
label.innerHTML += ' <span class="text-red-500">*</span>';
}
}
});
// Improve date input on mobile
const dateInputs = document.querySelectorAll('input[type="date"]');
dateInputs.forEach(input => {
input.addEventListener('focus', function() {
input.click(); // Force native date picker on mobile
});
});
}
// Listen for custom 'showToast' event triggered by HX-Trigger
document.addEventListener('showToast', function(event) { // Changed from document.body
// Debug logs removed
if (event.detail && event.detail.message && event.detail.type) {
// Call the globally defined showToast function from toast_js.templ
if (typeof showToast === 'function') {
showToast(event.detail.message, event.detail.type);
} else {
console.error('showToast function not found. Ensure toast_js.templ is loaded.');
}
} else {
console.warn('Received showToast event without expected detail:', event.detail);
}
});