Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 24 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
TextAreaRenderer | |
0.00% |
0 / 24 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
render | |
0.00% |
0 / 22 |
|
0.00% |
0 / 1 |
6 |
1 | <?php |
2 | /** |
3 | * TextAreaRenderer.php |
4 | * |
5 | * This file is part of the Codex PHP library, which provides a PHP-based interface for creating |
6 | * UI components consistent with the Codex design system. |
7 | * |
8 | * The `TextAreaRenderer` class leverages the `TemplateRenderer` and `Sanitizer` utilities to ensure the |
9 | * component object is rendered according to Codex design system standards. |
10 | * |
11 | * @category Renderer |
12 | * @package Codex\Renderer |
13 | * @since 0.1.0 |
14 | * @author Doğu Abaris <abaris@null.net> |
15 | * @license https://www.gnu.org/copyleft/gpl.html GPL-2.0-or-later |
16 | * @link https://doc.wikimedia.org/codex/main/ Codex Documentation |
17 | */ |
18 | |
19 | namespace Wikimedia\Codex\Renderer; |
20 | |
21 | use InvalidArgumentException; |
22 | use Wikimedia\Codex\Component\TextArea; |
23 | use Wikimedia\Codex\Contract\Renderer\IRenderer; |
24 | use Wikimedia\Codex\Contract\Renderer\ITemplateRenderer; |
25 | use Wikimedia\Codex\Traits\AttributeResolver; |
26 | use Wikimedia\Codex\Utility\Sanitizer; |
27 | |
28 | /** |
29 | * TextAreaRenderer is responsible for rendering the HTML markup |
30 | * for a TextArea component using a Mustache template. |
31 | * |
32 | * This class uses the `TemplateRenderer` and `Sanitizer` utilities to manage |
33 | * the template rendering process, ensuring that the component object's HTML |
34 | * output adheres to the Codex design system's standards. |
35 | * |
36 | * @category Renderer |
37 | * @package Codex\Renderer |
38 | * @since 0.1.0 |
39 | * @author Doğu Abaris <abaris@null.net> |
40 | * @license https://www.gnu.org/copyleft/gpl.html GPL-2.0-or-later |
41 | * @link https://doc.wikimedia.org/codex/main/ Codex Documentation |
42 | */ |
43 | class TextAreaRenderer implements IRenderer { |
44 | |
45 | /** |
46 | * Use the AttributeResolver trait |
47 | */ |
48 | use AttributeResolver; |
49 | |
50 | /** |
51 | * The sanitizer instance used for content sanitization. |
52 | */ |
53 | private Sanitizer $sanitizer; |
54 | |
55 | /** |
56 | * The template renderer instance. |
57 | */ |
58 | private ITemplateRenderer $templateRenderer; |
59 | |
60 | /** |
61 | * Constructor to initialize the TextAreaRenderer with a sanitizer and a template renderer. |
62 | * |
63 | * @since 0.1.0 |
64 | * @param Sanitizer $sanitizer The sanitizer instance used for content sanitization. |
65 | * @param ITemplateRenderer $templateRenderer The template renderer instance. |
66 | */ |
67 | public function __construct( Sanitizer $sanitizer, ITemplateRenderer $templateRenderer ) { |
68 | $this->sanitizer = $sanitizer; |
69 | $this->templateRenderer = $templateRenderer; |
70 | } |
71 | |
72 | /** |
73 | * Renders the HTML for a textarea component. |
74 | * |
75 | * Uses the provided TextArea component to generate HTML markup adhering to the Codex design system. |
76 | * |
77 | * @since 0.1.0 |
78 | * @param TextArea $component The TextArea component to render. |
79 | * @return string The rendered HTML string for the component. |
80 | */ |
81 | public function render( $component ): string { |
82 | if ( !$component instanceof TextArea ) { |
83 | throw new InvalidArgumentException( "Expected instance of TextArea, got " . get_class( $component ) ); |
84 | } |
85 | |
86 | $textareaData = [ |
87 | 'id' => $this->sanitizer->sanitizeText( $component->getId() ), |
88 | 'name' => $this->sanitizer->sanitizeText( $component->getName() ), |
89 | 'placeholder' => $this->sanitizer->sanitizeText( $component->getPlaceholder() ), |
90 | 'value' => $this->sanitizer->sanitizeText( $component->getValue() ), |
91 | 'isDisabled' => $component->isDisabled(), |
92 | 'isReadonly' => $component->isReadonly(), |
93 | 'hasStartIcon' => $component->hasStartIcon(), |
94 | 'hasEndIcon' => $component->hasEndIcon(), |
95 | 'startIconClass' => $this->sanitizer->sanitizeText( $component->getStartIconClass() ), |
96 | 'endIconClass' => $this->sanitizer->sanitizeText( $component->getEndIconClass() ), |
97 | 'status' => $component->getStatus(), |
98 | 'textAreaAttributes' => $this->resolve( |
99 | $this->sanitizer->sanitizeAttributes( $component->getTextareaAttributes() ) |
100 | ), |
101 | 'wrapperAttributes' => $this->resolve( |
102 | $this->sanitizer->sanitizeAttributes( $component->getWrapperAttributes() ) |
103 | ), |
104 | ]; |
105 | |
106 | return $this->templateRenderer->render( 'text-area.mustache', $textareaData ); |
107 | } |
108 | } |