19 declare(strict_types=1);
83 $this->map =
new Map($factory);
97 $this->type_information_collection->append($provider->provideTypeInformation());
98 $this->map->addMultiple(...$provider->getStaticTopItems());
99 $this->map->addMultiple(...$provider->getStaticSubItems());
106 $this->map->filter(
function (
isItem $item) use ($async_only) :
bool {
116 foreach ($item->getChildren() as $child) {
117 if ($child->isAlwaysAvailable()) {
158 $this->map->walk(
function (
isItem $item) {
160 $parent = $this->map->getSingleItemFromFilter($this->information->getParent($item));
162 $parent->appendChild($item);
163 $item->overrideParent($parent->getProviderIdentification());
176 foreach ($item->getChildren() as $child) {
177 if (!$this->map->existsInFilter($child->getProviderIdentification())) {
178 $item->removeChild($child);
185 $this->map->walk(
static function (
isItem &
$i) :
void {
186 if ($i instanceof
isParent && count($i->getChildren()) === 0) {
189 })->withVisibilityCallable(
static function () {
196 $this->map->filter(
static function (
isItem $i) :
bool {
198 return count($i->getChildren()) > 0;
218 foreach ($this->map->getAllFromFilter() as $item) {
219 if ($item->isTop()) {
230 yield from $this->map->getAllFromFilter();
238 yield from $this->map->getAllFromRaw();
244 return $this->map->has();
253 return $item instanceof
isItem;
265 return $this->map->getSingleItemFromFilter($identification);
275 return $this->map->getSingleItemFromRaw($identification);
285 if ($type_information === null) {
289 return $type_information->getTypeHandler();
Class MainMenuMainCollector This Collector will collect and then provide all available slates from th...
getTypeInformationForItem(isItem $item)
sortItemsForUIRepresentation()
getTypeInformationCollection()
getItemsForUIRepresentation()
This will return all available isTopItem (and moved isInterchangeableItem), stacked based on the conf...
getSingleItemFromRaw(IdentificationInterface $identification)
Interface IdentificationInterface.
Class AbstractBaseCollector.
filterItemsByVisibilty(bool $async_only=false)
getTypeHandlerForItem(isItem $item)
cleanupItemsForUIRepresentation()
prepareItemsForUIRepresentation()
setTypeInformation(TypeInformation $information)
Class MainMenuItemFactory This factory provides you all available types for MainMenu GlobalScreen Ite...
Class TypeInformationCollection.
getSingleItemFromFilter(IdentificationInterface $identification)
withAvailableCallable(callable $is_available)
Pass a callable which can decide whether your element is available in general, e.g.
__construct(array $providers, MainMenuItemFactory $factory, ItemInformation $information=null)
MainMenuMainCollector constructor.
Interface supportsAsynchronousLoading Types, which implement this interface, can load their content a...
$type_information_collection
Interface hasSymbol Methods for Entries with Symbols.