19 declare(strict_types=1);
72 protected ?ServerRequestInterface
$request = null;
82 protected ?
string $id = null;
104 $this->checkArgListElements(
'columns', $columns, [Column::class]);
105 if ($columns === []) {
106 throw new \InvalidArgumentException(
'cannot construct a table without columns.');
109 $this->multi_action_signal = $signal_generator->
create();
110 $this->selection_signal = $signal_generator->
create();
111 $this->async_action_signal = $signal_generator->
create();
130 foreach ($columns as $id => $col) {
131 $ret[
$id] = $col->withIndex($idx++);
139 $sortable_visible_cols = array_filter(
141 static fn (
$c):
bool =>
$c->isSortable()
143 if ($sortable_visible_cols === []) {
144 return array_key_first($visible_cols);
146 return array_key_first($sortable_visible_cols);
167 $this->checkArgListElements(
'actions', $actions, [
T\
Action\Action::class]);
168 $clone = clone $this;
170 foreach ($actions as $id => $action) {
173 $clone->actions_single[
$id] = $action;
176 $clone->actions_multi[
$id] = $action;
179 $clone->actions_std[
$id] = $action;
186 public function withRequest(ServerRequestInterface $request): self
188 $clone = clone $this;
200 $clone = clone $this;
212 $clone = clone $this;
224 $clone = clone $this;
231 return $this->range ?? $this->data_factory->range(0, $this->number_of_rows);
236 $clone = clone $this;
248 $clone = clone $this;
288 return array_merge($this->actions_multi, $this->actions_std);
296 return array_merge($this->actions_single, $this->actions_std);
304 return array_merge($this->actions_single, $this->actions_multi, $this->actions_std);
309 return count($this->columns);
317 $clone = clone $this;
327 if (is_null($this->selected_optional_column_ids)) {
340 static fn (
$c):
bool =>
$c->isOptional()
351 static fn (
$c):
bool =>
$c->isInitiallyVisible()
363 fn (
Column $col,
string $col_id):
bool => !$col->
isOptional() || in_array($col_id, $visible_optional_columns,
true),
364 ARRAY_FILTER_USE_BOTH
370 return $this->data_row_builder
379 return $this->storage[$storage_id] ?? null;
387 $this->storage[$storage_id] =
$data;
393 ServerRequestInterface $request
396 $view_controls = $view_controls
397 ->withStoredInput($stored_values)
398 ->withRequest($request);
399 $this->
setStorageData($view_controls->getComponentInternalValues());
400 return $view_controls;
408 ?array $additional_parameters = []
411 $total_count = $this->
getDataRetrieval()->getTotalRowCount($filter_data, $additional_parameters);
415 # This retrieves container data from the request 417 $range =
$data[self::VIEWCONTROL_KEY_PAGINATION];
418 $range = ($range instanceof
Range) ? $range->
croppedTo($total_count ?? PHP_INT_MAX) : null;
421 ->withOrder(
$data[self::VIEWCONTROL_KEY_ORDERING] ?? null)
422 ->withSelectedOptionalColumns(
$data[self::VIEWCONTROL_KEY_FIELDSELECTION] ?? null);
424 # This retrieves the view controls that should be displayed 425 $view_controls = $table->applyValuesToViewcontrols($table->getViewControls($total_count),
$request);
429 $table->withFilter($filter_data),
441 $view_controls = array_filter($view_controls);
442 return $this->view_control_container_factory->standard($view_controls);
447 $smallest_option = current(Pagination::DEFAULT_LIMITS);
448 if (is_null($total_count) || $total_count >= $smallest_option) {
451 $this->view_control_factory->pagination()
452 ->withTotalCount($total_count)
454 Pagination::FNAME_OFFSET => $range->
getStart(),
455 Pagination::FNAME_LIMIT => $range->
getLength()
458 return $this->view_control_factory->group([
459 $this->view_control_factory->nullControl(),
460 $this->view_control_factory->nullControl()
466 $sortable_visible_cols = array_filter(
468 static fn (
$c):
bool =>
$c->isSortable()
471 if ($sortable_visible_cols === []) {
476 foreach ($sortable_visible_cols as $col_id => $col) {
478 $order_asc = $this->data_factory->order($col_id,
Order::ASC);
479 $order_desc = $this->data_factory->order($col_id,
Order::DESC);
481 $labels = $col->getOrderingLabels();
482 $sort_options[$labels[0]] = $order_asc;
483 $sort_options[$labels[1]] = $order_desc;
485 return $this->view_control_factory->sortation($sort_options);
491 if ($optional_cols === []) {
495 return $this->view_control_factory
496 ->fieldSelection(array_map(
497 static fn (
$c):
string =>
$c->getTitle(),
505 $clone = clone $this;
512 if (null !== ($id = $this->
getId())) {
513 return self::STORAGE_ID_PREFIX .
$id;
getAdditionalParameters()
Signal $multi_action_signal
T DataRetrieval $data_retrieval
array $additional_parameters
withFilter(?array $filter)
getSelectedOptionalColumns()
This describes a Data Table.
ViewControlContainer Factory $view_control_container_factory
getViewControlFieldSelection()
setStorageData(array $data)
getViewControlPagination(?int $total_count=null)
withRequest(ServerRequestInterface $request)
Rendering the Table must be done using the current Request: it (the request) will be forwarded to the...
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
applyValuesToViewcontrols(ViewControlContainer\ViewControl $view_controls, ServerRequestInterface $request)
ServerRequestInterface $request
withId(string $id)
The DataTable comes with a storage to keep e.g.
array $selected_optional_column_ids
const VIEWCONTROL_KEY_FIELDSELECTION
const VIEWCONTROL_KEY_PAGINATION
Both the subject and the direction need to be specified when expressing an order. ...
getInitiallyVisibleColumns()
withAdditionalParameters(?array $additional_parameters)
Signal $async_action_signal
croppedTo(int $max)
This will create a range that is guaranteed to not exceed $max.
withNumberOfRows(int $number_of_rows)
Number of Rows is the amount of rows shown per page.
const VIEWCONTROL_KEY_ORDERING
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getViewControls(?int $total_count=null)
DataFactory $data_factory
__construct(SignalGeneratorInterface $signal_generator, ViewControl\Factory $view_control_factory, ViewControlContainer\Factory $view_control_container_factory, DataFactory $data_factory, DataRowBuilder $data_row_builder, string $title, array $columns, T\DataRetrieval $data_retrieval, \ArrayAccess $storage)
applyViewControls(array $filter_data, ?array $additional_parameters=[])
create(string $class='')
Create a signal, each created signal MUST have a unique ID.
__construct(Container $dic, ilPlugin $plugin)
withMultiActionsPresent(bool $flag)
ViewControl Factory $view_control_factory
withSelectedOptionalColumns(?array $selected_optional_column_ids)
A simple class to express a range of whole positive numbers.
enumerateColumns(array $columns)
A Column describes the form of presentation for a certain aspect of data, i.e.
withActions(array $actions)
DataRowBuilder $data_row_builder