vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateEventRenderer.php line 40

  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\UiBundle\Renderer;
  12. use Sylius\Bundle\UiBundle\Registry\TemplateBlock;
  13. use Sylius\Bundle\UiBundle\Registry\TemplateBlockRegistryInterface;
  14. final class HtmlDebugTemplateEventRenderer implements TemplateEventRendererInterface
  15. {
  16.     public function __construct(
  17.         private TemplateEventRendererInterface $templateEventRenderer,
  18.         private TemplateBlockRegistryInterface $templateBlockRegistry,
  19.     ) {
  20.     }
  21.     public function render(array $eventNames, array $context = []): string
  22.     {
  23.         $shouldRenderHtmlDebug $this->shouldRenderHtmlDebug($this->templateBlockRegistry->findEnabledForEvents($eventNames));
  24.         $renderedParts = [];
  25.         if ($shouldRenderHtmlDebug) {
  26.             $renderedParts[] = sprintf(
  27.                 '<!-- BEGIN EVENT | event name: "%s" -->',
  28.                 implode(', '$eventNames),
  29.             );
  30.         }
  31.         $renderedParts[] = $this->templateEventRenderer->render($eventNames$context);
  32.         if ($shouldRenderHtmlDebug) {
  33.             $renderedParts[] = sprintf(
  34.                 '<!-- END EVENT | event name: "%s" -->',
  35.                 implode(', '$eventNames),
  36.             );
  37.         }
  38.         return implode("\n"$renderedParts);
  39.     }
  40.     /**
  41.      * @param TemplateBlock[] $templateBlocks
  42.      */
  43.     private function shouldRenderHtmlDebug(array $templateBlocks): bool
  44.     {
  45.         return count($templateBlocks) === || count(array_filter($templateBlocks, static fn (TemplateBlock $templateBlock): bool => strrpos($templateBlock->getTemplate(), '.html.twig') !== false)) >= 1;
  46.     }
  47. }