src/Controller/ProductController.php line 31
<?php
namespace App\Controller;
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 Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ProductController extends AbstractController
{
public function __construct(
private ProductRepository $productRepository,
private CategoryRepository $categoryRepository,
private ProductVariantRepository $variantRepository,
private OptionValueRepository $optionRepository,
private EntityManagerInterface $entityManager
)
{}
#[Route('{_locale}/{gender}/product/{pid}/{vid}', name: 'app_product_page')]
public function product($pid,$vid,Request $request): 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]);
// Getting product
$product = $this->productRepository->find($pid);
// getting variant
$variant = $this->variantRepository->find($vid);
$variants = $product->getVariants();
//TODO: this block of code must be ractored
$currentColor = $variant->getOptionValues()->get(0)->getValue();
$linkedVariants = $this->variantRepository->findLinkedVariants($product,$currentColor);
$option = $product->getOptions()->first();
$option2 = $product->getOptions()->get(1);
$colorOptions = $this->optionRepository->findUniqueColors($variants,$option);
$sizeOptions = $this->optionRepository->findUniqueSizes($linkedVariants,$option2);
$productCategories = $product->getCategories();
// dd($productCategories->first());
$relatedProducts = $this->productRepository->findRelatedProducts($productCategories);
// newsletter form handling
$newsLetterSubscriber = new NewsletterSubscriber();
$form = $this->createForm(NewsletterSubscriberType::class,$newsLetterSubscriber);
$form->handleRequest($request);
// dd($form);
if($form->isSubmitted() && $form->isValid()){
$newsLetterSubscriber = $form->getData();
$this->entityManager->persist($newsLetterSubscriber);
$this->entityManager->flush();
}
# A product template should created on the women folder
$templatePath = $genderId == 1 ? 'mens/product/product_page.twig' : 'women/product/product_page.twig';
return $this->render($templatePath, [
'product' => $product,
'variant' => $variant,
'relatedProducts' => $relatedProducts,
'sold_items' => random_int(10, 50),
'active_viewers' => random_int(5, 20),
'options' => $colorOptions,
'sizeOptions' => $sizeOptions,
'pageName' => $product->getName(),
'mainCategories' => $mainCategories,
'subCategories' => $subCategories,
'form' => $form,
'activePage' => "Product"
]);
}
}