LazyLoadingFragmentHandler.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpKernel\DependencyInjection;
  11. use Psr\Container\ContainerInterface;
  12. use Symfony\Component\HttpFoundation\RequestStack;
  13. use Symfony\Component\HttpKernel\Controller\ControllerReference;
  14. use Symfony\Component\HttpKernel\Fragment\FragmentHandler;
  15. /**
  16. * Lazily loads fragment renderers from the dependency injection container.
  17. *
  18. * @author Fabien Potencier <fabien@symfony.com>
  19. */
  20. class LazyLoadingFragmentHandler extends FragmentHandler
  21. {
  22. /**
  23. * @var array<string, bool>
  24. */
  25. private array $initialized = [];
  26. public function __construct(
  27. private ContainerInterface $container,
  28. RequestStack $requestStack,
  29. bool $debug = false,
  30. ) {
  31. parent::__construct($requestStack, [], $debug);
  32. }
  33. public function render(string|ControllerReference $uri, string $renderer = 'inline', array $options = []): ?string
  34. {
  35. if (!isset($this->initialized[$renderer]) && $this->container->has($renderer)) {
  36. $this->addRenderer($this->container->get($renderer));
  37. $this->initialized[$renderer] = true;
  38. }
  39. return parent::render($uri, $renderer, $options);
  40. }
  41. }