engelsystem/includes/view/PublicDashboard_view.php

110 lines
3.6 KiB
PHP
Raw Normal View History

2017-12-11 22:26:36 +01:00
<?php
/**
* Public dashboard (formerly known as angel news hub)
2017-12-25 23:12:52 +01:00
*
* @param array $stats
* @param array[] $free_shifts
* @return string
2017-12-11 22:26:36 +01:00
*/
2017-12-12 21:57:57 +01:00
function public_dashboard_view($stats, $free_shifts)
2017-12-11 22:26:36 +01:00
{
2017-12-12 22:09:01 +01:00
$needed_angels = '';
if (count($free_shifts) > 0) {
2017-12-26 10:47:39 +01:00
$shift_panels = [
'<div class="row">'
];
2017-12-26 10:51:23 +01:00
foreach ($free_shifts as $i => $shift) {
2017-12-25 23:12:52 +01:00
$shift_panels[] = public_dashboard_shift_render($shift);
2018-10-17 01:30:10 +02:00
if ($i % 4 == 3) {
2017-12-26 10:47:39 +01:00
$shift_panels[] = '</div><div class="row">';
}
2017-12-12 22:09:01 +01:00
}
2017-12-26 10:47:39 +01:00
$shift_panels[] = '</div>';
$needed_angels = div('first', [
2017-12-13 12:37:05 +01:00
div('col-md-12', [
heading(__('Needed angels:'))
2017-12-12 22:09:01 +01:00
]),
2017-12-26 10:51:23 +01:00
div('container-fluid', [
join($shift_panels)
])
2017-12-12 22:09:01 +01:00
]);
2017-12-12 21:57:57 +01:00
}
2017-12-25 23:12:52 +01:00
2020-10-27 17:13:46 +01:00
$isFiltered = request()->get('filtered');
2020-11-24 01:18:05 +01:00
$filter = collect(session()->get('shifts-filter'))->only(['rooms', 'types'])->toArray();
2017-12-11 22:26:36 +01:00
return page([
div('wrapper', [
div('public-dashboard', [
div('first row', [
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() {
setInterval(function() {
$(\'#content .wrapper\').load(window.location.href + \' #public-dashboard\');
}, 60000);
})
</script>'
], 'statistics'),
$needed_angels
], 'public-dashboard'),
]),
2020-10-27 17:13:46 +01:00
div('first col-md-12 text-center', [buttons([
button_js(
'
2022-04-21 11:16:16 +02:00
$(\'#navbar-collapse-1,.navbar-nav,.navbar-toggler,#footer,#fullscreen-button\').remove();
2020-10-27 17:13:46 +01:00
$(\'.navbar-brand\').append(\' ' . __('Public Dashboard') . '\');
',
icon('fullscreen') . __('Fullscreen')
2020-10-27 17:13:46 +01:00
),
auth()->user() ? button(
2020-11-24 01:18:05 +01:00
public_dashboard_link($isFiltered ? [] : ['filtered' => 1] + $filter),
icon('filter') . ($isFiltered ? __('All') : __('Filtered'))
2020-10-27 17:13:46 +01:00
) : ''
])], 'fullscreen-button'),
]);
2017-12-11 22:26:36 +01:00
}
2017-12-12 21:57:57 +01:00
/**
* Renders a single shift panel for a dashboard shift with needed angels
2017-12-25 23:12:52 +01:00
*
* @param array $shift
* @return string
2017-12-12 21:57:57 +01:00
*/
2017-12-25 23:12:52 +01:00
function public_dashboard_shift_render($shift)
2017-12-12 21:57:57 +01:00
{
$panel_body = icon('clock') . $shift['start'] . ' - ' . $shift['end'];
2017-12-30 12:07:10 +01:00
$panel_body .= ' (' . $shift['duration'] . '&nbsp;h)';
2017-12-25 23:12:52 +01:00
$panel_body .= '<br>' . icon('list-task') . $shift['shifttype_name'];
2017-12-25 23:12:52 +01:00
if (!empty($shift['title'])) {
2017-12-12 21:57:57 +01:00
$panel_body .= ' (' . $shift['title'] . ')';
}
2017-12-25 23:12:52 +01:00
$panel_body .= '<br>' . icon('geo-alt') . $shift['room_name'];
2017-12-25 23:12:52 +01:00
foreach ($shift['needed_angels'] as $needed_angels) {
$panel_body .= '<br>' . icon('person')
2017-12-25 23:12:52 +01:00
. '<span class="text-' . $shift['style'] . '">'
. $needed_angels['need'] . ' &times; ' . $needed_angels['angeltype_name']
. '</span>';
2017-12-12 21:57:57 +01:00
}
2017-12-25 23:12:52 +01:00
$type = 'bg-dark';
if (theme_type() == 'light') {
$type = 'bg-light';
}
return div('col-md-3 mb-3', [
div('dashboard-card card border-' . $shift['style'] . ' ' . $type, [
div('card-body', [
'<a class="card-link" href="' . shift_link($shift) . '"></a>',
2017-12-13 12:37:05 +01:00
$panel_body
2017-12-12 22:00:29 +01:00
])
2017-12-12 21:57:57 +01:00
])
]);
}