secubox-openwrt/package/secubox/luci-app-media-flow/htdocs/luci-static/resources/view/media-flow/clients.js
CyberMind-FR f86b67ce13 fix(media-flow): Fix dashboard theming and flow count display
- Add SecuBox dark theme initialization to all views (dashboard, alerts,
  clients, services, history)
- Fix flow count detection by using jsonfilter instead of jq (OpenWrt native)
- Prioritize /var/run/netifyd/status.json for ndpid-compat flow data
- Remove filtering expect{} from API.getActiveStreams() RPC declaration
- Update CLAUDE.md with jsonfilter usage guidelines for OpenWrt

The dashboard now correctly displays:
- Total Flows count from nDPId via ndpid-compat
- nDPId/Netifyd status indicators
- SecuBox dark theme with portal header

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-13 07:31:21 +01:00

120 lines
4.2 KiB
JavaScript

'use strict';
'require view';
'require ui';
'require media-flow/api as API';
'require media-flow/nav as NavHelper';
'require secubox-portal/header as SbHeader';
return L.view.extend({
// Initialize SecuBox dark theme
initTheme: function() {
document.documentElement.setAttribute('data-theme', 'dark');
document.body.classList.add('secubox-mode');
if (!document.getElementById('mf-theme-styles')) {
var themeStyle = document.createElement('style');
themeStyle.id = 'mf-theme-styles';
themeStyle.textContent = 'body.secubox-mode { background: #0a0a0f !important; } body.secubox-mode .main-right, body.secubox-mode #maincontent, body.secubox-mode .container { background: transparent !important; }';
document.head.appendChild(themeStyle);
}
},
load: function() {
return Promise.all([
API.getStatsByClient()
]);
},
render: function(data) {
this.initTheme();
var statsByClient = data[0] || {};
var clients = statsByClient.clients || {};
var css = `
.mf-page { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #e4e4e7; }
.mf-header { margin-bottom: 24px; }
.mf-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.mf-subtitle { color: #a1a1aa; font-size: 0.875rem; }
.mf-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; overflow: hidden; }
.mf-table { width: 100%; border-collapse: collapse; }
.mf-table th { text-align: left; padding: 12px 16px; font-size: 0.75rem; text-transform: uppercase; color: #71717a; border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255,255,255,0.02); font-weight: 600; }
.mf-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.mf-table tr:hover td { background: rgba(255, 255, 255, 0.03); }
.mf-empty { text-align: center; padding: 48px 20px; color: #71717a; }
.mf-empty-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.5; }
@media (max-width: 768px) {
.mf-card { overflow-x: auto; }
.mf-table { font-size: 0.9rem; }
.mf-table th, .mf-table td { padding: 10px 8px; }
}
@media (max-width: 480px) {
.mf-title { font-size: 1.25rem; }
.mf-table { font-size: 0.8rem; }
.mf-table th, .mf-table td { padding: 8px 4px; }
}
`;
var container = E('div', { 'class': 'mf-page' }, [
E('style', {}, css),
E('link', { 'rel': 'stylesheet', 'href': L.resource('media-flow/common.css') }),
NavHelper.renderTabs('clients'),
E('div', { 'class': 'mf-header' }, [
E('div', { 'class': 'mf-title' }, ['👥 ', _('Clients Statistics')]),
E('div', { 'class': 'mf-subtitle' }, _('Streaming activity per client'))
])
]);
var clientsList = Object.keys(clients);
if (clientsList.length === 0) {
container.appendChild(E('div', { 'class': 'mf-card' }, [
E('div', { 'class': 'mf-empty' }, [
E('div', { 'class': 'mf-empty-icon' }, '👥'),
E('div', {}, _('No client data available yet'))
])
]));
} else {
clientsList.sort(function(a, b) {
return (clients[b].total_duration_seconds || 0) - (clients[a].total_duration_seconds || 0);
});
var table = E('table', { 'class': 'mf-table' }, [
E('thead', {}, [
E('tr', {}, [
E('th', {}, _('Client IP')),
E('th', {}, _('Sessions')),
E('th', {}, _('Total Duration')),
E('th', {}, _('Total Bandwidth')),
E('th', {}, _('Top Service'))
])
]),
E('tbody', {}, clientsList.map(function(client) {
var stats = clients[client];
var duration = stats.total_duration_seconds || 0;
var hours = Math.floor(duration / 3600);
var minutes = Math.floor((duration % 3600) / 60);
return E('tr', {}, [
E('td', {}, E('strong', {}, client)),
E('td', {}, String(stats.sessions)),
E('td', {}, hours + 'h ' + minutes + 'm'),
E('td', {}, Math.round(stats.total_bandwidth_kbps) + ' kbps'),
E('td', {}, stats.top_service || 'N/A')
]);
}))
]);
container.appendChild(E('div', { 'class': 'mf-card' }, table));
}
var wrapper = E('div', { 'class': 'secubox-page-wrapper' });
wrapper.appendChild(SbHeader.render());
wrapper.appendChild(container);
return wrapper;
},
handleSaveApply: null,
handleSave: null,
handleReset: null
});