DashboardController.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. namespace App\Controller;
  3. use App\Repository\CommentaireRepository;
  4. use App\Repository\FilmRepository;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. use Symfony\Component\HttpFoundation\Response;
  7. use Symfony\Component\Routing\Attribute\Route;
  8. use Symfony\UX\Chartjs\Builder\ChartBuilderInterface;
  9. use Symfony\UX\Chartjs\Model\Chart;
  10. class DashboardController extends AbstractController
  11. {
  12. #[Route('/dashboard', name: 'app_dashboard')]
  13. public function index(
  14. ChartBuilderInterface $chartBuilderInterface,
  15. FilmRepository $filmRepository,
  16. CommentaireRepository $commentaireRepository
  17. ): Response
  18. {
  19. $filmsVus = $filmRepository->countFilmsVusBy($this->getUser());
  20. $filmsFavoris = $filmRepository->countFilmsFavorisBy($this->getUser());
  21. $commentairesParMois = $commentaireRepository->countCommentairesParMois();
  22. $chart = $chartBuilderInterface->createChart(Chart::TYPE_DOUGHNUT);
  23. $chart->setData([
  24. 'labels' => ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
  25. 'datasets' => [
  26. [
  27. 'label' => 'My First dataset',
  28. 'backgroundColor' => 'rgb(255, 99, 132)',
  29. 'borderColor' => 'rgb(255, 99, 132)',
  30. 'data' => [0, 10, 5, 2, 20, 30, 45],
  31. ],
  32. ],
  33. ]);
  34. $chart->setOptions([
  35. 'scales' => [
  36. 'y' => [
  37. 'suggestedMin' => 0,
  38. 'suggestedMax' => 100,
  39. ],
  40. ],
  41. ]);
  42. $chartDatesAjout = $chartBuilderInterface->createChart(Chart::TYPE_LINE);
  43. $ajoutsParMois = $filmRepository->countAjoutsParMois();
  44. $months = [];
  45. $entryCounts = [];
  46. foreach ($ajoutsParMois as $data) {
  47. $months[] = $data['month'];
  48. $entryCounts[] = $data['entryCount'];
  49. }
  50. $chartDatesAjout->setData([
  51. 'labels' => $months,
  52. 'datasets' => [
  53. [
  54. 'label' => 'Nombre de films ajoutés par mois',
  55. 'data' => $entryCounts
  56. ]
  57. ]
  58. ]);
  59. $chart->setOptions([
  60. 'scales' => [
  61. 'y' => [
  62. 'suggestedMin' => 0,
  63. 'suggestedMax' => 100,
  64. ],
  65. ],
  66. ]);
  67. $months = [];
  68. $entryCounts = [];
  69. foreach ($commentairesParMois as $data) {
  70. $months[] = $data['month'];
  71. $entryCounts[] = $data['entryCount'];
  72. }
  73. $chartCommentairesAjout = $chartBuilderInterface->createChart(Chart::TYPE_LINE);
  74. $chartCommentairesAjout->setData([
  75. 'labels' => $months,
  76. 'datasets' => [
  77. [
  78. 'label' => 'Nombre de films ajoutés par mois',
  79. 'data' => $entryCounts
  80. ]
  81. ]
  82. ]);
  83. $chart->setOptions([
  84. 'scales' => [
  85. 'y' => [
  86. 'suggestedMin' => 0,
  87. 'suggestedMax' => 100,
  88. ],
  89. ],
  90. ]);
  91. return $this->render('dashboard/index.html.twig', [
  92. 'chart' => $chart,
  93. 'chartAjoutsParMois' => $chartDatesAjout,
  94. 'chartCommentairesAjouts' => $chartCommentairesAjout
  95. ]);
  96. }
  97. }