Spaces:
Running
Running
File size: 8,830 Bytes
8afd545 ed41019 9e36fdf ed41019 8afd545 ed41019 8afd545 ed41019 8afd545 ed41019 9e36fdf 8afd545 ed41019 9e36fdf ed41019 8afd545 9e36fdf 8afd545 ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 8afd545 ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 8afd545 9e36fdf ed41019 9e36fdf 8afd545 ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 8afd545 9e36fdf 8afd545 9e36fdf 8afd545 9e36fdf 8afd545 ed41019 9e36fdf ed41019 9e36fdf ed41019 9e36fdf ed41019 8afd545 9e36fdf ed41019 8afd545 9e36fdf 8afd545 9e36fdf 8afd545 ed41019 9e36fdf ed41019 9e36fdf ed41019 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
// --- Existing Constants (remove theme button) ---
const registerSection = document.getElementById('register-section');
const loginSection = document.getElementById('login-section');
const welcomeSection = document.getElementById('welcome-section');
// ... other element constants ...
const notificationsDiv = document.getElementById('notifications');
const API_URL = '/api';
// const themeToggleButton = document.getElementById('theme-toggle'); // REMOVE
// --- Existing State Variables ---
let webSocket = null;
let authToken = localStorage.getItem('authToken');
// --- UI Control (showSection, setStatus - keep) ---
// ... showSection and setStatus functions remain the same ...
function showSection(sectionId) {
registerSection.style.display = 'none';
loginSection.style.display = 'none';
welcomeSection.style.display = 'none';
const sectionToShow = document.getElementById(sectionId);
if (sectionToShow) { sectionToShow.style.display = 'block'; }
else { loginSection.style.display = 'block'; }
}
function setStatus(element, message, isSuccess = false) {
element.textContent = message;
element.className = isSuccess ? 'status-message success' : 'status-message';
element.style.display = message ? 'block' : 'none';
}
// --- API Calls (apiRequest - keep) ---
// ... apiRequest function remains the same ...
async function apiRequest(endpoint, method = 'GET', body = null, token = null) {
const headers = { 'Content-Type': 'application/json' };
if (token) { headers['Authorization'] = `Bearer ${token}`; }
const options = { method: method, headers: headers };
if (body && method !== 'GET') { options.body = JSON.stringify(body); }
try {
const response = await fetch(`${API_URL}${endpoint}`, options);
const data = await response.json();
if (!response.ok) {
const errorMessage = data?.detail || response.statusText || `HTTP error ${response.status}`;
console.error("API Error:", errorMessage); throw new Error(errorMessage);
} return data;
} catch (error) { console.error(`API Error to ${endpoint}:`, error); throw error; }
}
// --- WebSocket Handling (connect/disconnectWebSocket, displayNotificationError - keep) ---
// ... connectWebSocket, disconnectWebSocket, displayNotificationError functions remain the same ...
function connectWebSocket(token) {
if (!token) { console.error("No token for WebSocket."); return; }
if (webSocket && webSocket.readyState === WebSocket.OPEN) { console.log("WS already open."); return; }
const wsProtocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
const wsUrl = `${wsProtocol}//${window.location.host}${API_URL}/ws/${token}`;
console.log("Connecting WebSocket:", wsUrl);
webSocket = new WebSocket(wsUrl);
webSocket.onopen = (event) => {
console.log("WS opened:", event);
if (notificationsDiv.querySelector('p em')) { notificationsDiv.innerHTML = ''; }
};
webSocket.onmessage = (event) => {
console.log("WS message received:", event.data);
try {
const messageData = JSON.parse(event.data);
if (messageData.type === 'new_user' && messageData.message) {
const p = document.createElement('p');
p.textContent = messageData.message;
notificationsDiv.insertBefore(p, notificationsDiv.firstChild);
while (notificationsDiv.children.length > 10) { notificationsDiv.removeChild(notificationsDiv.lastChild); }
}
} catch (error) { console.error("WS message parse error:", error); }
};
webSocket.onerror = (event) => { console.error("WS error:", event); displayNotificationError("WebSocket error occurred."); };
webSocket.onclose = (event) => {
console.log("WS closed:", event);
if (!event.wasClean) { displayNotificationError(`WebSocket disconnected (Code: ${event.code}). Refresh maybe needed.`); }
webSocket = null;
};
}
function disconnectWebSocket() {
if (webSocket) { console.log("Closing WS."); webSocket.close(); webSocket = null; }
}
function displayNotificationError(message) {
const p = document.createElement('p');
p.textContent = message;
p.style.color = 'orange';
p.style.fontWeight = 'bold';
notificationsDiv.insertBefore(p, notificationsDiv.firstChild);
}
// --- Authentication Logic (handleLogin, handleRegister, showWelcomePage, handleLogout - keep) ---
// ... handleLogin, handleRegister, showWelcomePage, handleLogout functions remain the same ...
async function handleLogin(email, password) {
setStatus(loginStatus, "Logging in...");
try {
const data = await apiRequest('/login', 'POST', { email, password });
if (data.access_token) {
authToken = data.access_token;
localStorage.setItem('authToken', authToken);
setStatus(loginStatus, "");
await showWelcomePage();
} else { throw new Error("No token received."); }
} catch (error) { setStatus(loginStatus, `Login failed: ${error.message}`); }
}
async function handleRegister(email, password) {
setStatus(registerStatus, "Registering...");
try {
const data = await apiRequest('/register', 'POST', { email, password });
setStatus(registerStatus, `Registration successful for ${data.email}! Please log in.`, true);
registerForm.reset();
showSection('login-section');
} catch (error) { setStatus(registerStatus, `Registration failed: ${error.message}`); }
}
async function showWelcomePage() {
if (!authToken) { showSection('login-section'); return; }
try {
const user = await apiRequest('/users/me', 'GET', null, authToken);
welcomeMessage.textContent = `Welcome, ${user.email}!`;
showSection('welcome-section');
connectWebSocket(authToken);
} catch (error) { console.error("Failed to fetch user:", error); handleLogout(); }
}
function handleLogout() {
authToken = null;
localStorage.removeItem('authToken');
disconnectWebSocket();
setStatus(loginStatus, "");
notificationsDiv.innerHTML = '<p><em>Notifications will appear here...</em></p>';
showSection('login-section');
}
// --- Theme Handling ---
function applyTheme(isDarkMode) {
if (isDarkMode) {
document.body.classList.add('dark-mode');
console.log("Applied dark theme.");
} else {
document.body.classList.remove('dark-mode');
console.log("Applied light theme.");
}
}
// --- Event Listeners (Forms & Logout) ---
registerForm.addEventListener('submit', (e) => {
e.preventDefault();
// ... (validation and call handleRegister - keep) ...
const email = document.getElementById('reg-email').value;
const password = document.getElementById('reg-password').value;
const confirmPassword = document.getElementById('reg-confirm-password').value;
if (password !== confirmPassword) { setStatus(registerStatus, "Passwords do not match."); return; }
if (password.length < 8) { setStatus(registerStatus, "Password must be >= 8 characters."); return; }
handleRegister(email, password);
});
loginForm.addEventListener('submit', (e) => {
e.preventDefault();
// ... (call handleLogin - keep) ...
const email = document.getElementById('login-email').value;
const password = document.getElementById('login-password').value;
handleLogin(email, password);
});
logoutButton.addEventListener('click', handleLogout);
// themeToggleButton.addEventListener('click', toggleTheme); // REMOVE
// --- Initial Page Load Logic ---
document.addEventListener('DOMContentLoaded', () => {
// System Theme Detection
const prefersDarkScheme = window.matchMedia('(prefers-color-scheme: dark)');
// Apply theme based on current system preference
applyTheme(prefersDarkScheme.matches);
// Listen for changes in system theme preference
try {
// Newer browsers
prefersDarkScheme.addEventListener('change', (e) => {
console.log("System theme preference changed.");
applyTheme(e.matches);
});
} catch (e1) {
try {
// Older browsers (legacy method)
prefersDarkScheme.addListener((e) => {
console.log("System theme preference changed (legacy listener).");
applyTheme(e.matches);
});
} catch (e2) {
console.error("Browser doesn't support dynamic theme changes via matchMedia listeners.");
}
}
// Check auth token after setting theme
if (authToken) {
console.log("Token found, showing welcome page.");
showWelcomePage();
} else {
console.log("No token found, showing login page.");
showSection('login-section');
}
}); |