File size: 5,632 Bytes
ce53bc1 | 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 | // Global JavaScript for MootVision AI
// Initialize Feather Icons
document.addEventListener('DOMContentLoaded', function() {
if (typeof feather !== 'undefined') {
feather.replace();
}
});
// Theme management
class ThemeManager {
constructor() {
this.currentTheme = 'light';
this.init();
}
init() {
// Check for saved theme preference or default to light
const savedTheme = localStorage.getItem('mootvision-theme');
if (savedTheme) {
this.setTheme(savedTheme);
}
}
setTheme(theme) {
this.currentTheme = theme;
document.documentElement.setAttribute('data-theme', theme);
localStorage.setItem('mootvision-theme', theme);
}
toggleTheme() {
const newTheme = this.currentTheme === 'light' ? 'dark' : 'light';
this.setTheme(newTheme);
}
}
// Initialize theme manager
const themeManager = new ThemeManager();
// API integration utilities
class API {
static baseURL = '/api';
static async get(endpoint) {
try {
const response = await fetch(`${this.baseURL}${endpoint}`);
return await response.json();
} catch (error) {
console.error('API Error:', error);
throw error;
}
}
static async post(endpoint, data) {
try {
const response = await fetch(`${this.baseURL}${endpoint}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data)
});
return await response.json();
} catch (error) {
console.error('API Error:', error);
throw error;
}
}
}
// Job progress tracking
class JobTracker {
constructor(jobId) {
this.jobId = jobId;
this.ws = null;
this.connect();
}
connect() {
this.ws = new WebSocket(`ws://localhost/api/ws/jobs/${this.jobId}`);
this.ws.onopen = () => {
console.log(`WebSocket connected for job ${this.jobId}`);
this.updateUI('connected');
};
this.ws.onmessage = (event) => {
const data = JSON.parse(event.data);
this.handleMessage(data);
};
this.ws.onclose = () => {
console.log(`WebSocket disconnected for job ${this.jobId}`);
setTimeout(() => this.connect(), 5000); // Reconnect after 5 seconds
};
}
handleMessage(data) {
switch (data.type) {
case 'progress':
this.updateProgress(data.progress);
break;
case 'log':
this.appendLog(data.message);
break;
case 'completed':
this.jobCompleted(data.results);
break;
case 'error':
this.jobError(data.error);
break;
}
}
updateProgress(progress) {
const progressBar = document.getElementById(`progress-${this.jobId}`);
const progressText = document.getElementById(`progress-text-${this.jobId}`);
if (progressBar) {
progressBar.style.width = `${progress}%`;
}
if (progressText) {
progressText.textContent = `${progress}%`;
}
}
appendLog(message) {
const logContainer = document.getElementById(`logs-${this.jobId}`);
if (logContainer) {
const logEntry = document.createElement('div');
logEntry.className = 'text-sm text-gray-600';
logEntry.textContent = `[${new Date().toLocaleTimeString()}] ${message}`;
logContainer.appendChild(logEntry);
logContainer.scrollTop = logContainer.scrollHeight;
}
}
jobCompleted(results) {
this.updateUI('completed');
if (typeof window.jobCompletedCallback === 'function') {
window.jobCompletedCallback(results);
}
}
jobError(error) {
this.updateUI('error');
console.error('Job error:', error);
}
updateUI(status) {
// Update UI based on job status
const jobElement = document.getElementById(`job-${this.jobId}`);
if (jobElement) {
jobElement.setAttribute('data-status', status);
}
}
}
// Utility functions
const Utils = {
formatFileSize(bytes) {
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (bytes === 0) return '0 Bytes';
const i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
return Math.round(bytes / Math.pow(1024, i) * 100) / 100 + ' ' + sizes[i];
},
formatDuration(seconds) {
const hours = Math.floor(seconds / 3600);
const minutes = Math.floor((seconds % 3600) / 60);
const secs = Math.floor(seconds % 60);
return `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${secs.toString().padStart(2, '0')}`;
},
debounce(func, wait) {
let timeout;
return function executedFunction(...args) {
const later = () => {
clearTimeout(timeout);
func(...args);
};
clearTimeout(timeout);
timeout = setTimeout(later, wait);
};
},
generateId() {
return Date.now().toString(36) + Math.random().toString(36).substr(2);
}
};
// Export for use in other modules
window.API = API;
window.JobTracker = JobTracker;
window.Utils = Utils;
window.themeManager = themeManager; |