refactor(view-components): use CI4's View Decorators to render components

This commit is contained in:
Yassine Doghri 2022-10-14 15:29:01 +00:00
commit a3ebd6c9a4
6 changed files with 42 additions and 181 deletions

View file

@ -0,0 +1,38 @@
<?php
declare(strict_types=1);
namespace ViewComponents;
use CodeIgniter\View\ViewDecoratorInterface;
/**
* Class Decorator
*
* Enables rendering of View Components into the views.
*
* Borrowed and adapted from https://github.com/lonnieezell/Bonfire2/
*/
class Decorator implements ViewDecoratorInterface
{
private static ?ComponentRenderer $components = null;
public static function decorate(string $html): string
{
$components = self::factory();
return $components->render($html);
}
/**
* Factory method to create a new instance of ComponentRenderer
*/
private static function factory(): ComponentRenderer
{
if (self::$components === null) {
self::$components = new ComponentRenderer();
}
return self::$components;
}
}