6 require_once(
"libs/composer/vendor/autoload.php");
8 use \ILIAS\UI\Component\Component;
9 use \ILIAS\UI\Renderer;
10 use \ILIAS\UI\Implementation\Render\AbstractComponentRenderer;
23 return "\\ILIAS\\UI\\Component\\Symbol\\Glyph\\Glyph";
29 public $ids = array();
39 use \ILIAS\UI\Component\Component;
40 use \ILIAS\UI\Renderer;
41 use \ILIAS\UI\Implementation\Render\AbstractComponentRenderer;
54 return "\\ILIAS\\UI\\Component\\Counter\\Counter";
61 require_once(__DIR__ .
"/../Base.php");
64 use \ILIAS\UI\Component as
C;
65 use \ILIAS\UI\Implementation\Render\Template;
66 use \ILIAS\UI\Implementation\Render\JavaScriptBinding;
67 use \ILIAS\UI\Implementation\Render\TemplateFactory;
83 public function get(
$name = null)
95 public $files = array();
96 public function getTemplate($file_name, $purge_unfilled_vars, $purge_unused_blocks)
98 $file_name = realpath(__DIR__ .
"/../../../" . $file_name);
99 $this->files[$file_name] = array($purge_unfilled_vars, $purge_unused_blocks);
101 if (!file_exists($file_name)) {
102 throw new \InvalidArgumentException();
138 $r = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\GlyphNonAbstractRenderer(
145 $tpl = $r->_getTemplate(
"tpl.glyph.html",
true,
false);
147 $expected = array( realpath(__DIR__ .
"/../../../src/UI/templates/default/Symbol/tpl.glyph.html")
148 => array(
true,
false)
151 $this->assertEquals($expected, $this->tpl_factory->files);
156 $r = new \ILIAS\UI\Implementation\Component\Counter\CounterNonAbstractRenderer(
165 $tpl = $r->_getTemplate(
"tpl.counter_foo.html",
true,
false);
166 $this->assertFalse(
"We should not get here");
170 $expected = array( realpath(__DIR__ .
"/../../src/UI/templates/default/Counter/tpl.counter_foo.html")
171 => array(
true,
false)
173 $this->assertEquals($expected, $this->tpl_factory->files);
178 $r = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\GlyphNonAbstractRendererWithJS(
186 $g = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\Glyph(\
ILIAS\
UI\
Component\Symbol\Glyph\Glyph::SETTINGS,
"aria_label");
189 $g = $g->withOnLoadCode(
function ($id) use (&$ids) {
195 $this->assertEquals($this->js_binding->ids, $ids);
196 $this->assertEquals(array(
"id_1"), $ids);
197 $this->assertEquals(array(
"ID: id_1"), $this->js_binding->on_load_code);
202 $r = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\GlyphNonAbstractRendererWithJS(
210 $g = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\Glyph(\
ILIAS\
UI\
Component\Symbol\Glyph\Glyph::SETTINGS,
"aria_label");
212 $g = $g->withOnLoadCode(
function ($id) {
218 $this->assertFalse(
"This should not happen...");
220 $this->assertTrue(
true);
An entity that renders components to a string output.
getComponentInterfaceName()
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
Class ChatMainBarProvider .
getTemplate($file_name, $purge_unfilled_vars, $purge_unused_blocks)
Get template instance.
render(Component $component, Renderer $default_renderer)
render($component, ?\ILIAS\UI\Renderer $root=null)
test_bindJavaScript_no_string()
render(Component $component, Renderer $default_renderer)
setVariable($name, $value)
Set a variable in the current block.
render(Component $component, Renderer $default_renderer)
Provides common functionality for UI tests.
withAdditionalContext(C\Component $context)
addOnLoadCode($code)
Add some javascript to be executed on_load of the rendered page.
setCurrentBlock($name)
Set the block to work on.
test_getTemplate_unsuccessfull()
test_getTemplate_successfull()
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getUIFactory()
Get a UI factory.
getComponentInterfaceName()
parseCurrentBlock()
Parse the block that is currently worked on.
getTemplate($name, $purge_unfilled_vars, $purge_unused_blocks)
Get template of component this renderer is made for.
Interface for a factory that provides templates.
test_bindJavaScript_successfull()
renderAsync($component, ?\ILIAS\UI\Renderer $root=null)
Base class for all component renderers.
touchBlock($name)
Touch a block without working further on it.
bindJavaScript(JavaScriptBindable $component)
Bind the component to JavaScript.