src/Controller/ProductController.php line 31

  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\NewsletterSubscriber;
  4. use App\Form\NewsletterSubscriberType;
  5. use App\Repository\CategoryRepository;
  6. use App\Repository\OptionValueRepository;
  7. use App\Repository\ProductRepository;
  8. use App\Repository\ProductVariantRepository;
  9. use Doctrine\ORM\EntityManagerInterface;
  10. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\Routing\Annotation\Route;
  14. class ProductController extends AbstractController
  15. {
  16.     public function __construct(
  17.             private ProductRepository $productRepository,
  18.             private CategoryRepository $categoryRepository,
  19.             private ProductVariantRepository $variantRepository,
  20.             private OptionValueRepository $optionRepository,
  21.             private EntityManagerInterface $entityManager
  22.         )
  23.     {}
  24.     
  25.     #[Route('{_locale}/{gender}/product/{pid}/{vid}'name'app_product_page')]
  26.     public function product($pid,$vid,Request $request): Response
  27.     {
  28.         $genderId $request->get("gender") == "mens" 2;
  29.         //main categories (level 1)
  30.         $mainCategories $this->categoryRepository->findBy(["level" => 1]);
  31.          //Men sub categories (level 2)
  32.         $subCategories $this->categoryRepository->findBy(["parentCategory" => $genderId,"level" => 2]);
  33.         // Getting product
  34.         $product $this->productRepository->find($pid);
  35.         // getting variant 
  36.         $variant $this->variantRepository->find($vid);
  37.         $variants $product->getVariants();
  38.         //TODO: this block of code must be ractored
  39.         $currentColor $variant->getOptionValues()->get(0)->getValue();
  40.         $linkedVariants $this->variantRepository->findLinkedVariants($product,$currentColor);     
  41.         $option $product->getOptions()->first();
  42.         $option2 $product->getOptions()->get(1);
  43.         $colorOptions $this->optionRepository->findUniqueColors($variants,$option);
  44.         $sizeOptions $this->optionRepository->findUniqueSizes($linkedVariants,$option2);
  45.         $productCategories $product->getCategories();
  46.         // dd($productCategories->first());
  47.         $relatedProducts $this->productRepository->findRelatedProducts($productCategories);
  48.         // newsletter form handling
  49.         $newsLetterSubscriber = new NewsletterSubscriber();
  50.         $form $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
  51.         $form->handleRequest($request);
  52.         // dd($form);
  53.         if($form->isSubmitted() && $form->isValid()){
  54.             $newsLetterSubscriber $form->getData();
  55.             $this->entityManager->persist($newsLetterSubscriber);
  56.             $this->entityManager->flush();
  57.         }
  58.         # A product template should created on the women folder
  59.         $templatePath $genderId == 'mens/product/product_page.twig' 'women/product/product_page.twig';
  60.         
  61.         return $this->render($templatePath, [
  62.             'product' => $product,
  63.             'variant' => $variant,
  64.             'relatedProducts' => $relatedProducts,
  65.             'sold_items' => random_int(1050),
  66.             'active_viewers' => random_int(520),
  67.             'options' => $colorOptions,
  68.             'sizeOptions' => $sizeOptions,
  69.             'pageName' => $product->getName(),
  70.             'mainCategories' => $mainCategories,
  71.             'subCategories' => $subCategories,
  72.             'form' => $form,
  73.             'activePage' => "Product"
  74.         ]);
  75.     }    
  76. }