123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- namespace App\Controller;
- use App\Repository\CommentaireRepository;
- use App\Repository\FilmRepository;
- use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
- use Symfony\Component\HttpFoundation\Response;
- use Symfony\Component\Routing\Attribute\Route;
- use Symfony\UX\Chartjs\Builder\ChartBuilderInterface;
- use Symfony\UX\Chartjs\Model\Chart;
- class DashboardController extends AbstractController
- {
- #[Route('/dashboard', name: 'app_dashboard')]
- public function index(
- ChartBuilderInterface $chartBuilderInterface,
- FilmRepository $filmRepository,
- CommentaireRepository $commentaireRepository
- ): Response
- {
- $filmsVus = $filmRepository->countFilmsVusBy($this->getUser());
- $filmsFavoris = $filmRepository->countFilmsFavorisBy($this->getUser());
- $commentairesParMois = $commentaireRepository->countCommentairesParMois();
- $chart = $chartBuilderInterface->createChart(Chart::TYPE_DOUGHNUT);
- $chart->setData([
- 'labels' => ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
- 'datasets' => [
- [
- 'label' => 'My First dataset',
- 'backgroundColor' => 'rgb(255, 99, 132)',
- 'borderColor' => 'rgb(255, 99, 132)',
- 'data' => [0, 10, 5, 2, 20, 30, 45],
- ],
- ],
- ]);
- $chart->setOptions([
- 'scales' => [
- 'y' => [
- 'suggestedMin' => 0,
- 'suggestedMax' => 100,
- ],
- ],
- ]);
- $chartDatesAjout = $chartBuilderInterface->createChart(Chart::TYPE_LINE);
- $ajoutsParMois = $filmRepository->countAjoutsParMois();
- $months = [];
- $entryCounts = [];
- foreach ($ajoutsParMois as $data) {
- $months[] = $data['month'];
- $entryCounts[] = $data['entryCount'];
- }
- $chartDatesAjout->setData([
- 'labels' => $months,
- 'datasets' => [
- [
- 'label' => 'Nombre de films ajoutés par mois',
- 'data' => $entryCounts
- ]
- ]
- ]);
- $chart->setOptions([
- 'scales' => [
- 'y' => [
- 'suggestedMin' => 0,
- 'suggestedMax' => 100,
- ],
- ],
- ]);
- $months = [];
- $entryCounts = [];
- foreach ($commentairesParMois as $data) {
- $months[] = $data['month'];
- $entryCounts[] = $data['entryCount'];
- }
- $chartCommentairesAjout = $chartBuilderInterface->createChart(Chart::TYPE_LINE);
- $chartCommentairesAjout->setData([
- 'labels' => $months,
- 'datasets' => [
- [
- 'label' => 'Nombre de films ajoutés par mois',
- 'data' => $entryCounts
- ]
- ]
- ]);
- $chart->setOptions([
- 'scales' => [
- 'y' => [
- 'suggestedMin' => 0,
- 'suggestedMax' => 100,
- ],
- ],
- ]);
- return $this->render('dashboard/index.html.twig', [
- 'chart' => $chart,
- 'chartAjoutsParMois' => $chartDatesAjout,
- 'chartCommentairesAjouts' => $chartCommentairesAjout
- ]);
- }
- }
|