19 declare(strict_types=1);
48 return $default_renderer->render($component->getInputs());
52 return $this->
renderMode($component, $default_renderer);
61 $tpl = $this->
getTemplate(
"tpl.viewcontrol_fieldselection.html",
true,
true);
64 $set_values = $component->
getValue() ?? [];
65 foreach ($component->
getOptions() as $opt_value => $opt_label) {
66 $tpl->setCurrentBlock(
"option");
68 $tpl->setVariable(
"OPTION_VALUE", $opt_value);
69 $tpl->setVariable(
"OPTION_LABEL", $opt_label);
70 if (in_array($opt_value, $set_values)) {
71 $tpl->setVariable(
"CHECKED",
'checked');
73 $tpl->parseCurrentBlock();
75 if (in_array($opt_value, $set_values)) {
76 $tpl->setCurrentBlock(
"value");
77 $tpl->setVariable(
"NAME", $component->
getName());
78 $tpl->setVariable(
"VALUE", $opt_value);
79 $tpl->parseCurrentBlock();
84 $param_name = $component->
getName();
87 fn(
$id) =>
"il.UI.Input.Viewcontrols.FieldSelection.init( 88 document.getElementById('{$id}'), 90 '{$container_submit_signal}', 96 $component = $component
99 "$('#{$id} > .dropdown-menu').on('click', (event) => event.stopPropagation());" 100 )->withAdditionalOnLoadCode(
102 "il.UI.dropdown.init(document.getElementById('{$id}'));" 109 $button = $ui_factory->button()->standard($button_label,
'#')
110 ->withOnClick($internal_signal);
112 $tpl->setVariable(
'ID',
$id);
113 $tpl->setVariable(
"ID_MENU",
$id .
'_ctrl');
114 $tpl->setVariable(
"ARIA_LABEL", $this->
txt(self::DEFAULT_DROPDOWN_LABEL));
115 $tpl->setVariable(
"BUTTON", $default_renderer->render($button));
122 $tpl = $this->
getTemplate(
"tpl.viewcontrol_sortation.html",
true,
true);
125 foreach ($component->
getOptions() as $opt_label => $order) {
126 $opt_value = $order->join(
':', fn($ret, $key, $value) => [$key, $value]);
128 $internal_signal->addOption(
'value', $opt_value);
129 $item = $ui_factory->button()->shy((
string) $opt_label,
'#')
130 ->withOnClick($internal_signal);
131 $tpl->setCurrentBlock(
"option");
132 $tpl->setVariable(
"OPTION", $default_renderer->render($item));
134 if ($opt_value === $component->
getValue()) {
135 $tpl->touchBlock(
"selected");
136 $tpl->setCurrentBlock(
"option");
138 $tpl->parseCurrentBlock();
143 fn(
$id) =>
"il.UI.Input.Viewcontrols.Sortation.init( 144 document.getElementById('{$id}'), 145 '{$internal_signal}', 146 '{$container_submit_signal}', 152 fn(
$id) =>
"il.UI.dropdown.init(document.getElementById('{$id}'));" 157 $tpl->setVariable(
'ID',
$id);
158 $tpl->setVariable(
"ID_MENU",
$id .
'_ctrl');
159 $tpl->setVariable(
"ARIA_LABEL", $this->
txt(self::DEFAULT_SORTATION_DROPDOWN_LABEL));
163 $default_renderer->render(
179 if ($page_limit >= $total_count) {
180 return [$data_factory->range(0, $page_limit)];
182 foreach (range(0, $total_count - 1, $page_limit) as $idx => $start) {
183 $ranges[] = $data_factory->range($start, $page_limit);
193 foreach ($ranges as $idx =>
$range) {
207 $first = reset($ranges);
208 $last = end($ranges);
210 $start = max(0, $current - floor(($number_of_visible_entries - 1) / 2));
211 if ($start + $number_of_visible_entries >= count($ranges)) {
212 $start = max(0, count($ranges) - $number_of_visible_entries);
215 $entries = array_slice($ranges, (
int) $start, $number_of_visible_entries);
217 if (! in_array($first, $entries)) {
218 array_shift($entries);
219 array_unshift($entries, $first);
221 if (! in_array($last, $entries)) {
223 array_push($entries, $last);
230 $tpl = $this->
getTemplate(
"tpl.viewcontrol_pagination.html",
true,
true);
237 $limit = $limit > 0 ? $limit : reset($limit_options);
238 $offset = $offset > $total_count ? 0 : $offset;
240 if (! $total_count) {
241 $input = $ui_factory->input()->field()->numeric(
'offset')->withValue($offset);
242 $apply = $ui_factory->button()->standard(
'apply',
'');
243 $tpl->setVariable(
"INPUT", $default_renderer->render($input));
244 $tpl->setVariable(
"BUTTON", $default_renderer->render($apply));
246 $ranges = $this->
buildRanges($total_count, $limit);
249 if ($limit >= $total_count) {
255 foreach ($ranges as $idx =>
$range) {
256 if (in_array(
$range, $entries)) {
257 $signal = clone $internal_signal;
259 $signal->addOption(
'limit', $limit);
260 $tpl->setCurrentBlock(
"entry");
261 $entry = $ui_factory->button()->shy((
string) ($idx + 1),
'#')->withOnClick($signal);
262 if ($idx === $current) {
263 $entry = $entry->withEngagedState(
true);
265 $tpl->setVariable(
"ENTRY", $default_renderer->render($entry));
266 $tpl->parseCurrentBlock();
268 if ($idx === 1 || $idx === count($ranges) - 2) {
269 $tpl->setCurrentBlock(
"entry");
270 $tpl->touchBlock(
"spacer");
271 $tpl->parseCurrentBlock();
277 if ($current > 0 && count($entries) > 1) {
278 $range = $ranges[$current - 1];
279 $signal = clone $internal_signal;
281 $signal->addOption(
'limit', $limit);
283 $btn_left = $ui_factory->button()->shy(
'', $signal ??
'#')
284 ->withSymbol($ui_factory->symbol()->glyph()->back())
285 ->withUnavailableAction($signal ===
null);
286 $tpl->setVariable(
"LEFT_ROCKER", $default_renderer->render($btn_left));
289 if ($current < count($ranges) - 1) {
290 $range = $ranges[$current + 1];
291 $signal = clone $internal_signal;
293 $signal->addOption(
'limit', $limit);
295 $btn_right = $ui_factory->button()->shy(
'', $signal ??
'#')
296 ->withSymbol($ui_factory->symbol()->glyph()->next())
297 ->withUnavailableAction($signal ===
null);
298 $tpl->setVariable(
"RIGHT_ROCKER", $default_renderer->render($btn_right));
302 $signal = clone $internal_signal;
303 $signal->addOption(
'offset', $offset);
304 $signal->addOption(
'limit', (
string) $option);
305 $option_label = $option === \PHP_INT_MAX ? $this->
txt(
'ui_pagination_unlimited') : (string) $option;
307 $item = $ui_factory->button()->shy($option_label,
'#')
308 ->withOnClick($signal);
309 $tpl->setCurrentBlock(
"option_limit");
310 $tpl->setVariable(
"OPTION_LIMIT", $default_renderer->render($item));
311 if ($option === $limit) {
312 $tpl->touchBlock(
"selected");
313 $tpl->setCurrentBlock(
"option_limit");
315 $tpl->parseCurrentBlock();
320 fn(
$id) =>
"il.UI.Input.Viewcontrols.Pagination.init( 321 document.getElementById('{$id}'), 322 '{$internal_signal}', 323 '{$container_submit_signal}', 331 document.getElementById('{$id}').querySelector( 332 '.dropdown.il-viewcontrol-pagination__num-of-items' 339 $tpl->setVariable(
'ID',
$id);
340 $tpl->setVariable(
"ID_MENU_OFFSET",
$id .
'_ctrl_offset');
341 $tpl->setVariable(
"ARIA_LABEL_OFFSET", $this->
txt(self::DEFAULT_DROPDOWN_LABEL_OFFSET));
342 $tpl->setVariable(
"ID_MENU_LIMIT",
$id .
'_ctrl_limit');
343 $tpl->setVariable(
"ARIA_LABEL_LIMIT", $this->
txt(self::DEFAULT_DROPDOWN_LABEL_LIMIT));
347 $default_renderer->render(
358 $tpl = $this->
getTemplate(
"tpl.viewcontrol_mode.html",
true,
true);
363 $set_value = $component->
getValue() ?? array_key_first($options);
366 foreach ($options as $opt_value => $opt_label) {
367 $out[] = $ui_factory->button()->standard($opt_label,
'#')
368 ->withEngagedState($opt_value === $set_value)
370 static fn(
$id):
string =>
371 "il.UI.Input.Viewcontrols.Mode.init( 372 document.getElementById('{$id}'), 374 '{$container_submit_signal}', 378 $tpl->setVariable(
'BUTTONS', $default_renderer->render(
$out));
379 $tpl->setVariable(
'VALUE', $set_value);
380 $tpl->setVariable(
"NAME", $component->
getName());
381 $tpl->setVariable(
"ARIA_LABEL", $this->
txt(self::DEFAULT_MODE_LABEL));
392 parent::registerResources($registry);
393 $registry->
register(
'assets/js/dropdown.js');
394 $registry->
register(
'assets/js/input.viewcontrols.min.js');
Registry for resources required by rendered output like Javascript or CSS.
txt(string $id)
Get a text from the language file.
createId()
Get a fresh unique id.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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
getUIFactory()
Get a UI factory.
withAdditionalOnLoadCode(Closure $binder)
Add some onload-code to the component instead of replacing the existing one.
Base class for all component renderers.
bindJavaScript(JavaScriptBindable $component)
Bind the component to JavaScript.