<?php
namespace App\Controller;
use App\Entity\ActivityArea;
use App\Entity\Configuration;
use App\Entity\ConfigurationType;
use App\Entity\ProductOption;
use App\Manager\ConfigurationManager;
use App\Service\GoogleApiService;
use App\Service\GrcService;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
#[Route('/', name: 'app_configurator_')]
class ConfiguratorController extends AbstractController
{
#[Route('/', name: 'init')]
public function init(ConfigurationManager $manager): RedirectResponse
{
return $this->redirectToRoute('app_configurator_config', [
'id' => $manager->createConfiguration(ConfigurationType::MOBILIER)->getId()
]);
}
#[Route('/config/{id}', name: 'config')]
public function config(EntityManagerInterface $manager, Configuration $configuration): Response
{
$slices = $manager->getRepository(ProductOption::class)->getMinAndMaxValueByName();
$activity_areas = $manager->getRepository(ActivityArea::class)->findBy([], ['name' => 'asc']);
$types = $manager->getRepository(ConfigurationType::class)->findBy([], ['name' => 'asc']);
return $this->render('configurator/config.html.twig', compact(
'configuration',
'slices',
'activity_areas',
'types'
));
}
}