ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MainMenuMainCollector.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
42 use Iterator;
43 use Generator;
46 
55 {
57  private readonly Map $map;
58 
59  private bool $default_topics = false;
60 
61  public function __construct(protected array $providers, MainMenuItemFactory $factory, private readonly ?ItemInformation $information = null)
62  {
63  $this->type_information_collection = new TypeInformationCollection();
64  $this->map = new Map($factory);
65  }
66 
70  private function getProvidersFromList(): Iterator
71  {
72  yield from $this->providers;
73  }
74 
75  public function collectStructure(): void
76  {
77  foreach ($this->getProvidersFromList() as $provider) {
78  $this->type_information_collection->append($provider->provideTypeInformation());
79  $this->map->addMultiple(...$provider->getStaticTopItems());
80  $this->map->addMultiple(...$provider->getStaticSubItems());
81  }
82  }
83 
84  public function filterItemsByVisibilty(bool $async_only = false): void
85  {
86  // apply filter
87  $this->map->filter(function (isItem $item) use ($async_only): bool {
88  if ($async_only && !$item instanceof supportsAsynchronousLoading) {
89  return false;
90  }
91  if (!$item->isAvailable()) {
92  return false;
93  }
94 
95  // make parent available if one child is always available
96  if ($item instanceof isParent) {
97  foreach ($item->getChildren() as $child) {
98  if ($child->isAlwaysAvailable()) {
99  return true;
100  }
101  }
102  }
103 
104  // Always avaiable must be delivered when visible
105  if ($item->isAlwaysAvailable()) {
106  return $item->isVisible();
107  }
108  // All other cases
109  return $item->isAvailable() && $item->isVisible() && $this->information->isItemActive($item);
110  });
111  }
112 
113  public function prepareItemsForUIRepresentation(): void
114  {
115  if ($this->default_topics) {
116  $this->map->walk(function (isItem &$item): isItem {
117  if ($item instanceof isDecorateable) {
118  $item = $item->withTopics(new Topic($item->getProviderIdentification()->getInternalIdentifier()));
119  }
120  return $item;
121  });
122  }
123 
124  $this->map->walk(function (isItem &$item): isItem {
125  if (is_null($item->getTypeInformation())) {
126  $item->setTypeInformation(
127  $this->getTypeInformationForItem($item)
128  );
129  }
130 
131  // Apply the TypeHandler
132  $item = $this->getTypeHandlerForItem($item)->enrichItem($item);
133  // Translate Item
134  if ($item instanceof hasTitle) {
135  $item = $this->getItemInformation()->customTranslationForUser($item);
136  }
137  // Custom Symbol
138  if ($item instanceof hasSymbol) {
139  $item = $this->getItemInformation()->customSymbol($item);
140  }
141  // Custom Position
142  $item = $this->getItemInformation()->customPosition($item);
143 
144  return $item;
145  });
146 
147  // Override parent from configuration
148  $this->map->walk(function (isItem $item): isItem {
149  if ($item instanceof isChild || $item instanceof isInterchangeableItem) {
150  $parent = $this->map->getSingleItemFromFilter($this->information->getParent($item));
151  if ($parent instanceof isParent) {
152  $parent->appendChild($item);
153  $item->overrideParent($parent->getProviderIdentification());
154  }
155  }
156 
157  return $item;
158  });
159  }
160 
161  public function cleanupItemsForUIRepresentation(): void
162  {
163  // Remove not visible children
164  $this->map->walk(function (isItem &$item): isItem {
165  if ($item instanceof isParent) {
166  foreach ($item->getChildren() as $child) {
167  if (!$this->map->existsInFilter($child->getProviderIdentification())) {
168  $item->removeChild($child);
169  }
170  }
171  }
172  return $item;
173  });
174 
175  $this->map->walk(static function (isItem &$i): void {
176  if ($i instanceof isParent && $i->getChildren() === []) {
177  $i = $i->withAvailableCallable(static fn(): bool => false)->withVisibilityCallable(static fn(): bool => false);
178  }
179  });
180 
181  // filter empty slates
182  $this->map->filter(static function (isItem $i): bool {
183  if ($i instanceof isParent) {
184  return $i->getChildren() !== [];
185  }
186 
187  return true;
188  });
189  }
190 
191  public function sortItemsForUIRepresentation(): void
192  {
193  $this->map->sort();
194  }
195 
203  {
204  foreach ($this->map->getAllFromFilter() as $item) {
205  if ($item->isTop()) {
206  yield $item;
207  }
208  }
209  }
210 
214  public function getRawItems(): Iterator
215  {
216  yield from $this->map->getAllFromFilter();
217  }
218 
222  public function getRawUnfilteredItems(): Iterator
223  {
224  yield from $this->map->getAllFromRaw();
225  }
226 
227 
228  public function hasItems(): bool
229  {
230  return $this->map->has();
231  }
232 
233  public function hasVisibleItems(): bool
234  {
235  if (!$this->hasItems()) {
236  return false;
237  }
238  foreach ($this->getItemsForUIRepresentation() as $item) {
239  return $item instanceof isItem;
240  }
241  return false;
242  }
243 
249  public function getSingleItemFromFilter(IdentificationInterface $identification): isItem
250  {
251  return $this->map->getSingleItemFromFilter($identification);
252  }
253 
259  public function getSingleItemFromRaw(IdentificationInterface $identification): isItem
260  {
261  return $this->map->getSingleItemFromRaw($identification);
262  }
263 
268  public function getTypeHandlerForItem(isItem $item): TypeHandler
269  {
270  $type_information = $this->getTypeInformationForItem($item);
271  if ($type_information === null) {
272  return new BaseTypeHandler();
273  }
274 
275  return $type_information->getTypeHandler();
276  }
277 
282  {
283  return $this->information;
284  }
285 
291  {
292  return $this->getTypeInformationCollection()->get($item::class);
293  }
294 
299  {
301  }
302 }
Class MainMenuMainCollector This Collector will collect and then provide all available slates from th...
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
getItemsForUIRepresentation()
This will return all available isTopItem (and moved isInterchangeableItem), stacked based on the conf...
setTypeInformation(TypeInformation $information)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$provider
Definition: ltitoken.php:80
Class MainMenuItemFactory This factory provides you all available types for MainMenu GlobalScreen Ite...
withAvailableCallable(callable $is_available)
Pass a callable which can decide whether your element is available in general, e.g.
Interface supportsAsynchronousLoading Types, which implement this interface, can load their content a...
__construct(protected array $providers, MainMenuItemFactory $factory, private readonly ?ItemInformation $information=null)