src/Controller/CategoryController.php line 37

  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\OptionValueRepository;
  8. use App\Repository\ProductRepository;
  9. use App\Repository\ProductVariantRepository;
  10. use Doctrine\ORM\EntityManagerInterface;
  11. use EasyCorp\Bundle\EasyAdminBundle\Config\Action;
  12. use EasyCorp\Bundle\EasyAdminBundle\Router\AdminUrlGenerator;
  13. use Knp\Component\Pager\PaginatorInterface;
  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. class CategoryController extends AbstractController
  19. {
  20.     const PRODUCTS_PER_PAGE 12;
  21.     public function __construct(
  22.         private CategoryRepository $categoryRepository,
  23.         private EntityManagerInterface $entityManager,
  24.         private ProductRepository $productRepository,
  25.         private OptionValueRepository $optionRepository,
  26.         private ProductVariantRepository $variantRepository,
  27.         private PaginatorInterface $paginator,
  28.         private AdminUrlGenerator $adminUrlGenerator 
  29.     ){}
  30.     #[Route('{_locale}/{gender}/category/{id}'name'app_category',requirements:["gender" => "mens|women"],defaults:["gender" => "mens"])]
  31.     public function category(Request $request,$id): Response
  32.     {
  33.         $gender $request->get("gender");
  34.         $genderId $gender == "mens" ;
  35.         
  36.         //template path
  37.         $templatePath $genderId == 'mens/category/category.twig' 'women/category/category.twig' ;
  38.         //current category
  39.         $category $this->categoryRepository->find($id);
  40.         $page max(1,$request->query->getInt('page'));
  41.         // $totalCategoryProducts = count($categoryProducts);
  42.         $totalCategoryProducts $this->categoryRepository->getTotalCount(intval($id));
  43.         
  44.         //main categories (level 1)
  45.         $mainCategories $this->categoryRepository->findBy(["level" => 1]);
  46.         //Men sub categories (level 2)
  47.         $subCategories $this->categoryRepository->findBy(["parentCategory" => $genderId,"level" => 2]);
  48.         $filters = [];
  49.         // Define an array of filter keys
  50.         $filterKeys = ['size''color''price_min''price_max'];
  51.         foreach ($filterKeys as $key) {
  52.             $value $request->get($key);
  53.             if ($value !== null) {
  54.                 $filters[$key] = $value;
  55.             }
  56.         }
  57.         
  58.         $offset max(0$request->query->getInt('offset'0));
  59.         $previous $offset self::PRODUCTS_PER_PAGE;
  60.         $paginatedProducts $this->productRepository->findCategoryProducts($category,$filters);
  61.      
  62.         $paginatedProducts $this->paginator->paginate($paginatedProducts,$page,6);
  63.         // if (!empty($filters)) {
  64.         //     $paginatedProducts = $this->paginator->paginate($paginatedProducts,$page,6);
  65.         //     //dd($filters, $paginatedProducts,empty($filters));
  66.         // }
  67.         $totalOfpages floor($totalCategoryProducts self::PRODUCTS_PER_PAGE) + 1;
  68.         $colors $this->optionRepository->findCategoryColorsTest($category);
  69.         $sizes $this->optionRepository->findCategorySizesTest($category);
  70.         $priceRange $this->variantRepository->findCategoryPriceRange($category);
  71.         $newsLetterSubscriber = new NewsletterSubscriber();
  72.         $form $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
  73.         //TODO: MOVE THIS TO A PRIVATE FUNCTION
  74.         $form->handleRequest($request);
  75.         // dd($form);
  76.         if($form->isSubmitted() && $form->isValid()){
  77.             $newsLetterSubscriber $form->getData();
  78.             $this->entityManager->persist($newsLetterSubscriber);
  79.             $this->entityManager->flush();
  80.         }
  81.         if($filters && count($paginatedProducts) >= 1){
  82.             $path $gender.'/category/category_content.twig';
  83.             $template $this->renderView($path,[
  84.                             "totalOfProducts" => $totalCategoryProducts,
  85.                             "totalOfpages" => $totalOfpages,
  86.                             'next' => min(count($paginatedProducts), $offset self::PRODUCTS_PER_PAGE),
  87.                             "colors" => $colors,
  88.                             "sizes" => $sizes,
  89.                             "priceRange" => $priceRange[0],
  90.                             "products" => $paginatedProducts,
  91.                             "offset" => $offset,
  92.                             "previous" => $previous,
  93.                             "categoryId" => $id,
  94.                             "gender" => $gender,
  95.                         ]);
  96.             return $this->json(["html" => $template,"total" => count($paginatedProducts)]);
  97.         }
  98.         return $this->render($templatePath, [
  99.             'products' => $paginatedProducts,
  100.             'previous' => $offset self::PRODUCTS_PER_PAGE,
  101.             'next' => min(count($paginatedProducts), $offset self::PRODUCTS_PER_PAGE),
  102.             'categoryId' => $id,
  103.             'category' => $category,
  104.             'pageName' => "Category",
  105.             'totalOfpages' => $totalOfpages,
  106.             'totalOfProducts' => $totalCategoryProducts,
  107.             'offset' => $offset,
  108.             'form' => $form,
  109.             'colors' => $colors,
  110.             'sizes' => $sizes,
  111.             'priceRange' => $priceRange[0],
  112.             'subCategories' => $subCategories,
  113.             'mainCategories' => $mainCategories,
  114.             'activePage' => $genderId
  115.         ]);
  116.     }
  117.     #[Route('{_locale}/myadmin/bulkActionCategory'name'category_bulk_add')]
  118.     public function bulkActionCategory(Request $request): Response
  119.     {
  120.         $ids $request->request->all('batchActionEntityIds');
  121.         $url $this->adminUrlGenerator->setRoute('categorie_add_products',['ids' => $ids])->generateUrl();
  122.         return $this->redirect($url);
  123.     }
  124.     #[Route('{_locale}/myadmin/bulkAddToCategorie'name'categorie_add_products')]
  125.     public function bulkAddToCategorie(Request $request): Response
  126.     {
  127.         $ids $request->get('ids');
  128.         $products $this->productRepository->findBy(["id" => $ids]);
  129.         $categories $this->categoryRepository->findAll();
  130.         return $this->render('admin/actions/bulk_category_add.twig', [
  131.             'categories' => $categories,
  132.             'products' => $products,
  133.         ]);
  134.     }
  135.     #[Route('{_locale}/myadmin/bulkAddToCategoryConfirm'name'category_add_products_confirm')]
  136.     public function bulkAddToCategoryConfirm(Request $request): Response
  137.     {
  138.         $ids $request->get('bulk_add');
  139.         
  140.         $category_id $request->get('selected_category');
  141.         $products $this->productRepository->findBy(["id" => $ids]);
  142.         $category $this->categoryRepository->findOneBy(['id' => $category_id]);
  143.                 
  144.         foreach($products as $product){
  145.             $product->addCategory($category);
  146.             $this->entityManager->persist($product);
  147.             $this->entityManager->flush();
  148.         }
  149.         $url $this->adminUrlGenerator->setController(ProductCrudController::class)->setAction(Action::INDEX)->generateUrl();
  150.         return $this->redirect($url);
  151.     }
  152. }