ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Renderer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
30 {
31  private const PARENT_CLASS = 'c-drilldown__branch';
32  private const LEAF_CLASS = 'c-drilldown__leaf';
33  private const NO_ITEMS_LABEL = 'drilldown_no_items';
34 
38  public function render(Component\Component $component, RendererInterface $default_renderer): string
39  {
40  if ($component instanceof Menu\Drilldown) {
41  return $this->renderDrilldownMenu($component, $default_renderer);
42  }
43  if ($component instanceof Menu\Menu) {
44  return $this->renderStandardMenu($component, $default_renderer);
45  }
46 
47  $this->cannotHandleComponent($component);
48  }
49 
53  protected function renderStandardMenu(
54  Menu\Menu $component,
55  RendererInterface $default_renderer
56  ): string {
57  $tpl_menu = $this->getTemplate('tpl.menu.html', true, true);
58 
59  $label = $component->getLabel();
60  if (!is_string($label)) {
61  $label = $default_renderer->render($label);
62  }
63  $tpl_menu->setVariable('LABEL', $label);
64  $tpl_menu->setVariable('ITEMS', $this->renderMenuItems($component, $default_renderer));
65  return $tpl_menu->get();
66  }
67 
68  protected function renderDrilldownMenu(
69  Menu\Drilldown $component,
70  RendererInterface $default_renderer
71  ): string {
72  $items_html = $this->renderMenuItems($component, $default_renderer);
73  $ui_factory = $this->getUIFactory();
74  $back_signal = $component->getBacklinkSignal();
75  $persistence_id = $component->getPersistenceId();
76  $glyph = $ui_factory->symbol()->glyph()->collapsehorizontal();
77  $btn = $ui_factory->button()->bulky($glyph, '', '#')
78  ->withOnClick($back_signal)
79  ->withAriaLabel($this->txt('back'));
80  $back_button_html = $default_renderer->render($btn);
81 
82  $component = $component->withAdditionalOnLoadCode(
83  function ($id) use ($back_signal, $persistence_id) {
84  $params = "'$id', '$back_signal'";
85  if (is_null($persistence_id)) {
86  $params .= ", null";
87  } else {
88  $params .= ", '$persistence_id'";
89  }
90  return "il.UI.menu.drilldown.init($params);";
91  }
92  );
93  $id_drilldown = $this->bindJavaScript($component);
94  $id_filter = $this->createId();
95 
96  $tpl_name = "tpl.drilldown.html";
97  $tpl = $this->getTemplate($tpl_name, true, true);
98  $tpl->setVariable("ID", $id_drilldown);
99  $tpl->setVariable('LABEL', sprintf($this->txt('filter_nodes_in'), $component->getLabel()));
100  $tpl->setVariable('ARIA_LABEL', $component->getLabel());
101  $tpl->setVariable('ID_FILTER', $id_filter);
102  $tpl->setVariable('BACKNAV', $back_button_html);
103  $tpl->setVariable('DRILLDOWN', $items_html);
104  $tpl->setVariable('NO_ITEMS_TEXT', $this->txt(self::NO_ITEMS_LABEL));
105 
106  return $tpl->get();
107  }
108 
109  protected function renderMenuItems(
110  Menu\Menu $component,
111  RendererInterface $default_renderer
112  ): string {
113  $html = '';
114  foreach ($component->getItems() as $item) {
115  $tpl_item = $this->getTemplate('tpl.menuitem.html', true, true);
116  if ($item instanceof Menu\Sub) {
117  $tpl_item->setVariable('CLASS', self::PARENT_CLASS);
118  } else {
119  $tpl_item->setVariable('CLASS', self::LEAF_CLASS);
120  }
121  $tpl_item->setVariable('ITEM', $default_renderer->render($item));
122  $html .= $tpl_item->get();
123  }
124  return $html;
125  }
126 
130  public function registerResources(ResourceRegistry $registry): void
131  {
132  parent::registerResources($registry);
133  $registry->register('assets/js/drilldown.js');
134  }
135 }
registerResources(ResourceRegistry $registry)
Announce resources this renderer requires.
Definition: Renderer.php:130
Registry for resources required by rendered output like Javascript or CSS.
render(Component\Component $component, RendererInterface $default_renderer)
Definition: Renderer.php:38
renderDrilldownMenu(Menu\Drilldown $component, RendererInterface $default_renderer)
Definition: Renderer.php:68
renderMenuItems(Menu\Menu $component, RendererInterface $default_renderer)
Definition: Renderer.php:109
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
Level of Drilldown Control.
Definition: Sub.php:28
txt(string $id)
Get a text from the language file.
getTemplate(string $name, bool $purge_unfilled_vars, bool $purge_unused_blocks)
Get template of component this renderer is made for.
cannotHandleComponent(Component $component)
This method MUST be called by derived component renderers, if.
register(string $name)
Add a dependency.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
renderStandardMenu(Menu\Menu $component, RendererInterface $default_renderer)
Render a Menu.
Definition: Renderer.php:53
bindJavaScript(JavaScriptBindable $component)
Bind the component to JavaScript.