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();
134 $this->image_path_resolver = $this->getMockBuilder(
ILIAS\
UI\Implementation\Render\ImagePathResolver::class)
140 $r = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\GlyphNonAbstractRenderer(
146 $this->image_path_resolver
148 $tpl = $r->_getTemplate(
"tpl.glyph.html",
true,
false);
150 $expected = array( realpath(__DIR__ .
"/../../../src/UI/templates/default/Symbol/tpl.glyph.html")
151 => array(
true,
false)
154 $this->assertEquals($expected, $this->tpl_factory->files);
159 $r = new \ILIAS\UI\Implementation\Component\Counter\CounterNonAbstractRenderer(
165 $this->image_path_resolver
169 $tpl = $r->_getTemplate(
"tpl.counter_foo.html",
true,
false);
170 $this->assertFalse(
"We should not get here");
174 $expected = array( realpath(__DIR__ .
"/../../src/UI/templates/default/Counter/tpl.counter_foo.html")
175 => array(
true,
false)
177 $this->assertEquals($expected, $this->tpl_factory->files);
182 $r = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\GlyphNonAbstractRendererWithJS(
188 $this->image_path_resolver
191 $g = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\Glyph(\
ILIAS\
UI\
Component\Symbol\Glyph\Glyph::SETTINGS,
"aria_label");
194 $g = $g->withOnLoadCode(
function ($id) use (&$ids) {
200 $this->assertEquals($this->js_binding->ids, $ids);
201 $this->assertEquals(array(
"id_1"), $ids);
202 $this->assertEquals(array(
"ID: id_1"), $this->js_binding->on_load_code);
207 $r = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\GlyphNonAbstractRendererWithJS(
213 $this->image_path_resolver
216 $g = new \ILIAS\UI\Implementation\Component\Symbol\Glyph\Glyph(\
ILIAS\
UI\
Component\Symbol\Glyph\Glyph::SETTINGS,
"aria_label");
218 $g = $g->withOnLoadCode(
function ($id) {
224 $this->assertFalse(
"This should not happen...");
226 $this->assertTrue(
true);
An entity that renders components to a string output.
getComponentInterfaceName()
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.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
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.