Spaces:
Running
Running
File size: 17,986 Bytes
d833ce9 9121aae d833ce9 9121aae d833ce9 | 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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | /**
* agents-controller.js - Agent Profile Dashboard Controller
* ==========================================================
* Handles agent list, detail views, charts, search, and sort.
* * Hardened for Enterprise MVC:
* - Uses central `apiFetch` to automatically inherit HTTP-Only Cookies and CSRF headers.
* - Uses `SecurityUtils` for XSS-safe DOM generation.
* - Uses `ErrorHandler` for standardized exception recovery.
*/
(function() {
'use strict';
let allAgents = [];
let currentAgentId = null;
let f1TrendChart = null;
let qualityRadarChart = null;
// DOM Elements
const agentsListView = document.getElementById('agents-list-view');
const agentDetailView = document.getElementById('agent-detail-view');
const agentsGrid = document.getElementById('agents-grid');
const agentsEmptyState = document.getElementById('agents-empty-state');
const agentSearch = document.getElementById('agent-search');
const sortSelect = document.getElementById('sort-select');
const backToListBtn = document.getElementById('back-to-list-btn');
const reindexAgentBtn = document.getElementById('reindex-agent-btn');
// Stats elements
const totalAgentsEl = document.getElementById('total-agents');
const avgF1ScoreEl = document.getElementById('avg-f1-score');
const improvingCountEl = document.getElementById('improving-count');
const decliningCountEl = document.getElementById('declining-count');
// Detail elements
const detailAgentName = document.getElementById('detail-agent-name');
const detailAgentEmail = document.getElementById('detail-agent-email');
const detailTotalAudits = document.getElementById('detail-total-audits');
const detailAvgF1 = document.getElementById('detail-avg-f1');
const detailTrend = document.getElementById('detail-trend');
const detailRiskFlags = document.getElementById('detail-risk-flags');
// Safe HTML Escaping (Fallback to native if SecurityUtils isn't loaded yet)
const escapeHTML = (text) => {
if (window.SecurityUtils) return window.SecurityUtils.escapeHTML(text);
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
};
async function init() {
await loadAgents();
setupEventListeners();
}
async function loadAgents() {
if (window.toggleLoader) window.toggleLoader(true, 'Synchronizing agent profiles...');
try {
// Enterprise Architecture: Centralized apiFetch handles CSRF and Cookies automatically
const data = await window.apiFetch('/agents');
if (data.success) {
allAgents = data.agents || [];
renderAgentsList(allAgents);
updateStatsBar(allAgents);
}
} catch (error) {
console.error('[Agents] Load failed:', error);
if (window.ErrorHandler) {
window.ErrorHandler.showError(error);
} else if (window.SecurityUtils) {
window.SecurityUtils.showToast('Failed to load agents', 'error');
}
if (agentsGrid) agentsGrid.innerHTML = '';
if (agentsEmptyState) agentsEmptyState.hidden = false;
updateStatsBar([]);
} finally {
if (window.toggleLoader) window.toggleLoader(false);
}
}
function renderAgentsList(agents) {
if (!agentsGrid || !agentsEmptyState) return;
if (!agents || agents.length === 0) {
agentsGrid.innerHTML = '';
agentsEmptyState.hidden = false;
return;
}
agentsEmptyState.hidden = true;
agentsGrid.innerHTML = agents.map(agent => {
const stats = agent.stats || {};
const trendIcon = getTrendIcon(stats.trend_direction);
const trendClass = getTrendClass(stats.trend_direction);
const f1Score = (stats.avg_f1_score || 0).toFixed(2);
return `
<div class="agent-card" data-agent-id="${escapeHTML(agent.agent_id)}" role="button" tabindex="0">
<div class="agent-card-header">
<div class="agent-avatar"><span class="material-symbols-rounded">person</span></div>
<div class="agent-info">
<h3 class="agent-name">${escapeHTML(agent.name || 'Unknown')}</h3>
<p class="agent-email">${escapeHTML(agent.email || '')}</p>
</div>
<div class="trend-indicator ${trendClass}"><span class="material-symbols-rounded">${trendIcon}</span></div>
</div>
<div class="agent-stats">
<div class="agent-stat-row"><span class="agent-stat-label">F1 Score</span><span class="agent-stat-value f1-score">${f1Score}</span></div>
<div class="agent-stat-row"><span class="agent-stat-label">Audits</span><span class="agent-stat-value">${escapeHTML(stats.total_audits || 0)}</span></div>
<div class="agent-stat-row"><span class="agent-stat-label">Risk</span><span class="agent-stat-value risk-flags">${escapeHTML((stats.red_risk_count || 0) + (stats.amber_risk_count || 0))}</span></div>
</div>
<div class="agent-card-footer">
<span class="agent-last-audit">Last: ${escapeHTML(formatDate(stats.last_audit_at))}</span>
</div>
</div>
`;
}).join('');
document.querySelectorAll('.agent-card').forEach(card => {
card.addEventListener('click', () => loadAgentDetail(card.dataset.agentId));
card.addEventListener('keydown', (e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
loadAgentDetail(card.dataset.agentId);
}
});
});
}
function updateStatsBar(agents) {
const total = agents.length;
const avg = total > 0 ? (agents.reduce((s, a) => s + (a.stats?.avg_f1_score || 0), 0) / total).toFixed(2) : '0.00';
if (totalAgentsEl) totalAgentsEl.textContent = total;
if (avgF1ScoreEl) avgF1ScoreEl.textContent = avg;
if (improvingCountEl) improvingCountEl.textContent = agents.filter(a => a.stats?.trend_direction === 'improving').length;
if (decliningCountEl) decliningCountEl.textContent = agents.filter(a => a.stats?.trend_direction === 'declining').length;
}
async function loadAgentDetail(agentId) {
currentAgentId = agentId;
if (window.toggleLoader) window.toggleLoader(true, 'Loading profile...');
try {
const data = await window.apiFetch(`/agents/${agentId}`);
if (data.success) {
renderAgentDetail(data.agent);
showDetailView();
}
} catch (error) {
console.error('[Agents] Profile load failed:', error);
if (window.ErrorHandler) {
window.ErrorHandler.showError(error);
} else if (window.SecurityUtils) {
window.SecurityUtils.showToast('Failed to load agent profile', 'error');
}
} finally {
if (window.toggleLoader) window.toggleLoader(false);
}
}
function renderAgentDetail(agent) {
const s = agent.stats || {};
if (detailAgentName) {
detailAgentName.textContent = agent.name || 'Unknown';
// Accessibility / UX: expose the full name on hover via title and aria-label
detailAgentName.title = agent.name || '';
detailAgentName.setAttribute('aria-label', agent.name || 'Agent Name');
}
if (detailAgentEmail) {
detailAgentEmail.textContent = agent.email || '';
detailAgentEmail.title = agent.email || '';
}
if (detailTotalAudits) detailTotalAudits.textContent = s.total_audits || 0;
if (detailAvgF1) detailAvgF1.textContent = (s.avg_f1_score || 0).toFixed(2);
if (detailTrend) {
detailTrend.textContent = (s.trend_direction || 'stable').toUpperCase();
detailTrend.className = `detail-stat-value trend-${s.trend_direction || 'stable'}`;
}
if (detailRiskFlags) detailRiskFlags.textContent = (s.red_risk_count || 0) + (s.amber_risk_count || 0);
if (window.Chart) {
renderF1TrendChart(agent.score_history || []);
renderQualityRadarChart(s);
}
renderScoreHistoryTable(agent.score_history || []);
if (reindexAgentBtn) reindexAgentBtn.dataset.agentId = agent.agent_id;
}
function renderF1TrendChart(history) {
const ctx = document.getElementById('f1-trend-chart')?.getContext('2d');
if (!ctx) return;
if (f1TrendChart) f1TrendChart.destroy();
// Ensure history is chronological for standard L-to-R line chart
const data = history.slice().reverse().map(h => h.f1_score || 0);
const labels = data.map((_, i) => `A${i+1}`);
// CSS Variable support for themes
const rootStyles = getComputedStyle(document.documentElement);
const primaryColor = rootStyles.getPropertyValue('--md-primary').trim() || '#14B8A6';
const primaryLight = 'rgba(20, 184, 166, 0.1)';
f1TrendChart = new Chart(ctx, {
type: 'line',
data: {
labels,
datasets: [{
label: 'F1 Score',
data,
borderColor: primaryColor,
backgroundColor: primaryLight,
fill: true,
tension: 0.4
}]
},
options: {
responsive: true,
plugins: { legend: { display: false } },
scales: {
y: { min: 0, max: 1 },
x: { ticks: { maxTicksLimit: 10 } }
}
}
});
}
function renderQualityRadarChart(stats) {
const ctx = document.getElementById('quality-radar-chart')?.getContext('2d');
if (!ctx) return;
if (qualityRadarChart) qualityRadarChart.destroy();
const rootStyles = getComputedStyle(document.documentElement);
const accentColor = rootStyles.getPropertyValue('--md-secondary').trim() || '#a78bfa';
const accentLight = 'rgba(167, 139, 250, 0.2)';
qualityRadarChart = new Chart(ctx, {
type: 'radar',
data: {
labels: ['Empathy', 'Efficiency', 'Listening', 'Language', 'Bias'],
datasets: [{
data: [stats.avg_empathy||0, stats.avg_efficiency||0, stats.avg_listening||0, stats.avg_language||0, stats.avg_bias||0],
borderColor: accentColor,
backgroundColor: accentLight,
pointBackgroundColor: accentColor
}]
},
options: {
responsive: true,
plugins: { legend: { display: false } },
scales: { r: { beginAtZero: true, max: 10, ticks: { display: false } } }
}
});
}
function renderScoreHistoryTable(history) {
const table = document.getElementById('score-history-table');
if (!table) return;
if (!history.length) {
table.innerHTML = '<p class="empty-message">No history found</p>';
return;
}
table.innerHTML = `
<table class="audit-history-table">
<thead><tr><th>Date</th><th>F1</th><th>Risk</th><th>Actions</th></tr></thead>
<tbody>
${history.slice(0, 10).map(h => `
<tr>
<td>${escapeHTML(formatDate(h.audited_at))}</td>
<td><span class="f1-badge">${(h.f1_score || 0).toFixed(2)}</span></td>
<td><span class="risk-badge risk-${(h.compliance_risk || 'green').toLowerCase()}">${escapeHTML(h.compliance_risk || 'Green')}</span></td>
<td><a href="/audit?id=${escapeHTML(h.audit_id)}" class="view-audit-link">View</a></td>
</tr>
`).join('')}
</tbody>
</table>
`;
// Ensure navigation works: if we're already on the Audit workspace,
// load the audit in-place; otherwise perform a full navigation to
// `/audit?id=...` so the audit page renders the dashboard exactly
// as it appears in the archive view.
const links = table.querySelectorAll('.view-audit-link');
links.forEach(link => {
link.addEventListener('click', (e) => {
// Allow user to open in new tab/window
if (e.ctrlKey || e.metaKey || e.button === 1) return;
e.preventDefault();
try {
const href = link.getAttribute('href') || '';
const qs = href.split('?')[1] || '';
const params = new URLSearchParams(qs);
const auditId = params.get('id');
// If we're already on the Audit page, prefer the in-page loader.
const onAuditPage = !!document.getElementById('page-audit-main');
if (onAuditPage && auditId && typeof window.loadAuditDetails === 'function') {
window.loadAuditDetails(auditId);
return;
}
// Otherwise navigate to the audit page so it can render the
// full audit dashboard (archive-like experience).
if (href) window.location.href = href;
} catch (err) {
const href = link.getAttribute('href');
if (href) window.location.href = href;
}
});
});
}
function searchAgents(term) {
const t = term.toLowerCase().trim();
renderAgentsList(t ? allAgents.filter(a => (a.name||'').toLowerCase().includes(t) || (a.email||'').toLowerCase().includes(t)) : allAgents);
}
function sortAgents(sortBy) {
const sorted = [...allAgents].sort((a, b) => {
if (sortBy === 'f1_desc') return (b.stats?.avg_f1_score || 0) - (a.stats?.avg_f1_score || 0);
if (sortBy === 'f1_asc') return (a.stats?.avg_f1_score || 0) - (b.stats?.avg_f1_score || 0);
if (sortBy === 'name_asc') return (a.name || '').localeCompare(b.name || '');
if (sortBy === 'audits_desc') return (b.stats?.total_audits || 0) - (a.stats?.total_audits || 0);
return 0;
});
renderAgentsList(sorted);
}
async function reindexAgent() {
if (!currentAgentId) return;
if (window.SecurityUtils && reindexAgentBtn) {
window.SecurityUtils.setButtonLoading(reindexAgentBtn, true);
}
try {
const data = await window.apiFetch(`/agents/${currentAgentId}/reindex`, { method: 'POST' });
if (data.success) {
if (window.SecurityUtils) window.SecurityUtils.showToast('Profile reindex queued.', 'success');
setTimeout(() => loadAgentDetail(currentAgentId), 2000);
}
} catch (error) {
if (window.ErrorHandler) {
window.ErrorHandler.showError(error);
} else if (window.SecurityUtils) {
window.SecurityUtils.showToast('Reindex failed', 'error');
}
} finally {
if (window.SecurityUtils && reindexAgentBtn) {
window.SecurityUtils.setButtonLoading(reindexAgentBtn, false);
}
}
}
function showDetailView() {
if (agentsListView) agentsListView.classList.remove('active');
if (agentDetailView) agentDetailView.classList.add('active');
window.scrollTo(0,0);
}
function showListView() {
if (agentDetailView) agentDetailView.classList.remove('active');
if (agentsListView) agentsListView.classList.add('active');
currentAgentId = null;
}
function setupEventListeners() {
if (agentSearch) agentSearch.addEventListener('input', e => searchAgents(e.target.value));
if (sortSelect) sortSelect.addEventListener('change', e => sortAgents(e.target.value));
if (backToListBtn) backToListBtn.addEventListener('click', showListView);
if (reindexAgentBtn) reindexAgentBtn.addEventListener('click', reindexAgent);
// Auto-load when agents tab is clicked
const agentsTab = document.querySelector('[data-tab="agents"]');
if (agentsTab) {
agentsTab.addEventListener('click', () => {
// Short timeout to allow panel transition
setTimeout(() => {
if (allAgents.length === 0) loadAgents();
}, 50);
});
}
}
// Helpers
function getTrendIcon(t) { return t === 'improving' ? 'trending_up' : t === 'declining' ? 'trending_down' : 'trending_flat'; }
function getTrendClass(t) { return `trend-${t || 'stable'}`; }
function formatDate(d) { return d ? new Date(d).toLocaleDateString() : 'Never'; }
// Init
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init);
} else {
init();
}
// Expose reload capability globally
window.AgentsController = {
reload: () => loadAgents(),
showList: showListView
};
})(); |