19 declare(strict_types=1);
21 require_once(
"vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/TableTestBase.php");
38 return $this->getMultiActionHandler($signal);
43 return $this->getActionRegistration($action_id, $action);
51 return $this->buildMultiActionsDropdown($actions, $action_signal, $modal_signal);
56 return $this->getSingleActionsForRow($row_id, $actions);
61 I\Table\
Data $component,
65 return $this->renderTableHeader($default_renderer, $component, $tpl, $sortation_signal);
69 I\Table\
Data $component,
72 return $this->renderActionsHeader($default_renderer, $component, $tpl);
86 $this->getUIFactory(),
87 $this->getTemplateFactory(),
89 $this->getJavaScriptBinding(),
92 new \
ILIAS\
UI\Help\TextRetriever\Echoing(),
93 $this->getUploadLimitResolver()
99 return new I\Table\Action\Factory();
104 return new I\Table\Column\Factory(
111 $request = $this->createMock(ServerRequestInterface::class);
114 ->willReturn(
new \
GuzzleHttp\Psr7\Uri(
'http://localhost:80'));
116 ->method(
"getQueryParams")
123 return new Data\Factory();
128 $factory =
new class ($this->getTableFactory()) extends
NoUIFactory {
130 protected I\Table\
Factory $table_factory
133 public function button(): I\Button\Factory
135 return new I\Button\Factory();
137 public function dropdown(): I\Dropdown\Factory
139 return new I\Dropdown\Factory();
141 public function symbol(): I\Symbol\Factory
143 return new I\Symbol\Factory(
149 public function table(): I\Table\Factory
151 return $this->table_factory;
153 public function divider(): I\Divider\Factory
155 return new I\Divider\Factory();
164 $signal =
new I\Signal(
'signal_id');
165 $closure =
$renderer->p_getMultiActionHandler($signal);
166 $actual = $this->brutallyTrimHTML($closure(
'component_id'));
167 $expected = $this->brutallyTrimHTML(
168 "$(document).on('signal_id', function(event, signal_data) { 169 il.UI.table.data.get('component_id').doMultiAction(signal_data); 173 $this->assertEquals($expected, $actual);
179 $f = $this->getActionFactory();
182 list($builder,
$token) = $url_builder->acquireParameter([
'namespace'],
'param');
184 $action =
$f->standard(
'label', $builder,
$token);
185 $closure =
$renderer->p_getActionRegistration(
'action_id', $action);
187 $actual = $this->brutallyTrimHTML($closure(
'component_id'));
189 $expected = $this->brutallyTrimHTML(
190 'il.UI.table.data.get(\'component_id\').registerAction(\'action_id\', false, new il.UI.core.URLBuilder(new URL("http://wwww.ilias.de?ref_id=1&namespace_param="), new Map([["namespace_param",new il.UI.core.URLBuilderToken(["namespace"], "param",' 192 $this->assertStringStartsWith($expected, $actual);
198 $f = $this->getActionFactory();
199 $signal1 =
new I\Signal(
'signal_id');
200 $signal2 =
new I\Signal(
'signal_id2');
203 list($builder,
$token) = $url_builder->acquireParameter([
'namespace'],
'param');
205 $f->standard(
'label1', $builder,
$token),
206 $f->standard(
'label2', $builder,
$token)
209 $renderer->p_buildMultiActionsDropdown([], $signal1, $signal2)
213 count(
$renderer->p_buildMultiActionsDropdown($actions, $signal1, $signal2)->getItems())
219 $f = $this->getActionFactory();
222 list($builder,
$token) = $url_builder->acquireParameter([
'namespace'],
'param');
224 'a1' =>
$f->standard(
'label1', $builder,
$token)->withAsync(),
225 'a2' =>
$f->standard(
'label2', $builder,
$token)
229 count(
$renderer->p_getSingleActionsForRow(
'row_id-1', $actions)->getItems())
236 $data_factory = new \ILIAS\Data\Factory();
237 $tpl = $this->getTemplateFactory()->getTemplate(
"components/ILIAS/UI/src/templates/default/Table/tpl.datatable.html",
true,
true);
238 $f = $this->getColumnFactory();
240 public function getRows(
241 Component\Table\DataRowBuilder $row_builder,
242 array $visible_column_ids,
246 ?array $additional_parameters
248 yield $row_builder->buldDataRow(
'', []);
250 public function getTotalRowCount(
252 ?array $additional_parameters
258 'f1' =>
$f->text(
"Field 1")->withIndex(1),
259 'f2' =>
$f->text(
"Field 2")->withIndex(2)->withIsSortable(
false),
260 'f3' =>
$f->number(
"Field 3")->withIndex(3)
262 $sortation_signal =
new I\Signal(
'sort_header_signal_id');
263 $sortation_signal->addOption(
'value',
'f1:ASC');
264 $table = $this->getUIFactory()->table()->data(
$data,
'', $columns)
265 ->withRequest($this->getDummyRequest());
266 $renderer->p_renderTableHeader($this->getDefaultRenderer(), $table, $tpl, $sortation_signal);
268 $actual = $this->brutallyTrimHTML($tpl->get());
270 <div
class=
"c-table-data" id=
"{ID}">
271 <div
class=
"viewcontrols">{VIEW_CONTROLS}</div>
272 <div
class=
"c-table-data__table-wrapper">
273 <table
class=
"c-table-data__table" role=
"grid" aria-labelledby=
"{ID}_label" aria-colcount=
"{COL_COUNT}">
275 <tr
class=
"c-table-data__header c-table-data__row" role=
"rowgroup">
276 <th
class=
"c-table-data__header c-table-data__cell c-table-data__cell--text" role=
"columnheader" tabindex=
"-1" aria-colindex=
"0" aria-
sort=
"order_option_generic_ascending">
277 <div
class=
"c-table-data__header__resize-wrapper">
278 <a tabindex=
"0" class=
"glyph" href=
"#" aria-label=
"sort_ascending" id=
"id_2"><span
class=
"glyphicon glyphicon-arrow-up" aria-hidden=
"true"></span></a>
279 <
button class=
"btn btn-link" id=
"id_1">Field 1</button>
282 <th
class=
"c-table-data__header c-table-data__cell c-table-data__cell--text" role=
"columnheader" tabindex=
"-1" aria-colindex=
"1">
283 <div
class=
"c-table-data__header__resize-wrapper">Field 2</div>
285 <th
class=
"c-table-data__header c-table-data__cell c-table-data__cell--number" role=
"columnheader" tabindex=
"-1" aria-colindex=
"2">
286 <div
class=
"c-table-data__header__resize-wrapper">
287 <button
class=
"btn btn-link" id=
"id_3">Field 3</button>
292 <tbody
class=
"c-table-data__body" role=
"rowgroup"></tbody>
295 <div
class=
"c-table-data__async_modal_container"></div>
297 <dialog
class=
"c-table-data__async_message c-modal" id=
"{ID}_msgmodal">
298 <div
class=
"modal-dialog" role=
"document">
299 <div
class=
"modal-content">
300 <div
class=
"modal-header">
301 <
form><button formmethod=
"dialog" class=
"close" aria-label=
"close"><span aria-hidden=
"true">×</span></button></
form>
303 <div
class=
"c-table-data__async_messageresponse modal-body"></div>
310 $expected = $this->brutallyTrimHTML($expected);
311 $this->assertEquals($expected, $actual);
318 $data_factory = new \ILIAS\Data\Factory();
319 $tpl = $this->getTemplateFactory()->getTemplate(
"components/ILIAS/UI/src/templates/default/Table/tpl.datatable.html",
true,
true);
320 $f = $this->getColumnFactory();
322 public function getRows(
323 Component\Table\DataRowBuilder $row_builder,
324 array $visible_column_ids,
328 ?array $additional_parameters
330 yield $row_builder->buldDataRow(
'', []);
332 public function getTotalRowCount(
334 ?array $additional_parameters
340 'f1' =>
$f->text(
"Field 1")->withIsSortable(
false),
341 'f2' =>
$f->text(
"Field 2")->withIsSortable(
false)
344 $sortation_signal =
null;
346 $table = $this->getUIFactory()->table()->data(
$data,
'', $columns)
347 ->withRequest($this->getDummyRequest());
348 $renderer->p_renderTableHeader($this->getDefaultRenderer(), $table, $tpl, $sortation_signal);
349 $actual = $this->brutallyTrimHTML($tpl->get());
351 <div
class=
"c-table-data" id=
"{ID}">
352 <div
class=
"viewcontrols">{VIEW_CONTROLS}</div>
353 <div
class=
"c-table-data__table-wrapper">
354 <table
class=
"c-table-data__table" role=
"grid" aria-labelledby=
"{ID}_label" aria-colcount=
"{COL_COUNT}">
356 <tr
class=
"c-table-data__header c-table-data__row" role=
"rowgroup">
357 <th
class=
"c-table-data__header c-table-data__cell c-table-data__cell--text" role=
"columnheader" tabindex=
"-1" aria-colindex=
"0">
358 <div
class=
"c-table-data__header__resize-wrapper">Field 1</div>
360 <th
class=
"c-table-data__header c-table-data__cell c-table-data__cell--text" role=
"columnheader" tabindex=
"-1" aria-colindex=
"1">
361 <div
class=
"c-table-data__header__resize-wrapper">Field 2</div>
365 <tbody
class=
"c-table-data__body" role=
"rowgroup"></tbody>
369 <div
class=
"c-table-data__async_modal_container"></div>
371 <dialog
class=
"c-table-data__async_message c-modal" id=
"{ID}_msgmodal">
372 <div
class=
"modal-dialog" role=
"document">
373 <div
class=
"modal-content">
374 <div
class=
"modal-header">
375 <
form><
button formmethod=
"dialog" class=
"close" aria-label=
"close"><span aria-hidden=
"true">×</span></
button></
form>
377 <div
class=
"c-table-data__async_messageresponse modal-body"></div>
384 $expected = $this->brutallyTrimHTML($expected);
385 $this->assertEquals($expected, $actual);
391 $data_factory = new \ILIAS\Data\Factory();
392 $tpl = $this->getTemplateFactory()->getTemplate(
"components/ILIAS/UI/src/templates/default/Table/tpl.datatable.html",
true,
true);
393 $f = $this->getColumnFactory();
395 $url = $data_factory->uri(
'http://wwww.ilias.de?ref_id=1');
397 list($builder,
$token) = $url_builder->acquireParameter([
'namespace'],
'param');
399 'a2' => $this->getActionFactory()->standard(
'some action', $builder,
$token)
403 public function getRows(
404 Component\Table\DataRowBuilder $row_builder,
405 array $visible_column_ids,
409 ?array $additional_parameters
411 yield $row_builder->buldDataRow(
'', []);
413 public function getTotalRowCount(
415 ?array $additional_parameters
421 'f1' =>
$f->text(
"Field 1")->withIsSortable(
false),
424 $sortation_signal =
null;
426 $table = $this->getUIFactory()->table()->data(
$data,
'', $columns)
427 ->withActions($actions)
428 ->withRequest($this->getDummyRequest());
429 $renderer->p_renderActionsHeader($this->getDefaultRenderer(), $table, $tpl);
430 $actual = $this->brutallyTrimHTML($tpl->get());
432 $expected =
'<th class="c-table-data__header c-table-data__cell c-table-data__header__rowaction" role="columnheader" aria-colindex="1">actions</th>';
433 $this->assertStringContainsString($expected, $actual);
438 $f = $this->getColumnFactory();
440 'f1' =>
$f->text(
"Field 1")->withIndex(1),
441 'f2' =>
$f->text(
"Field 2")->withIndex(2),
442 'f3' =>
$f->number(
"Field 3")->withIndex(3)
444 $f = $this->getActionFactory();
447 list($builder,
$token) = $url_builder->acquireParameter([
'namespace'],
'param');
449 'a1' =>
$f->standard(
'label1', $builder,
$token)->withAsync(),
450 'a2' =>
$f->standard(
'label2', $builder,
$token)
453 $rb = (
new I\Table\DataRowBuilder())
454 ->withMultiActionsPresent(
true)
455 ->withSingleActions($actions)
456 ->withVisibleColumns($columns);
458 $row = $rb->buildDataRow(
'row_id-1', []);
459 $this->assertInstanceOf(
Component\Table\DataRow::class, $row);
461 return [$rb, $columns, $actions];
469 list($rb, $columns, $actions) =
$params;
475 $row = $rb->buildDataRow(
'row_id-1', $record);
487 $row->getCellContent(
'f2')
498 $actual = $this->brutallyTrimHTML($this->getDefaultRenderer()->render($row));
500 <td
class=
"c-table-data__cell c-table-data__rowselection" role=
"gridcell" tabindex=
"-1">
501 <input type=
"checkbox" value=
"row_id-1" class=
"c-table-data__row-selector">
503 <td
class=
"c-table-data__cell c-table-data__cell--text " role=
"gridcell" aria-colindex=
"1" tabindex=
"-1">
504 <span
class=
"c-table-data__cell__col-title">Field 1:</span>v1
506 <td
class=
"c-table-data__cell c-table-data__cell--text " role=
"gridcell" aria-colindex=
"2" tabindex=
"-1">
507 <span
class=
"c-table-data__cell__col-title">Field 2:</span>v2
509 <td
class=
"c-table-data__cell c-table-data__cell--number " role=
"gridcell" aria-colindex=
"3" tabindex=
"-1">
510 <span
class=
"c-table-data__cell__col-title">Field 3:</span>3
512 <td
class=
"c-table-data__cell c-table-data__rowaction" role=
"gridcell" tabindex=
"-1">
513 <div
class=
"dropdown" id=
"id_3">
514 <
button class=
"btn btn-default dropdown-toggle" type=
"button" aria-label=
"actions" aria-haspopup=
"true" aria-expanded=
"false" aria-controls=
"id_3_menu"><span
class=
"caret"></span></
button>
515 <ul
id=
"id_3_menu" class=
"dropdown-menu">
516 <li><
button class=
"btn btn-link" data-action=
"http://wwww.ilias.de?ref_id=1&namespace_param%5B%5D=row_id-1" id=
"id_1">label1</button></li>
517 <li><button
class=
"btn btn-link" data-action=
"http://wwww.ilias.de?ref_id=1&namespace_param%5B%5D=row_id-1" id=
"id_2">label2</button></li>
522 $expected = $this->brutallyTrimHTML($expected);
523 $this->assertEquals($expected, $actual);
529 public function getRows(
530 Component\Table\DataRowBuilder $row_builder,
531 array $visible_column_ids,
535 ?array $additional_parameters
540 public function getTotalRowCount(?array $filter_data, ?array $additional_parameters): ?
int 547 'f1' => $this->getUIFactory()->table()->column()->text(
'f1'),
548 'f2' => $this->getUIFactory()->table()->column()->text(
'f2'),
549 'f3' => $this->getUIFactory()->table()->column()->text(
'f3'),
550 'f4' => $this->getUIFactory()->table()->column()->text(
'f4'),
551 'f5' => $this->getUIFactory()->table()->column()->text(
'f5'),
554 $table = $this->getTableFactory()->data(
$data,
'', $columns)
555 ->withRequest($this->getDummyRequest());
557 $html = $this->getDefaultRenderer()->render($table);
559 $translation = $this->
getLanguage()->txt(
'ui_table_no_records');
560 $column_count = count($columns);
563 $this->assertTrue(str_contains($html,
"colspan=\"$column_count\""));
565 $this->assertTrue(str_contains($html, $translation));
testDataTableDataRowFromBuilder(array $params)
testDataTableRowBuilder
p_buildMultiActionsDropdown(array $actions, I\Signal $action_signal, I\Signal $modal_signal)
button(string $caption, string $cmd)
testDataTableMultiActionsDropdown()
testDataTableGetActionRegistration()
testRenderEmptyDataCell()
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Interface Observer Contains several chained tasks and infos about them.
testDataTableRenderStandardRow(I\Table\DataRow $row)
testDataTableDataRowFromBuilder
p_getSingleActionsForRow(string $row_id, array $actions)
p_renderTableHeader(TestDefaultRenderer $default_renderer, I\Table\Data $component, $tpl, ?I\Signal $sortation_signal)
sort()
description: > Example for rendering a Sort Glyph.
Both the subject and the direction need to be specified when expressing an order. ...
p_renderActionsHeader(TestDefaultRenderer $default_renderer, I\Table\Data $component, $tpl)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testDataTableRenderTableHeader()
testDataTableRenderHeaderWithActions()
testDataTableRenderHeaderWithoutSortableColums()
Tests for the Renderer of DataTables.
wrapper around the renderer to expose protected functions
p_getActionRegistration(string $action_id, I\Table\Action\Action $action)
testDataTableRowBuilder()
testDataTableGetMultiActionHandler()
form( $class_path, string $cmd, string $submit_caption="")
__construct(Container $dic, ilPlugin $plugin)
p_getMultiActionHandler(I\Signal $signal)
testDataTableSingleActionsDropdown()
A simple class to express a naive range of whole positive numbers.
Basic Tests for all Tables.