src/Controller/CategoryController.php line 37
<?php
namespace App\Controller;
use App\Controller\Admin\ProductCrudController;
use App\Entity\NewsletterSubscriber;
use App\Form\NewsletterSubscriberType;
use App\Repository\CategoryRepository;
use App\Repository\OptionValueRepository;
use App\Repository\ProductRepository;
use App\Repository\ProductVariantRepository;
use Doctrine\ORM\EntityManagerInterface;
use EasyCorp\Bundle\EasyAdminBundle\Config\Action;
use EasyCorp\Bundle\EasyAdminBundle\Router\AdminUrlGenerator;
use Knp\Component\Pager\PaginatorInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class CategoryController extends AbstractController
{
const PRODUCTS_PER_PAGE = 12;
public function __construct(
private CategoryRepository $categoryRepository,
private EntityManagerInterface $entityManager,
private ProductRepository $productRepository,
private OptionValueRepository $optionRepository,
private ProductVariantRepository $variantRepository,
private PaginatorInterface $paginator,
private AdminUrlGenerator $adminUrlGenerator
){}
#[Route('{_locale}/{gender}/category/{id}', name: 'app_category',requirements:["gender" => "mens|women"],defaults:["gender" => "mens"])]
public function category(Request $request,$id): Response
{
$gender = $request->get("gender");
$genderId = $gender == "mens" ? 1 : 2 ;
//template path
$templatePath = $genderId == 1 ? 'mens/category/category.twig' : 'women/category/category.twig' ;
//current category
$category = $this->categoryRepository->find($id);
$page = max(1,$request->query->getInt('page'));
// $totalCategoryProducts = count($categoryProducts);
$totalCategoryProducts = $this->categoryRepository->getTotalCount(intval($id));
//main categories (level 1)
$mainCategories = $this->categoryRepository->findBy(["level" => 1]);
//Men sub categories (level 2)
$subCategories = $this->categoryRepository->findBy(["parentCategory" => $genderId,"level" => 2]);
$filters = [];
// Define an array of filter keys
$filterKeys = ['size', 'color', 'price_min', 'price_max'];
foreach ($filterKeys as $key) {
$value = $request->get($key);
if ($value !== null) {
$filters[$key] = $value;
}
}
$offset = max(0, $request->query->getInt('offset', 0));
$previous = $offset - self::PRODUCTS_PER_PAGE;
$paginatedProducts = $this->productRepository->findCategoryProducts($category,$filters);
$paginatedProducts = $this->paginator->paginate($paginatedProducts,$page,6);
// if (!empty($filters)) {
// $paginatedProducts = $this->paginator->paginate($paginatedProducts,$page,6);
// //dd($filters, $paginatedProducts,empty($filters));
// }
$totalOfpages = floor($totalCategoryProducts / self::PRODUCTS_PER_PAGE) + 1;
$colors = $this->optionRepository->findCategoryColorsTest($category);
$sizes = $this->optionRepository->findCategorySizesTest($category);
$priceRange = $this->variantRepository->findCategoryPriceRange($category);
$newsLetterSubscriber = new NewsletterSubscriber();
$form = $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
//TODO: MOVE THIS TO A PRIVATE FUNCTION
$form->handleRequest($request);
// dd($form);
if($form->isSubmitted() && $form->isValid()){
$newsLetterSubscriber = $form->getData();
$this->entityManager->persist($newsLetterSubscriber);
$this->entityManager->flush();
}
if($filters && count($paginatedProducts) >= 1){
$path = $gender.'/category/category_content.twig';
$template = $this->renderView($path,[
"totalOfProducts" => $totalCategoryProducts,
"totalOfpages" => $totalOfpages,
'next' => min(count($paginatedProducts), $offset + self::PRODUCTS_PER_PAGE),
"colors" => $colors,
"sizes" => $sizes,
"priceRange" => $priceRange[0],
"products" => $paginatedProducts,
"offset" => $offset,
"previous" => $previous,
"categoryId" => $id,
"gender" => $gender,
]);
return $this->json(["html" => $template,"total" => count($paginatedProducts)]);
}
return $this->render($templatePath, [
'products' => $paginatedProducts,
'previous' => $offset - self::PRODUCTS_PER_PAGE,
'next' => min(count($paginatedProducts), $offset + self::PRODUCTS_PER_PAGE),
'categoryId' => $id,
'category' => $category,
'pageName' => "Category",
'totalOfpages' => $totalOfpages,
'totalOfProducts' => $totalCategoryProducts,
'offset' => $offset,
'form' => $form,
'colors' => $colors,
'sizes' => $sizes,
'priceRange' => $priceRange[0],
'subCategories' => $subCategories,
'mainCategories' => $mainCategories,
'activePage' => $genderId
]);
}
#[Route('{_locale}/myadmin/bulkActionCategory', name: 'category_bulk_add')]
public function bulkActionCategory(Request $request): Response
{
$ids = $request->request->all('batchActionEntityIds');
$url = $this->adminUrlGenerator->setRoute('categorie_add_products',['ids' => $ids])->generateUrl();
return $this->redirect($url);
}
#[Route('{_locale}/myadmin/bulkAddToCategorie', name: 'categorie_add_products')]
public function bulkAddToCategorie(Request $request): Response
{
$ids = $request->get('ids');
$products = $this->productRepository->findBy(["id" => $ids]);
$categories = $this->categoryRepository->findAll();
return $this->render('admin/actions/bulk_category_add.twig', [
'categories' => $categories,
'products' => $products,
]);
}
#[Route('{_locale}/myadmin/bulkAddToCategoryConfirm', name: 'category_add_products_confirm')]
public function bulkAddToCategoryConfirm(Request $request): Response
{
$ids = $request->get('bulk_add');
$category_id = $request->get('selected_category');
$products = $this->productRepository->findBy(["id" => $ids]);
$category = $this->categoryRepository->findOneBy(['id' => $category_id]);
foreach($products as $product){
$product->addCategory($category);
$this->entityManager->persist($product);
$this->entityManager->flush();
}
$url = $this->adminUrlGenerator->setController(ProductCrudController::class)->setAction(Action::INDEX)->generateUrl();
return $this->redirect($url);
}
}