Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 24
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
TextInputRenderer
0.00% covered (danger)
0.00%
0 / 24
0.00% covered (danger)
0.00%
0 / 2
12
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 render
0.00% covered (danger)
0.00%
0 / 22
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2/**
3 * TextInputRenderer.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 `TextInputRenderer` class leverages the `TemplateParser` 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
19namespace Wikimedia\Codex\Renderer;
20
21use InvalidArgumentException;
22use Wikimedia\Codex\Component\TextInput;
23use Wikimedia\Codex\Contract\Renderer\IRenderer;
24use Wikimedia\Codex\Parser\TemplateParser;
25use Wikimedia\Codex\Traits\AttributeResolver;
26use Wikimedia\Codex\Utility\Sanitizer;
27
28/**
29 * TextInputRenderer is responsible for rendering the HTML markup
30 * for a TextInput component using a Mustache template.
31 *
32 * This class uses the `TemplateParser` 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 */
43class TextInputRenderer 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 parser instance.
57     */
58    private TemplateParser $templateParser;
59
60    /**
61     * Constructor to initialize the TextInputRenderer with a sanitizer and a template parser.
62     *
63     * @since 0.1.0
64     * @param Sanitizer $sanitizer The sanitizer instance used for content sanitization.
65     * @param TemplateParser $templateParser The template parser instance.
66     */
67    public function __construct( Sanitizer $sanitizer, TemplateParser $templateParser ) {
68        $this->sanitizer = $sanitizer;
69        $this->templateParser = $templateParser;
70    }
71
72    /**
73     * Renders the HTML for a text input component.
74     *
75     * Uses the provided TextInput component to generate HTML markup adhering to the Codex design system.
76     *
77     * @since 0.1.0
78     * @param TextInput $component The TextInput component to render.
79     * @return string The rendered HTML string for the component.
80     */
81    public function render( $component ): string {
82        if ( !$component instanceof TextInput ) {
83            throw new InvalidArgumentException( "Expected instance of TextInput, got " . get_class( $component ) );
84        }
85
86        $textInputData = [
87            'inputId' => $this->sanitizer->sanitizeText( $component->getInputId() ),
88            'type' => $this->sanitizer->sanitizeText( $component->getType() ),
89            'name' => $this->sanitizer->sanitizeText( $component->getName() ),
90            'isDisabled' => $component->isDisabled(),
91            'value' => $this->sanitizer->sanitizeText( $component->getValue() ),
92            'placeholder' => $this->sanitizer->sanitizeText( $component->getPlaceholder() ),
93            'hasStartIcon' => $component->hasStartIcon(),
94            'startIconClass' => $this->sanitizer->sanitizeText( $component->getStartIconClass() ),
95            'hasEndIcon' => $component->hasEndIcon(),
96            'endIconClass' => $this->sanitizer->sanitizeText( $component->getEndIconClass() ),
97            'status' => $component->getStatus(),
98            'inputAttributes' => $this->resolve(
99                $this->sanitizer->sanitizeAttributes( $component->getInputAttributes() )
100            ),
101            'wrapperAttributes' => $this->resolve(
102                $this->sanitizer->sanitizeAttributes( $component->getWrapperAttributes() )
103            ),
104        ];
105
106        return $this->templateParser->processTemplate( 'text-input', $textInputData );
107    }
108}