src/Repository/CategoryRepository.php line 64

  1. <?php
  2. namespace App\Repository;
  3. use App\Entity\Category;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Offset;
  7. use Doctrine\ORM\Tools\Pagination\Paginator;
  8. /**
  9.  * @extends ServiceEntityRepository<Category>
  10.  *
  11.  * @method Category|null find($id, $lockMode = null, $lockVersion = null)
  12.  * @method Category|null findOneBy(array $criteria, array $orderBy = null)
  13.  * @method Category[]    findAll()
  14.  * @method Category[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  15.  */
  16. class CategoryRepository extends ServiceEntityRepository
  17. {
  18.     public function __construct(ManagerRegistry $registry)
  19.     {
  20.         parent::__construct($registryCategory::class);
  21.     }
  22.     public function save(Category $entitybool $flush false): void
  23.     {
  24.         $this->getEntityManager()->persist($entity);
  25.         if ($flush) {
  26.             $this->getEntityManager()->flush();
  27.         }
  28.     }
  29.     public function remove(Category $entitybool $flush false): void
  30.     {
  31.         $this->getEntityManager()->remove($entity);
  32.         if ($flush) {
  33.             $this->getEntityManager()->flush();
  34.         }
  35.     }
  36.     public function getPaginatedCategories(int $offset) : Paginator{
  37.         $query $this->createQueryBuilder('c')
  38.                         ->setMaxResults(10)
  39.                         ->setFirstResult($offset)
  40.                         ->getQuery();
  41.         return new Paginator($query);
  42.     }
  43.     public function getTotalCount(int $catgeoryId): int
  44.     {
  45.         return $this->createQueryBuilder('c')
  46.                         ->select('COUNT(p.id)')
  47.                         ->join('c.products','p')
  48.                         ->where('c.id = :categoryId')
  49.                         ->setParameter('categoryId',$catgeoryId)
  50.                         ->getQuery()
  51.                         ->getSingleScalarResult();
  52.     }
  53.     
  54. //    /**
  55. //     * @return Category[] Returns an array of Category objects
  56. //     */
  57. //    public function findByExampleField($value): array
  58. //    {
  59. //        return $this->createQueryBuilder('c')
  60. //            ->andWhere('c.exampleField = :val')
  61. //            ->setParameter('val', $value)
  62. //            ->orderBy('c.id', 'ASC')
  63. //            ->setMaxResults(10)
  64. //            ->getQuery()
  65. //            ->getResult()
  66. //        ;
  67. //    }
  68. //    public function findOneBySomeField($value): ?Category
  69. //    {
  70. //        return $this->createQueryBuilder('c')
  71. //            ->andWhere('c.exampleField = :val')
  72. //            ->setParameter('val', $value)
  73. //            ->getQuery()
  74. //            ->getOneOrNullResult()
  75. //        ;
  76. //    }
  77. }