src/Controller/CollectionController.php line 48
<?php
namespace App\Controller;
use App\Controller\Admin\ProductCrudController;
use App\Entity\NewsletterSubscriber;
use App\Form\NewsletterSubscriberType;
use App\Repository\CategoryRepository;
use App\Repository\OptionRepository;
use App\Repository\OptionValueRepository;
use App\Repository\ProductCollectionRepository;
use App\Repository\ProductRepository;
use App\Repository\ProductVariantRepository;
use Doctrine\ORM\EntityManagerInterface;
use EasyCorp\Bundle\EasyAdminBundle\Router\AdminUrlGenerator;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use EasyCorp\Bundle\EasyAdminBundle\Config\Action;
use Knp\Component\Pager\Pagination\PaginationInterface;
use Knp\Component\Pager\PaginatorInterface;
class CollectionController extends AbstractController
{
public function __construct(
private CategoryRepository $categoryRepository,
private ProductCollectionRepository $collectionRepository,
private ProductRepository $productRepository,
private OptionValueRepository $optionRepository,
private ProductVariantRepository $variantRepository,
private EntityManagerInterface $entityManager,
private AdminUrlGenerator $adminUrlGenerator,
private PaginatorInterface $paginator
)
{}
#[Route('/collection', name: 'app_collection_index')]
public function index(): Response
{
return $this->render('collection/index.html.twig', [
'controller_name' => 'CollectionController',
]);
}
#[Route('{_locale}/{gender}/collection/{id}',name: 'app_collection',requirements:["gender" => "mens|women"],defaults:["gender" => "mens"])]
public function collection(Request $request,$id): Response
{
$genderId = $request->get('gender') == "mens" ? 1 : 2;
//main categories (level 1)
$mainCategories = $this->categoryRepository->findBy(["level" => 1]);
//Men sub categories (level 2)
$subCategories = $this->categoryRepository->findBy(["parentCategory" => $genderId,"level" => 2]);
//template path
$templatePath = $genderId == 1 ? 'mens/collection/collection_page.twig' : 'women/collection/collection_page.twig' ;
$filterTemplate = $genderId == 1 ? 'mens/collection/collection_content.twig' : 'women/collection/collection_content.twig' ;
//filters
//we are defining an array of filter keys
$filterKeys = ['size', 'color', 'price_min', 'price_max'];
$filters = [];
foreach ($filterKeys as $key) {
$value = $request->get($key);
if ($value !== null) {
$filters[$key] = $value;
}
}
//dd($filters);
//current collection
$collection = $this->collectionRepository->find($id) ;
// Pagination params
$page = max(1,$request->query->getInt('page'));
$offset = max(1, $request->query->getInt('offset', 0));
//dd($filters);
//getting products with unique colors
$products = $this->productRepository->findProductsByCollection($collection,$page,$filters);
if (!empty($products)) {
$products = $this->paginator->paginate($products,$page,8);
}
// dd( $products);
$totalOfpages = floor(count($products) / 4);
$previous = $offset - 4 > 0;
// TODO: comprende le focntionnment
$next = min(count($products), $offset + 4);
// Return new template for ajax requests, used for filtring products
if($filters){
$template = $this->renderView($filterTemplate,["products" => $products]);
return $this->json(["html" => $template]);
}
//data needed for filtring
$colors = $this->optionRepository->findCollectionColors($collection);
$sizes = $this->optionRepository->findCollectionSizes($collection);
$priceRange = $this->variantRepository->findCollectionPriceRange($collection);
//newsletter form
$newsLetterSubscriber = new NewsletterSubscriber();
$form = $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
$form->handleRequest($request);
if($form->isSubmitted() && $form->isValid()){
$newsLetterSubscriber = $form->getData();
$this->entityManager->persist($newsLetterSubscriber);
$this->entityManager->flush();
}
return $this->render($templatePath,[
'subCategories' => $subCategories,
'mainCategories' => $mainCategories,
'activePage' => "Collection",
'products' => $products,
'form' => $form,
'sizes' => $sizes,
'colors' => $colors,
'priceRange' => $priceRange[0],
'priceStep' => 0.5,
'collectionId' => $id,
'previous' => $previous,
'next' => $next,
'totalOfpages' => $totalOfpages
]);
}
/**
* To refacotre: some unused code must be removed
*/
#[Route('{_locale}/{gender}/collections', name: 'app_collection_list',requirements:["gender" => "mens|women"],defaults:["gender" => "mens"])]
public function collections(Request $request): Response
{
$gender = $request->get("gender");
$genderId = $gender == "mens" ? 1 : 2;
//menu elements
$menuCategories = $this->categoryRepository->findAll();
//main categories (level 1)
$mainCategories = $this->categoryRepository->findBy(["level" => 1]);
//Men sub categories (level 2)
$subCategories = $this->categoryRepository->findBy(["parentCategory" => $genderId,"level" => 2]);
$collections = $this->collectionRepository->findBy(["gender" => $genderId]);
$newsLetterSubscriber = new NewsletterSubscriber();
$form = $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
// newsltetter
$form->handleRequest($request);
// dd($form);
if($form->isSubmitted() && $form->isValid()){
$newsLetterSubscriber = $form->getData();
$this->entityManager->persist($newsLetterSubscriber);
$this->entityManager->flush();
}
//END TEMPLATE ELEMENTS
$offset = max(0, $request->query->getInt('offset', 0));
// $categoryList = $this->categoryRepository->getPaginatedCategories($offset);
return $this->render($gender.'/collection/collections.twig', [
'subCategories' => $subCategories,
'mainCategories' => $mainCategories,
'categories' => $menuCategories,
'categoryList' => '',
'previous' => $offset - 10,
// 'next' => min(count($categoryList), $offset + 10),
'pageName' => "Categories",
'form' => $form,
'collections' => $collections,
'activePage' => "Collections"
]);
}
#[Route('{_locale}/myadmin/bulkAddToCollectionConfirm', name: 'collection_add_products_confirm')]
public function bulkAddToCollectionConfirm(Request $request): Response
{
$ids = $request->get('bulk_add');
$collection_id = $request->get('selected_collection');
$products = $this->productRepository->findBy(["id" => $ids]);
$collection = $this->collectionRepository->findOneBy(['id' => $collection_id]);
foreach($products as $product){
$product->addCollection($collection);
$this->entityManager->persist($product);
$this->entityManager->flush();
}
$url = $this->adminUrlGenerator->setController(ProductCrudController::class)->setAction(Action::INDEX)->generateUrl();
return $this->redirect($url);
}
#[Route('{_locale}/myadmin/bulkAddToCollection', name: 'collection_add_products')]
public function bulkAddToCollection(Request $request): Response
{
$ids = $request->get('ids');
$products = $this->productRepository->findBy(["id" => $ids]);
$collections = $this->collectionRepository->findAll();
return $this->render('admin/actions/bulk_collection_add.twig', [
'collections' => $collections,
'products' => $products,
'target_entity' => "collection"
]);
}
#[Route('{_locale}/myadmin/bulkActionCollection', name: 'collection_bulk_add')]
public function bulkActionCollection(Request $request): Response
{
# get all bulk products ids
$ids = $request->request->all('batchActionEntityIds');
$target_entity = $request->get('target_entity');
$url_map = ["collection" => 'collection_add_products', "category" => 'categorie_add_products'];
$url = $this->adminUrlGenerator->setRoute($url_map[$target_entity],['ids' => $ids,'target_entity' => $target_entity])->generateUrl();
return $this->redirect($url);
}
}