src/Repository/OptionValueRepository.php line 100
<?php
namespace App\Repository;
use App\Entity\Category;
use App\Entity\OptionValue;
use App\Entity\ProductCollection;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<OptionValue>
*
* @method OptionValue|null find($id, $lockMode = null, $lockVersion = null)
* @method OptionValue|null findOneBy(array $criteria, array $orderBy = null)
* @method OptionValue[] findAll()
* @method OptionValue[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class OptionValueRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, OptionValue::class);
}
public function save(OptionValue $entity, bool $flush = false): void
{
$this->getEntityManager()->persist($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function remove(OptionValue $entity, bool $flush = false): void
{
$this->getEntityManager()->remove($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function findUniqueColors($variants,$option)
{
return $this->createQueryBuilder('o')
// ->select('o.value')
->groupBy('o.value')
->andWhere('o.productVariant in (:variants)')
->andWhere('o.productOption = :option')
->setParameter(':variants',$variants)
->setParameter(':option',$option)
->getQuery()
->getResult();
}
public function findCategoryColors($products)
{
return $this->createQueryBuilder('o')
->join("o.productVariant","pv")
->andWhere('pv.product in (:products)')
->andWhere('o.name = :color ')
->setParameter(':color',"Color")
->setParameter(':products',$products)
->groupBy('o.value')
->getQuery()
->getResult();
}
public function findCategoryColorsTest(Category $category)
{
return $this->createQueryBuilder('o')
->join("o.productVariant","pv")
->join("pv.product","p")
->join("p.categories",'categories')
->andWhere("categories = :category")
->andWhere("o.name = :color")
->setParameter(":color","Color")
->setParameter(":category",$category)
->groupBy("o.value")
->getQuery()
->getResult();
}
public function findCategorySizesTest($category){
return $this->createQueryBuilder('o')
->join("o.productVariant","pv")
->join("pv.product","p")
->join("p.categories","categories")
->andWhere("categories = :category")
->andWhere("o.name = :size")
->setParameter(":size","Size")
->setParameter(":category",$category)
->groupBy("o.value")
->getQuery()
->getResult();
}
public function findCollectionColors(ProductCollection $collection)
{
return $this->createQueryBuilder('o')
->join("o.productVariant","pv")
->join("pv.product","p")
->join("p.collections","collections")
->andWhere('collections = :collection')
->andWhere('o.name = :color')
->setParameter(':collection',$collection)
->setParameter(":color","Color")
->groupBy('o.value')
->getQuery()
->getResult();
}
public function findCollectionSizes(ProductCollection $collection)
{
return $this->createQueryBuilder('o')
->join("o.productVariant","pv")
->join("pv.product","p")
->join("p.collections","collections")
->andWhere('collections = :collection')
->andWhere('o.name = :name')
->setParameter(':collection',$collection)
->setParameter(":name","Size")
->groupBy('o.value')
->getQuery()
->getResult();
}
public function findCategorySizes($products)
{
return $this->createQueryBuilder('o')
->join("o.productVariant","pv")
->andWhere('pv.product in (:products)')
->andWhere('o.name = :size ')
->setParameter(':size',"Size")
->setParameter(':products',$products)
->groupBy('o.value')
->getQuery()
->getResult();
}
public function findUniqueSizes($variants,$option)
{
return $this->createQueryBuilder('o')
// ->select('o.value')
// ->groupBy('o.value')
->andWhere('o.productVariant in (:variants)')
->andWhere('o.productOption = :option')
->setParameter(':variants',$variants)
->setParameter(':option',$option)
->getQuery()
->getResult();
}
// public function findUniqueProducts()
// {
// return $this->createQueryBuilder('o')
// // ->distinct()
// ->andWhere('o.name = :name')
// ->setParameter('name','Color')
// // ->groupBy('o.value')
// ->getQuery()
// ->getResult();
// }
// /**
// * @return OptionValue[] Returns an array of OptionValue objects
// */
// public function findByExampleField($value): array
// {
// return $this->createQueryBuilder('o')
// ->andWhere('o.exampleField = :val')
// ->setParameter('val', $value)
// ->orderBy('o.id', 'ASC')
// ->setMaxResults(10)
// ->getQuery()
// ->getResult()
// ;
// }
// public function findOneBySomeField($value): ?OptionValue
// {
// return $this->createQueryBuilder('o')
// ->andWhere('o.exampleField = :val')
// ->setParameter('val', $value)
// ->getQuery()
// ->getOneOrNullResult()
// ;
// }
}