@if (navigationService.position() === "left") {
@if (items !== null) {
@for (child of items; track i; let i = $index) {
@if (child?.children?.length === 0) {
0 ? '' : navigateAbsolutly(child)" (keydown.enter)="child?.children?.length > 0 ? '' : navigateAbsolutly(child)" detail="false">
@for (line of child.label | labelToLines; track $index) {
{{ line }}
}
} @else {
0 ? 'chevron-down-outline' : ''" (click)="child?.children?.length > 0 ? '' : navigateAbsolutly(child)" (keydown.enter)="child?.children?.length > 0 ? '' : navigateAbsolutly(child)">
{{ child.label }}
@if (child?.children?.length > 0) {
}
}
}
}
@if (absoluteChildren.length !== 0) {
@if (isUserAllowedToSeeOverview) {
{{ "MENU.OVERVIEW" | translate }}
}
{{ "MENU.COCKPIT" | translate }}
}
}
@if (navigationService.position() === "bottom") {
@for (child of children; track child) {
{{ child.mode === "label" ? child.label : "" }}
}
}