mirror of https://github.com/Chocobozzz/PeerTube
55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
<div class="sub-menu" [ngClass]="{ 'no-scroll': isModalOpened }">
|
|
<ng-container *ngFor="let menuEntry of menuEntries; index as id">
|
|
|
|
<a *ngIf="menuEntry.routerLink && isDisplayed(menuEntry)" [routerLink]="menuEntry.routerLink" routerLinkActive="active" class="title-page title-page-settings">{{ menuEntry.label }}</a>
|
|
|
|
<div *ngIf="!menuEntry.routerLink && isDisplayed(menuEntry)" ngbDropdown class="parent-entry"
|
|
#dropdown="ngbDropdown" autoClose="true">
|
|
<span
|
|
role="button" class="title-page title-page-settings">
|
|
<ng-container i18n>{{ menuEntry.label }}</ng-container>
|
|
</span>
|
|
|
|
<span
|
|
*ngIf="!isInSmallView"
|
|
tabindex=0
|
|
[ngClass]="{ active: !!suffixLabels[menuEntry.label] }" ngbDropdownAnchor
|
|
(click)="dropdownAnchorClicked(dropdown)" (keydown.enter)="dropdownAnchorClicked(dropdown)"
|
|
role="button" class="title-page title-page-settings"
|
|
>
|
|
<ng-container i18n>{{ menuEntry.label }}</ng-container>
|
|
</span>
|
|
|
|
<div ngbDropdownMenu>
|
|
<ng-container *ngFor="let menuChild of menuEntry.children">
|
|
<a *ngIf="isDisplayed(menuChild)" class="dropdown-item"
|
|
[ngClass]="{ icon: hasIcons }"
|
|
[routerLink]="menuChild.routerLink">
|
|
<my-global-icon *ngIf="menuChild.iconName" [iconName]="menuChild.iconName" aria-hidden="true"></my-global-icon>
|
|
|
|
{{ menuChild.label }}
|
|
</a>
|
|
</ng-container>
|
|
</div>
|
|
</div>
|
|
</ng-container>
|
|
</div>
|
|
|
|
<ng-template #modal let-close="close" let-dismiss="dismiss">
|
|
<div class="modal-body">
|
|
<ng-container *ngFor="let menuEntry of menuEntries; index as id">
|
|
<div [ngClass]="{ hidden: id !== currentMenuEntryIndex }">
|
|
<ng-container *ngFor="let menuChild of menuEntry.children">
|
|
<a *ngIf="isDisplayed(menuChild)"
|
|
[ngClass]="{ icon: hasIcons }"
|
|
[routerLink]="menuChild.routerLink" routerLinkActive="active" (click)="dismissOtherModals()">
|
|
<my-global-icon *ngIf="menuChild.iconName" [iconName]="menuChild.iconName" aria-hidden="true"></my-global-icon>
|
|
|
|
{{ menuChild.label }}
|
|
</a>
|
|
</ng-container>
|
|
</div>
|
|
</ng-container>
|
|
</div>
|
|
</ng-template>
|