// Dashboard page renderer for the signage overview. const { renderView } = require('../../../view'); module.exports = function renderDashboardPage(data, message, currentUser) { return renderView('dashboard/index', { title: 'Dashboard', active: 'dashboard', message: message, currentUser: currentUser || null, playlists: data.playlists || [], screens: data.screens || [], clients: data.clients || [], kioskPlayers: data.kioskPlayers || [], slides: data.slides || [], connectedClientsCount: Number(data.connectedClientsCount || 0), connectedPlayersCount: Number(data.connectedPlayersCount || data.connectedClientsCount || 0), scripts: ['js/dashboard/dashboard-page.js'] }); };