Files
quantumbotx/static/js/main.js
T
Reynov Christian aa984c4909 Refactor and update bot management and routing
- Update `.gitignore` to include `lab/` for backtesting and raw data.
- Refactor `app.py` to improve error handling and logging.
- Remove deprecated files: `core/bot_logic.py`, `core/bots/base_bot.py`, `core/bots/manager.py`, `core/db/database.py`, `core/routes/api_analysis.py`, `core/routes/api_bots_analysis.py`, `core/strategies/logic_ma.py`, `core/strategies/logic_rsi.py`.
- Modify multiple files to enhance bot management, routing, and strategy handling.
- Update JavaScript and HTML templates for better UI and functionality.
2025-07-31 21:33:44 +08:00

34 lines
1.2 KiB
JavaScript

// static/js/main.js
document.addEventListener('DOMContentLoaded', function() {
// --- Logika untuk Sidebar Toggle ---
const sidebarToggle = document.getElementById('sidebar-toggle');
if (sidebarToggle) {
sidebarToggle.addEventListener('click', function() {
document.getElementById('sidebar').classList.toggle('collapsed');
});
}
// --- Logika untuk Notifikasi Real-time ---
const notificationDot = document.getElementById('notification-dot');
async function checkUnreadNotifications() {
if (!notificationDot) return; // Jangan jalankan jika elemen tidak ada
try {
const response = await fetch('/api/notifications/unread-count');
const data = await response.json();
if (data.unread_count > 0) {
notificationDot.classList.remove('hidden');
} else {
notificationDot.classList.add('hidden');
}
} catch (error) {
console.error('Gagal memeriksa notifikasi:', error);
}
}
// Periksa saat halaman dimuat, lalu periksa setiap 15 detik
checkUnreadNotifications();
setInterval(checkUnreadNotifications, 15000);
});