ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBadgeTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Badge;
22 
27 use ilLanguage;
34 use Generator;
37 use ilBadge;
38 use ilBadgeAuto;
41 
43 {
44  private readonly Factory $factory;
45  private readonly Renderer $renderer;
46  private readonly \ILIAS\Refinery\Factory $refinery;
48  private readonly Services $http;
49  private readonly int $parent_id;
50  private readonly string $parent_type;
51  private readonly ilLanguage $lng;
52  private readonly ilGlobalTemplateInterface $tpl;
66  private ?array $cached_records = null;
67 
68  public function __construct(int $parent_obj_id, string $parent_obj_type, protected bool $has_write = false)
69  {
70  global $DIC;
71 
72  $this->lng = $DIC->language();
73  $this->tpl = $DIC->ui()->mainTemplate();
74  $this->factory = $DIC->ui()->factory();
75  $this->renderer = $DIC->ui()->renderer();
76  $this->refinery = $DIC->refinery();
77  $this->request = $DIC->http()->request();
78  $this->http = $DIC->http();
79 
80  $this->parent_id = $parent_obj_id;
81  $this->parent_type = $parent_obj_type;
82  $this->badge_image_service = new ilBadgeImage(
83  $DIC->resourceStorage(),
84  $DIC->upload(),
85  $DIC->ui()->mainTemplate()
86  );
87  }
88 
101  private function getRecords(): array
102  {
103  if ($this->cached_records !== null) {
104  return $this->cached_records;
105  }
106 
107  $rows = [];
108  $modal_container = new ModalBuilder();
109 
110  foreach (ilBadge::getInstancesByParentId($this->parent_id) as $badge) {
111  $images = [
112  'rendered' => null,
113  'large' => null,
114  ];
115  $image_src = $this->badge_image_service->getImageFromBadge($badge);
116  if ($image_src !== '') {
117  $images['rendered'] = $this->renderer->render(
118  $this->factory->image()->responsive(
119  $image_src,
120  $badge->getTitle()
121  )
122  );
123 
124  $image_src_large = $this->badge_image_service->getImageFromBadge(
125  $badge,
127  );
128  if ($image_src_large !== '') {
129  $images['large'] = $this->factory->image()->responsive(
130  $image_src_large,
131  $badge->getTitle()
132  );
133  }
134  }
135 
136  $modal = $modal_container->constructModal(
137  $images['large'],
138  $badge->getTitle(),
139  [
140  'description' => $badge->getDescription(),
141  'badge_criteria' => $badge->getCriteria(),
142  ]
143  );
144 
145  $rows[] = [
146  'id' => $badge->getId(),
147  'badge' => $badge,
148  'active' => $badge->isActive(),
149  'type' => $this->parent_type !== 'bdga'
150  ? ilBadge::getExtendedTypeCaption($badge->getTypeInstance())
151  : $badge->getTypeInstance()->getCaption(),
152  'manual' => !$badge->getTypeInstance() instanceof ilBadgeAuto,
153  'image' => $images['rendered'] ? ($modal_container->renderShyButton(
154  $images['rendered'],
155  $modal
156  ) . ' ') : '',
157  'title' => implode('', [
158  $modal_container->renderShyButton($badge->getTitle(), $modal),
159  $modal_container->renderModal($modal)
160  ]),
161  'title_sortable' => $badge->getTitle()
162  ];
163  }
164 
165  $this->cached_records = $rows;
166 
167  return $rows;
168  }
169 
170  public function getRows(
171  DataRowBuilder $row_builder,
172  array $visible_column_ids,
173  Range $range,
174  Order $order,
175  ?array $filter_data,
176  ?array $additional_parameters
177  ): Generator {
178  $records = $this->getRecords();
179 
180  if ($order) {
181  [$order_field, $order_direction] = $order->join(
182  [],
183  fn($ret, $key, $value) => [$key, $value]
184  );
185 
186  usort($records, static function (array $left, array $right) use ($order_field): int {
187  if (\in_array($order_field, ['title', 'type'], true)) {
188  if ($order_field === 'title') {
189  $order_field .= '_sortable';
190  }
191 
192  return \ilStr::strCmp(
193  $left[$order_field],
194  $right[$order_field]
195  );
196  }
197 
198  if ($order_field === 'active') {
199  return $right[$order_field] <=> $left[$order_field];
200  }
201 
202  return $left[$order_field] <=> $right[$order_field];
203  });
204 
205  if ($order_direction === Order::DESC) {
206  $records = array_reverse($records);
207  }
208  }
209 
210  if ($range) {
211  $records = \array_slice($records, $range->getStart(), $range->getLength());
212  }
213 
214  foreach ($records as $record) {
215  yield $row_builder
216  ->buildDataRow((string) $record['id'], $record)
217  ->withDisabledAction(
218  'award_revoke_badge',
219  !$record['manual'] || !$record['active']
220  );
221  }
222  }
223 
224  public function getTotalRowCount(
225  ?array $filter_data,
226  ?array $additional_parameters
227  ): ?int {
228  return \count($this->getRecords());
229  }
230 
234  private function getColumns(): array
235  {
236  return [
237  'image' => $this->factory->table()->column()->text($this->lng->txt('image'))->withIsSortable(false),
238  'title' => $this->factory->table()->column()->text($this->lng->txt('title')),
239  'type' => $this->factory->table()->column()->text($this->lng->txt('type')),
240  'active' => $this->factory->table()->column()->boolean(
241  $this->lng->txt('active'),
242  $this->lng->txt('yes'),
243  $this->lng->txt('no')
244  )->withOrderingLabels(
245  $this->lng->txt('badge_sort_active_badges_first'),
246  $this->lng->txt('badge_sort_active_badges_last')
247  )
248  ];
249  }
250 
254  private function getActions(
255  URLBuilder $url_builder,
256  URLBuilderToken $action_parameter_token,
257  URLBuilderToken $row_id_token,
258  ): array {
259  return $this->has_write ? [
260  'badge_table_activate' =>
261  $this->factory->table()->action()->multi(
262  $this->lng->txt('activate'),
263  $url_builder->withParameter($action_parameter_token, 'badge_table_activate'),
264  $row_id_token
265  ),
266  'badge_table_deactivate' =>
267  $this->factory->table()->action()->multi(
268  $this->lng->txt('deactivate'),
269  $url_builder->withParameter($action_parameter_token, 'badge_table_deactivate'),
270  $row_id_token
271  ),
272  'badge_table_edit' => $this->factory->table()->action()->single(
273  $this->lng->txt('edit'),
274  $url_builder->withParameter($action_parameter_token, 'badge_table_edit'),
275  $row_id_token
276  ),
277  'badge_table_delete' =>
278  $this->factory->table()->action()->standard(
279  $this->lng->txt('delete'),
280  $url_builder->withParameter($action_parameter_token, 'badge_table_delete'),
281  $row_id_token
282  ),
283  'award_revoke_badge' =>
284  $this->factory->table()->action()->single(
285  $this->lng->txt('badge_award_revoke'),
286  $url_builder->withParameter($action_parameter_token, 'award_revoke_badge'),
287  $row_id_token
288  )
289  ] : [];
290  }
291 
292  public function renderTable(): void
293  {
294  $df = new \ILIAS\Data\Factory();
295 
296  $table_uri = $df->uri($this->request->getUri()->__toString());
297  $url_builder = new URLBuilder($table_uri);
298  $query_params_namespace = ['tid'];
299 
300  [$url_builder, $action_parameter_token, $row_id_token] = $url_builder->acquireParameters(
301  $query_params_namespace,
302  'table_action',
303  'id',
304  );
305 
306  $table = $this->factory
307  ->table()
308  ->data($this, $this->lng->txt('obj_bdga'), $this->getColumns())
309  ->withId(self::class . '_' . $this->parent_id)
310  ->withOrder(new Order('title', Order::ASC))
311  ->withActions($this->getActions($url_builder, $action_parameter_token, $row_id_token))
312  ->withRequest($this->request);
313  $out = [$table];
314 
315  $query = $this->http->wrapper()->query();
316 
317  if ($query->has($action_parameter_token->getName())) {
318  $action = $query->retrieve($action_parameter_token->getName(), $this->refinery->to()->string());
319  $ids = $query->retrieve($row_id_token->getName(), $this->refinery->custom()->transformation(fn($v) => $v));
320 
321  if ($action === 'delete') {
322  $items = [];
323  foreach ($ids as $id) {
324  $items[] = $this->factory->modal()->interruptiveItem()->keyValue(
325  $id,
326  $row_id_token->getName(),
327  $id
328  );
329  }
330 
331  $this->http->saveResponse(
332  $this->http
333  ->response()
334  ->withBody(
335  Streams::ofString($this->renderer->renderAsync([
336  $this->factory->modal()->interruptive(
337  $this->lng->txt('badge_deletion'),
338  $this->lng->txt('badge_deletion_confirmation'),
339  '#'
340  )->withAffectedItems($items)
341  ]))
342  )
343  );
344  $this->http->sendResponse();
345  $this->http->close();
346  }
347  }
348 
349  $this->tpl->setContent($this->renderer->render($out));
350  }
351 }
readonly ilGlobalTemplateInterface $tpl
join($init, callable $fn)
Definition: Order.php:75
getActions(URLBuilder $url_builder, URLBuilderToken $action_parameter_token, URLBuilderToken $row_id_token,)
static getInstancesByParentId(int $a_parent_id, ?array $a_filter=null)
factory()
renderer()
__construct(int $parent_obj_id, string $parent_obj_type, protected bool $has_write=false)
readonly ILIAS Refinery Factory $refinery
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
static getExtendedTypeCaption(ilBadgeType $a_type)
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
$out
Definition: buildRTE.php:24
global $DIC
Definition: shib_login.php:22
Builds data types.
Definition: Factory.php:35
static ofString(string $string)
Creates a new stream with an initial value.
Definition: Streams.php:41
readonly ServerRequestInterface RequestInterface $request
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter&#39;s value if the supplied token is valid.
Definition: URLBuilder.php:166
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
URLBuilder.
Definition: URLBuilder.php:40
const DESC
Definition: Order.php:31
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28