111 lines
3.0 KiB
PHP
111 lines
3.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Controller;
|
|
|
|
use App\Event\DashboardEvent;
|
|
use App\Widget\Type\CompoundChart;
|
|
use App\Widget\Type\CompoundRow;
|
|
use App\Widget\WidgetContainerInterface;
|
|
use App\Widget\WidgetService;
|
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
/**
|
|
* Dashboard controller for the admin area.
|
|
*
|
|
* @Route(path="/dashboard")
|
|
* @Security("is_granted('ROLE_USER')")
|
|
*/
|
|
class DashboardController extends AbstractController
|
|
{
|
|
/**
|
|
* @var EventDispatcherInterface
|
|
*/
|
|
protected $eventDispatcher;
|
|
/**
|
|
* @var WidgetService
|
|
*/
|
|
protected $widgets;
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $dashboard;
|
|
|
|
/**
|
|
* @param EventDispatcherInterface $dispatcher
|
|
* @param WidgetService $service
|
|
* @param array $dashboard
|
|
*/
|
|
public function __construct(EventDispatcherInterface $dispatcher, WidgetService $service, array $dashboard)
|
|
{
|
|
$this->eventDispatcher = $dispatcher;
|
|
$this->widgets = $service;
|
|
$this->dashboard = $dashboard;
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/", defaults={}, name="dashboard", methods={"GET"})
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$event = new DashboardEvent($this->getUser());
|
|
|
|
foreach ($this->dashboard as $widgetRow) {
|
|
if (empty($widgetRow['widgets'])) {
|
|
continue;
|
|
}
|
|
|
|
if (null !== $widgetRow['permission'] && !$this->isGranted($widgetRow['permission'])) {
|
|
continue;
|
|
}
|
|
|
|
// TODO this should be dynamic
|
|
if ($widgetRow['type'] === 'compoundChart') {
|
|
$row = new CompoundChart();
|
|
} else {
|
|
$row = new CompoundRow();
|
|
}
|
|
|
|
$row->setTitle($widgetRow['title'] ?? '');
|
|
$row->setOrder($widgetRow['order']);
|
|
|
|
foreach ($widgetRow['widgets'] as $widgetName) {
|
|
if (!$this->widgets->hasWidget($widgetName)) {
|
|
throw new \Exception(sprintf('Unknown widget "%s"', $widgetName));
|
|
}
|
|
|
|
$row->addWidget($this->widgets->getWidget($widgetName));
|
|
}
|
|
|
|
$event->addSection($row);
|
|
}
|
|
|
|
$this->eventDispatcher->dispatch($event);
|
|
|
|
$sections = $event->getSections();
|
|
|
|
uasort(
|
|
$sections,
|
|
function (WidgetContainerInterface $a, WidgetContainerInterface $b) {
|
|
if ($a->getOrder() == $b->getOrder()) {
|
|
return 0;
|
|
}
|
|
|
|
return ($a->getOrder() < $b->getOrder()) ? -1 : 1;
|
|
}
|
|
);
|
|
|
|
return $this->render('dashboard/index.html.twig', [
|
|
'widgets' => $sections
|
|
]);
|
|
}
|
|
}
|