'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.getStatsByService() ]); }, render: function(data) { this.initTheme(); var statsByService = data[0] || {}; var services = statsByService.services || {}; 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; } .mf-btn { padding: 8px 16px; border-radius: 6px; font-size: 0.8rem; cursor: pointer; border: none; background: rgba(255,255,255,0.1); color: #e4e4e7; transition: all 0.2s; } .mf-btn:hover { background: rgba(255,255,255,0.15); transform: translateY(-1px); } @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; } .mf-btn { padding: 6px 12px; font-size: 0.75rem; } } `; var container = E('div', { 'class': 'mf-page' }, [ E('style', {}, css), E('link', { 'rel': 'stylesheet', 'href': L.resource('media-flow/common.css') }), NavHelper.renderTabs('services'), E('div', { 'class': 'mf-header' }, [ E('div', { 'class': 'mf-title' }, ['🎬 ', _('Services Statistics')]), E('div', { 'class': 'mf-subtitle' }, _('Detailed statistics per streaming service')) ]) ]); var servicesList = Object.keys(services); if (servicesList.length === 0) { container.appendChild(E('div', { 'class': 'mf-card' }, [ E('div', { 'class': 'mf-empty' }, [ E('div', { 'class': 'mf-empty-icon' }, '🎬'), E('div', {}, _('No service data available yet. Streaming services will appear here once detected.')) ]) ])); } else { servicesList.sort(function(a, b) { return (services[b].total_duration_seconds || 0) - (services[a].total_duration_seconds || 0); }); var table = E('table', { 'class': 'mf-table' }, [ E('thead', {}, [ E('tr', {}, [ E('th', {}, _('Service')), E('th', {}, _('Category')), E('th', {}, _('Sessions')), E('th', {}, _('Total Duration')), E('th', {}, _('Avg Bandwidth')), E('th', {}, _('Actions')) ]) ]), E('tbody', {}, servicesList.map(function(service) { var stats = services[service]; var duration = stats.total_duration_seconds || 0; var hours = Math.floor(duration / 3600); var minutes = Math.floor((duration % 3600) / 60); var avgBandwidth = stats.total_bandwidth_kbps / stats.sessions || 0; var categoryIcon = { 'video': '🎬', 'audio': '🎵', 'visio': '📹' }[stats.category] || '📊'; return E('tr', {}, [ E('td', {}, E('strong', {}, categoryIcon + ' ' + service)), E('td', {}, stats.category || 'other'), E('td', {}, String(stats.sessions)), E('td', {}, hours + 'h ' + minutes + 'm'), E('td', {}, Math.round(avgBandwidth) + ' kbps'), E('td', {}, [ E('button', { 'class': 'mf-btn', 'click': function() { API.getServiceDetails(service).then(function(details) { ui.showModal(_('Service Details: ') + service, [ E('div', { 'style': 'padding: 20px; color: #e4e4e7;' }, [ E('p', {}, [E('strong', {}, _('Category: ')), details.category || 'unknown']), E('p', {}, [E('strong', {}, _('Total Sessions: ')), String(details.total_sessions || 0)]), E('p', {}, [E('strong', {}, _('Average Bandwidth: ')), Math.round(details.avg_bandwidth_kbps || 0) + ' kbps']), E('p', {}, [E('strong', {}, _('Typical Quality: ')), details.typical_quality || 'unknown']), E('p', {}, [E('strong', {}, _('Total Duration: ')), Math.floor((details.total_duration_seconds || 0) / 3600) + 'h']) ]), E('div', { 'style': 'text-align: right; padding: 10px;' }, [ E('button', { 'class': 'mf-btn', 'click': ui.hideModal }, _('Close')) ]) ]); }); } }, _('Details')) ]) ]); })) ]); 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 });