src/Controller/CollectionController.php line 48

  1. <?php
  2. namespace App\Controller;
  3. use App\Controller\Admin\ProductCrudController;
  4. use App\Entity\NewsletterSubscriber;
  5. use App\Form\NewsletterSubscriberType;
  6. use App\Repository\CategoryRepository;
  7. use App\Repository\OptionRepository;
  8. use App\Repository\OptionValueRepository;
  9. use App\Repository\ProductCollectionRepository;
  10. use App\Repository\ProductRepository;
  11. use App\Repository\ProductVariantRepository;
  12. use Doctrine\ORM\EntityManagerInterface;
  13. use EasyCorp\Bundle\EasyAdminBundle\Router\AdminUrlGenerator;
  14. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  15. use Symfony\Component\HttpFoundation\Request;
  16. use Symfony\Component\HttpFoundation\Response;
  17. use Symfony\Component\Routing\Annotation\Route;
  18. use EasyCorp\Bundle\EasyAdminBundle\Config\Action;
  19. use Knp\Component\Pager\Pagination\PaginationInterface;
  20. use Knp\Component\Pager\PaginatorInterface;
  21. class CollectionController extends AbstractController
  22. {
  23.     public function __construct(
  24.         private CategoryRepository $categoryRepository,
  25.         private ProductCollectionRepository $collectionRepository,
  26.         private ProductRepository $productRepository,
  27.         private OptionValueRepository $optionRepository,
  28.         private ProductVariantRepository $variantRepository,
  29.         private EntityManagerInterface $entityManager,
  30.         private AdminUrlGenerator $adminUrlGenerator,
  31.         private PaginatorInterface $paginator
  32.     )
  33.     {}
  34.     #[Route('/collection'name'app_collection_index')]
  35.     public function index(): Response
  36.     {
  37.         return $this->render('collection/index.html.twig', [
  38.             'controller_name' => 'CollectionController',
  39.         ]);
  40.     }
  41.     #[Route('{_locale}/{gender}/collection/{id}',name'app_collection',requirements:["gender" => "mens|women"],defaults:["gender" => "mens"])]
  42.     public function collection(Request $request,$id): Response
  43.     {
  44.        $genderId $request->get('gender') == "mens" 2;
  45.         //main categories (level 1)
  46.        $mainCategories $this->categoryRepository->findBy(["level" => 1]);
  47.        //Men sub categories (level 2)
  48.        $subCategories $this->categoryRepository->findBy(["parentCategory" => $genderId,"level" => 2]);
  49.         //template path 
  50.         $templatePath $genderId == 'mens/collection/collection_page.twig' 'women/collection/collection_page.twig' ;
  51.         $filterTemplate $genderId == 'mens/collection/collection_content.twig' 'women/collection/collection_content.twig' ;
  52.         //filters
  53.         //we are defining an array of filter keys
  54.         $filterKeys = ['size''color''price_min''price_max'];
  55.         $filters = [];
  56.         foreach ($filterKeys as $key) {
  57.             $value $request->get($key);
  58.             if ($value !== null) {
  59.                 $filters[$key] = $value;
  60.             }
  61.         }
  62.         //dd($filters);
  63.        //current collection
  64.        $collection $this->collectionRepository->find($id) ;
  65.         // Pagination params
  66.         $page max(1,$request->query->getInt('page'));
  67.         $offset max(1$request->query->getInt('offset'0));
  68.         //dd($filters);
  69.         //getting products with unique colors
  70.         $products $this->productRepository->findProductsByCollection($collection,$page,$filters);
  71.         
  72.         if (!empty($products)) {
  73.             $products $this->paginator->paginate($products,$page,8);
  74.         }
  75.         // dd( $products);
  76.         $totalOfpages floor(count($products) / 4);
  77.         $previous $offset 0;
  78.         // TODO: comprende le focntionnment 
  79.         $next min(count($products), $offset 4);
  80.         // Return new template for ajax requests, used for filtring products
  81.        if($filters){
  82.             $template $this->renderView($filterTemplate,["products" => $products]);
  83.             return $this->json(["html" => $template]);
  84.         }
  85.         //data needed for filtring
  86.         $colors $this->optionRepository->findCollectionColors($collection);
  87.         $sizes $this->optionRepository->findCollectionSizes($collection);
  88.         $priceRange $this->variantRepository->findCollectionPriceRange($collection);
  89.         
  90.         //newsletter form 
  91.        $newsLetterSubscriber = new NewsletterSubscriber();
  92.        $form $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
  93.        $form->handleRequest($request);
  94.        if($form->isSubmitted() && $form->isValid()){
  95.            $newsLetterSubscriber $form->getData();
  96.            $this->entityManager->persist($newsLetterSubscriber);
  97.            $this->entityManager->flush();
  98.        }
  99.        
  100.        return $this->render($templatePath,[
  101.                             'subCategories' => $subCategories,
  102.                             'mainCategories' => $mainCategories,
  103.                             'activePage' => "Collection",
  104.                             'products' => $products,
  105.                             'form' => $form,
  106.                             'sizes' => $sizes,
  107.                             'colors' => $colors,
  108.                             'priceRange' => $priceRange[0],
  109.                             'priceStep' => 0.5,
  110.                             'collectionId' => $id,
  111.                             'previous' => $previous,
  112.                             'next' => $next,
  113.                             'totalOfpages' => $totalOfpages
  114.                              ]);
  115.     }
  116.     /**
  117.      * To refacotre: some  unused code must be removed
  118.      */
  119.     #[Route('{_locale}/{gender}/collections'name'app_collection_list',requirements:["gender" => "mens|women"],defaults:["gender" => "mens"])]
  120.     public function collections(Request $request): Response
  121.     {
  122.         $gender $request->get("gender");
  123.         $genderId $gender == "mens" 2;
  124.         //menu elements
  125.         $menuCategories $this->categoryRepository->findAll();
  126.         //main categories (level 1)
  127.         $mainCategories $this->categoryRepository->findBy(["level" => 1]);
  128.         //Men sub categories (level 2)
  129.         $subCategories $this->categoryRepository->findBy(["parentCategory" => $genderId,"level" => 2]);
  130.         $collections $this->collectionRepository->findBy(["gender" => $genderId]);
  131.         $newsLetterSubscriber = new NewsletterSubscriber();
  132.         $form $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
  133.         // newsltetter
  134.         $form->handleRequest($request);
  135.         // dd($form);
  136.         if($form->isSubmitted() && $form->isValid()){
  137.             $newsLetterSubscriber $form->getData();
  138.             $this->entityManager->persist($newsLetterSubscriber);
  139.             $this->entityManager->flush();
  140.         }
  141.         //END TEMPLATE ELEMENTS
  142.         $offset max(0$request->query->getInt('offset'0));
  143.         // $categoryList = $this->categoryRepository->getPaginatedCategories($offset);
  144.         return $this->render($gender.'/collection/collections.twig', [
  145.             'subCategories' => $subCategories,
  146.             'mainCategories' => $mainCategories,
  147.             'categories' => $menuCategories,
  148.             'categoryList' => '',
  149.             'previous' => $offset 10,
  150.             // 'next' => min(count($categoryList), $offset + 10),
  151.             'pageName' => "Categories",
  152.             'form' => $form,
  153.             'collections' => $collections,
  154.             'activePage' => "Collections"
  155.         ]);
  156.     }
  157.     #[Route('{_locale}/myadmin/bulkAddToCollectionConfirm'name'collection_add_products_confirm')]
  158.     public function bulkAddToCollectionConfirm(Request $request): Response
  159.     {
  160.         $ids $request->get('bulk_add');
  161.         
  162.         $collection_id $request->get('selected_collection');
  163.         $products $this->productRepository->findBy(["id" => $ids]);
  164.         
  165.         $collection $this->collectionRepository->findOneBy(['id' => $collection_id]);
  166.         
  167.         foreach($products as $product){
  168.             $product->addCollection($collection);
  169.             $this->entityManager->persist($product);
  170.             $this->entityManager->flush();
  171.         }
  172.         $url $this->adminUrlGenerator->setController(ProductCrudController::class)->setAction(Action::INDEX)->generateUrl();
  173.         return $this->redirect($url);
  174.     }
  175.     #[Route('{_locale}/myadmin/bulkAddToCollection'name'collection_add_products')]
  176.     public function bulkAddToCollection(Request $request): Response
  177.     {
  178.         $ids $request->get('ids');
  179.         $products $this->productRepository->findBy(["id" => $ids]);
  180.         $collections $this->collectionRepository->findAll();
  181.         return $this->render('admin/actions/bulk_collection_add.twig', [
  182.             'collections' => $collections,
  183.             'products' => $products,
  184.             'target_entity' => "collection"
  185.         ]);
  186.     }
  187.     #[Route('{_locale}/myadmin/bulkActionCollection'name'collection_bulk_add')]
  188.     public function bulkActionCollection(Request $request): Response
  189.     {
  190.         # get all bulk products ids
  191.         $ids $request->request->all('batchActionEntityIds');
  192.         $target_entity $request->get('target_entity');
  193.         $url_map = ["collection" => 'collection_add_products'"category" => 'categorie_add_products'];
  194.         $url $this->adminUrlGenerator->setRoute($url_map[$target_entity],['ids' => $ids,'target_entity' => $target_entity])->generateUrl();
  195.         return $this->redirect($url);
  196.     }
  197.     
  198. }