Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 29 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
| CardRenderer | |
0.00% |
0 / 29 |
|
0.00% |
0 / 2 |
42 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| render | |
0.00% |
0 / 27 |
|
0.00% |
0 / 1 |
30 | |||
| 1 | <?php |
| 2 | declare( strict_types = 1 ); |
| 3 | |
| 4 | /** |
| 5 | * CardRenderer.php |
| 6 | * |
| 7 | * This file is part of the Codex PHP library, which provides a PHP-based interface for creating |
| 8 | * UI components consistent with the Codex design system. |
| 9 | * |
| 10 | * The `CardRenderer` class leverages the `TemplateParser` and `Sanitizer` utilities to ensure the |
| 11 | * component object is rendered according to Codex design system standards. |
| 12 | * |
| 13 | * @category Renderer |
| 14 | * @package Codex\Renderer |
| 15 | * @since 0.1.0 |
| 16 | * @author Doğu Abaris <abaris@null.net> |
| 17 | * @license https://www.gnu.org/copyleft/gpl.html GPL-2.0-or-later |
| 18 | * @link https://doc.wikimedia.org/codex/main/ Codex Documentation |
| 19 | */ |
| 20 | |
| 21 | namespace Wikimedia\Codex\Renderer; |
| 22 | |
| 23 | use InvalidArgumentException; |
| 24 | use Wikimedia\Codex\Component\Card; |
| 25 | use Wikimedia\Codex\Contract\Component; |
| 26 | use Wikimedia\Codex\Contract\Renderer; |
| 27 | use Wikimedia\Codex\Parser\TemplateParser; |
| 28 | use Wikimedia\Codex\Utility\Sanitizer; |
| 29 | |
| 30 | /** |
| 31 | * CardRenderer is responsible for rendering the HTML markup |
| 32 | * for a Card component using a Mustache template. |
| 33 | * |
| 34 | * This class uses the `TemplateParser` and `Sanitizer` utilities to manage |
| 35 | * the template rendering process, ensuring that the component object's HTML |
| 36 | * output adheres to the Codex design system's standards. |
| 37 | * |
| 38 | * @category Renderer |
| 39 | * @package Codex\Renderer |
| 40 | * @since 0.1.0 |
| 41 | * @author Doğu Abaris <abaris@null.net> |
| 42 | * @license https://www.gnu.org/copyleft/gpl.html GPL-2.0-or-later |
| 43 | * @link https://doc.wikimedia.org/codex/main/ Codex Documentation |
| 44 | */ |
| 45 | class CardRenderer extends Renderer { |
| 46 | |
| 47 | /** |
| 48 | * The template parser instance. |
| 49 | */ |
| 50 | private TemplateParser $templateParser; |
| 51 | |
| 52 | /** |
| 53 | * Constructor to initialize the CardRenderer with a sanitizer and a template parser. |
| 54 | * |
| 55 | * @since 0.1.0 |
| 56 | * @param Sanitizer $sanitizer The sanitizer instance used for content sanitization. |
| 57 | * @param TemplateParser $templateParser The template parser instance. |
| 58 | */ |
| 59 | public function __construct( Sanitizer $sanitizer, TemplateParser $templateParser ) { |
| 60 | parent::__construct( $sanitizer ); |
| 61 | $this->templateParser = $templateParser; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Renders the HTML for a card component. |
| 66 | * |
| 67 | * Uses the provided Card component to generate HTML markup adhering to the Codex design system. |
| 68 | * |
| 69 | * @since 0.1.0 |
| 70 | * @param Component $component The Card object to render. |
| 71 | * @return string The rendered HTML string for the component. |
| 72 | */ |
| 73 | public function render( Component $component ): string { |
| 74 | if ( !$component instanceof Card ) { |
| 75 | throw new InvalidArgumentException( "Expected instance of Card, got " . get_class( $component ) ); |
| 76 | } |
| 77 | |
| 78 | $thumbnail = $component->getThumbnail(); |
| 79 | $thumbnailData = null; |
| 80 | if ( $thumbnail ) { |
| 81 | $thumbnailData = [ |
| 82 | 'id' => $this->sanitizer->sanitizeText( $thumbnail->getId() ), |
| 83 | 'coreClass' => 'cdx-card__thumbnail', |
| 84 | 'backgroundImage' => $thumbnail->getBackgroundImage() ? |
| 85 | $this->sanitizer->sanitizeUrl( $thumbnail->getBackgroundImage() ) : null, |
| 86 | 'placeholderClass' => $thumbnail->getPlaceholderClass(), |
| 87 | 'extraClasses' => $this->getExtraClasses( $thumbnail->getAttributes() ), |
| 88 | 'attributes' => $this->getOtherAttributes( $thumbnail->getAttributes() ), |
| 89 | ]; |
| 90 | } |
| 91 | |
| 92 | $cardData = [ |
| 93 | 'id' => $component->getId(), |
| 94 | 'tag' => $component->getUrl() !== '' ? 'a' : 'span', |
| 95 | 'title-html' => $this->sanitizer->sanitizeText( $component->getTitle() ), |
| 96 | 'description-html' => $this->sanitizer->sanitizeText( $component->getDescription() ), |
| 97 | 'supportingText-html' => $this->sanitizer->sanitizeText( $component->getSupportingText() ), |
| 98 | 'url' => $this->sanitizer->sanitizeUrl( $component->getUrl() ), |
| 99 | 'iconClass' => $component->getIconClass(), |
| 100 | 'thumbnail' => $thumbnailData, |
| 101 | 'extraClasses' => $this->getExtraClasses( $component->getAttributes() ), |
| 102 | 'attributes' => $this->getOtherAttributes( $component->getAttributes() ), |
| 103 | ]; |
| 104 | |
| 105 | return $this->templateParser->processTemplate( 'card', $cardData ); |
| 106 | } |
| 107 | } |