瀏覽代碼

Filtre par note opérationnel

François 5 年之前
父節點
當前提交
de1cffe1bd

+ 1 - 1
assets/js/filtrenotes.js

@@ -7,7 +7,7 @@
                 let value = $(this).val();
                 let chemin = $(this).data('path');
                 console.log(value);
-                window.location.href = chemin + "?" + value;
+                window.location.href = chemin + "?note=" + value;
             })
         })
     }

+ 5 - 3
src/Controller/VideothequeController.php

@@ -19,15 +19,17 @@ class VideothequeController extends AbstractController
 	/**
 	 * @Route("/", name="videotheque_liste")
 	 */
-	public function listeAction()
+	public function listeAction(Request $request)
 	{
+        $note = (int) $request->query->get('note');
 		$em = $this->getDoctrine()->getManager();
 		$repo = $em->getRepository('App:Film');
-        $listeFilms = $repo->findTous();
+        $listeFilms = $repo->findTous($note);
 
 		return $this->render('videotheque/liste.html.twig', array(
             'listeFilms'	=>	$listeFilms,
-            'titre'         =>  'Liste complète'
+            'titre'         =>  'Liste complète',
+            'note'          =>  $note
 		));
     }
 

+ 6 - 1
src/Repository/FilmRepository.php

@@ -86,13 +86,18 @@ class FilmRepository extends \Doctrine\ORM\EntityRepository
             ->getResult();
     }
 
-    public function findTous () {
+    public function findTous ($note = 0) {
         $qb = $this->createQueryBuilder('f')
             ->leftJoin('f.authered', 'aut')->addSelect('aut')
             ->leftJoin('f.genres', 'gen')->addSelect('gen')
             ->leftJoin('f.realisateurs', 'rea')->addSelect('rea')
             ->orderBy('f.dateSubmited', 'DESC');
 
+        if ($note > 0) {
+            $qb
+                ->andWhere('f.note >= :note')
+                ->setParameter('note', $note);
+        }
         return $qb
             ->getQuery()
             ->getResult();

+ 1 - 1
templates/videotheque/liste.html.twig

@@ -29,7 +29,7 @@
 					max=5
 					data-step=1
 					data-size="sm"
-					value="0">
+					value="{{ note }}">
 				</p>
 			</div>
 		</div>