ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TestComponent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
32 
33 class TestComponent implements Component
34 {
35  use ComponentHelper;
36 
37  public string $text;
38 
39  public function __construct(string $text)
40  {
41  $this->text = $text;
42  }
43 }
44 
46 {
47  use ComponentHelper;
49 
50  public string $text;
51 
52  public function __construct(string $text)
53  {
54  $this->text = $text;
55  }
56 }
57 
58 class Renderer implements ComponentRenderer
59 {
62  public \ILIAS\Language\Language $lng;
64 
65  final public function __construct(Factory $ui_factory, TemplateFactory $tpl_factory, \ILIAS\Language\Language $lng, JavaScriptBinding $js_binding)
66  {
67  $this->ui_factory = $ui_factory;
68  $this->tpl_factory = $tpl_factory;
69  $this->lng = $lng;
70  $this->js_binding = $js_binding;
71  }
72 
73  public function render(Component $component, DefaultRenderer $default_renderer): string
74  {
75  if ($component instanceof JSTestComponent) {
76  $text = $component->text;
77  $component = $component->withAdditionalOnLoadCode(function ($id) use ($text) {
78  return "id:$text.$id content:$text";
79  });
80  $this->bindOnloadCode($component);
81  }
82  return $component->text;
83  }
84 
85  public function registerResources(ResourceRegistry $registry): void
86  {
87  $registry->register("test.js");
88  }
89 
90  private function bindOnloadCode(\ILIAS\UI\Component\JavaScriptBindable $component): void
91  {
92  $binder = $component->getOnLoadCode();
93  $this->js_binding->addOnLoadCode($binder("id"));
94  }
95 }
Registry for resources required by rendered output like Javascript or CSS.
registerResources(ResourceRegistry $registry)
Announce resources this renderer requires.
Interface Observer Contains several chained tasks and infos about them.
An entity that renders components to a string output.
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Language Language $lng
This is how the factory for UI elements looks.
Definition: Factory.php:37
render(Component $component, DefaultRenderer $default_renderer)
bindOnloadCode(\ILIAS\UI\Component\JavaScriptBindable $component)
Provides methods to interface with javascript.
register(string $name)
Add a dependency.
__construct(Factory $ui_factory, TemplateFactory $tpl_factory, \ILIAS\Language\Language $lng, JavaScriptBinding $js_binding)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
global $lng
Definition: privfeed.php:31
Interface for a factory that provides templates.