Pārlūkot izejas kodu

Ajout des derniers commentaires en dropdown

François 5 gadi atpakaļ
vecāks
revīzija
faadcef1ac

+ 25 - 0
src/Entity/Commentaire.php

@@ -48,6 +48,19 @@ class Commentaire
      */
     private $user;
 
+    /**
+     * @ORM\Column(type="datetime", nullable=true)
+     */
+    private $dateSubmitted;
+
+    /**
+     * Constructor
+     */
+    public function __construct ()
+    {
+        $this->dateSubmitted = new \DateTime('now');
+    }
+
     /**
      * Get id
      *
@@ -145,4 +158,16 @@ class Commentaire
     {
         return $this->user;
     }
+
+    public function getDateSubmitted(): ?\DateTimeInterface
+    {
+        return $this->dateSubmitted;
+    }
+
+    public function setDateSubmitted(?\DateTimeInterface $dateSubmitted): self
+    {
+        $this->dateSubmitted = $dateSubmitted;
+
+        return $this;
+    }
 }

+ 35 - 0
src/Migrations/Version20191029114504.php

@@ -0,0 +1,35 @@
+<?php
+
+declare(strict_types=1);
+
+namespace DoctrineMigrations;
+
+use Doctrine\DBAL\Schema\Schema;
+use Doctrine\Migrations\AbstractMigration;
+
+/**
+ * Auto-generated Migration: Please modify to your needs!
+ */
+final class Version20191029114504 extends AbstractMigration
+{
+    public function getDescription() : string
+    {
+        return '';
+    }
+
+    public function up(Schema $schema) : void
+    {
+        // this up() migration is auto-generated, please modify it to your needs
+        $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
+
+        $this->addSql('ALTER TABLE commentaire ADD date_submitted DATETIME DEFAULT NULL');
+    }
+
+    public function down(Schema $schema) : void
+    {
+        // this down() migration is auto-generated, please modify it to your needs
+        $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
+
+        $this->addSql('ALTER TABLE commentaire DROP date_submitted');
+    }
+}

+ 9 - 0
src/Repository/CommentaireRepository.php

@@ -10,4 +10,13 @@ namespace App\Repository;
  */
 class CommentaireRepository extends \Doctrine\ORM\EntityRepository
 {
+    public function findLast ($limit = 5)
+    {
+        return $qb = $this->createQueryBuilder('c')
+            ->innerJoin('c.film', 'flm')->addSelect('flm')
+            ->innerJoin('c.user', 'usr')->addSelect('usr')
+            ->setMaxResults($limit)
+            ->getQuery()
+            ->getResult();
+    }
 }

+ 28 - 0
src/Service/Nouveautes.php

@@ -0,0 +1,28 @@
+<?php
+
+namespace App\Service;
+
+use App\Entity\Commentaire;
+use Doctrine\ORM\EntityManagerInterface;
+use Twig\Environment;
+use Twig\Extension\RuntimeExtensionInterface;
+
+class Nouveautes implements RuntimeExtensionInterface
+{
+    private $twig;
+    private $em;
+
+    public function __construct(EntityManagerInterface $em, Environment $twig)
+    {
+        $this->em = $em;
+        $this->twig = $twig;
+    }
+
+    public function afficher () {
+        $commentaires = $this->em->getRepository(Commentaire::class)->findLast(5);
+
+        return $this->twig->render('nouveautes/nouveautes.html.twig', [
+            'commentaires'  =>  $commentaires
+        ]);
+    }
+}

+ 24 - 0
src/Twig/TwigNouveautes.php

@@ -0,0 +1,24 @@
+<?php
+
+namespace App\Twig;
+
+use Twig\Extension\AbstractExtension;
+use Twig\TwigFunction;
+use App\Service\Nouveautes;
+
+class TwigNouveautes extends AbstractExtension
+{
+    public function getFunctions ()
+    {
+        return array(
+            new TwigFunction('afficheNouveautes', array(Nouveautes::class, 'afficher')),
+        );
+    }
+
+    public function getName()
+    {
+        return 'afficheNouveautes';
+    }
+
+
+}

+ 15 - 2
templates/base.html.twig

@@ -54,6 +54,19 @@
 					{%  endif %}
 				</ul>
 				{% endif %}
+				<ul class="navbar-nav">
+					<li class="nav-item dropdown">
+						<a class="nav-link dropdown-toggle" href="#" id="navbarBellDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+							<i class="fa fa-bell fa-lg"></i>
+						</a>
+						<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarBellDropdown">
+							<ul class="list-group px-4 py-3">
+								{{ afficheNouveautes() | raw }}
+							</ul>
+						</div>
+					</li>
+				</ul>
+
 				<ul class="navbar-nav">
 					<li class="nav-item">
 						<a href="#" class="nav-link" data-toggle="modal" data-target="#modalWindow"><i class="fa fa-info-circle fa-lg text-light nav-link" aria-hidden="true"></i></a>
@@ -73,10 +86,10 @@
                 {% else %}
 					<ul class="navbar-nav">
 						<li class="nav-item dropdown">
-							<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+							<a class="nav-link dropdown-toggle" href="#" id="navbarUserDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                                 {{ app.user.nomComplet }}
 							</a>
-							<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
+							<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarUserDropdown">
 								<a class="dropdown-item" href="{{ path('user_profil') }}">Profil</a>
 								<div class="dropdown-divider"></div>
 								<a class="dropdown-item" href="{{ path('app_logout') }}">Se déconnecter</a>

+ 3 - 0
templates/nouveautes/nouveautes.html.twig

@@ -0,0 +1,3 @@
+{% for commentaire in commentaires %}
+    <li class="list-group-item">Nouveau commentaire de {{ commentaire.user.username }} sur le film {{ commentaire.film.titre }}</li>
+{% endfor %}