summaryrefslogtreecommitdiff
path: root/includes/view/PublicDashboard_view.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-12-12 21:57:57 +0100
committermsquare <msquare@notrademark.de>2017-12-12 21:57:57 +0100
commitff94df53d69234ae2625462a76926e131ade05b7 (patch)
treeb5ee27bd8461a06a2b7e082faa48c6fa66fc560f /includes/view/PublicDashboard_view.php
parentd5631297dc42c06b1695fdb6f65d2b6a4b04c633 (diff)
finish basic public dashboard
Diffstat (limited to 'includes/view/PublicDashboard_view.php')
-rw-r--r--includes/view/PublicDashboard_view.php69
1 files changed, 51 insertions, 18 deletions
diff --git a/includes/view/PublicDashboard_view.php b/includes/view/PublicDashboard_view.php
index 6fa40ed4..7b15c7dd 100644
--- a/includes/view/PublicDashboard_view.php
+++ b/includes/view/PublicDashboard_view.php
@@ -3,29 +3,62 @@
/**
* Public dashboard (formerly known as angel news hub)
*/
-function public_dashboard_view($stats)
+function public_dashboard_view($stats, $free_shifts)
{
+ $shift_panels = [];
+ foreach ($free_shifts as $shift) {
+ $shift_panels[] = public_dashborad_shift_render($shift);
+ }
return page([
- div('first', [
- div('col-xs-3 text-center', [
- _('Angels needed in the next 3 hrs'),
- heading($stats['needed-3-hours'], 1)
- ]),
- div('col-xs-3 text-center', [
- _('Angels needed for nightshifts'),
- heading($stats['needed-night'], 1)
- ]),
- div('col-xs-3 text-center', [
- _('Angels currently working'),
- heading($stats['angels-working'], 1)
- ]),
- div('col-xs-3 text-center', [
- _('Hours to be worked'),
- heading($stats['hours-to-work'], 1)
- ]),
+ div('first container-fluid', [
+ stats(_('Angels needed in the next 3 hrs'), $stats['needed-3-hours']),
+ stats(_('Angels needed for nightshifts'), $stats['needed-night']),
+ stats(_('Angels currently working'), $stats['angels-working'], 'default'),
+ stats(_('Hours to be worked'), $stats['hours-to-work'], 'default'),
'<script>$(function(){setTimeout(function(){window.location.reload();}, 60000)})</script>'
+ ]),
+ div('container-fluid first', [
+ heading(_('Needed angels:'), 1),
+ join($shift_panels)
])
]);
}
+/**
+ * Renders a single shift panel for a dashboard shift with needed angels
+ */
+function public_dashborad_shift_render($shift)
+{
+ $style = 'default';
+ if (time() + 3 * 60 * 60 > $shift['start']) {
+ $style = 'warning';
+ }
+ if (time() > $shift['start']) {
+ $style = 'danger';
+ }
+
+ $panel_body = glyph('time') . date('H:i', $shift['start']) . ' - ' . date('H:i', $shift['end']);
+
+ $panel_body .= '<br>' . glyph('tasks') . ShiftType($shift['shifttype_id'])['name'];
+ if (! empty($shift['title'])) {
+ $panel_body .= ' (' . $shift['title'] . ')';
+ }
+
+ $panel_body .= '<br>' . glyph('map-marker') . Room($shift['RID'])['Name'];
+
+ foreach ($shift['NeedAngels'] as $needed_angels) {
+ $need = $needed_angels['count'] - $needed_angels['taken'];
+ if ($need > 0) {
+ $panel_body .= '<br>' . glyph('user') . $need . ' &times; ' . AngelType($needed_angels['TID'])['name'];
+ }
+ }
+
+ $panel_body = '<a href="' . shift_link($shift) . '">' . $panel_body . '</a>';
+
+ return div('panel panel-' . $style . ' col-xs-3', [
+ div('panel-body', [
+ heading($panel_body, 4)
+ ])
+ ]);
+}
?> \ No newline at end of file