mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* info drawer action added * actions added * * improved docs * * added unit test * fixed e2e * * rename actions to toolbar * * minor changes * Update application-features.md Co-authored-by: Eugenio Romano <eromano@users.noreply.github.com>
30 lines
844 B
HTML
30 lines
844 B
HTML
<div *ngIf="isLoading">
|
|
<mat-progress-bar mode="indeterminate"></mat-progress-bar>
|
|
</div>
|
|
<ng-container *ngIf="!isLoading && !!displayNode">
|
|
<adf-info-drawer
|
|
[title]="'APP.INFO_DRAWER.TITLE'"
|
|
cdkTrapFocus
|
|
cdkTrapFocusAutoCapture
|
|
>
|
|
<adf-toolbar class="adf-toolbar--inline" info-drawer-buttons>
|
|
<ng-container *ngFor="let entry of actions; trackBy: trackByActionId">
|
|
<aca-toolbar-action [actionRef]="entry"></aca-toolbar-action>
|
|
</ng-container>
|
|
</adf-toolbar>
|
|
|
|
<adf-info-drawer-tab
|
|
*ngFor="let tab of tabs"
|
|
[icon]="tab.icon"
|
|
[label]="tab.title"
|
|
>
|
|
<adf-dynamic-tab
|
|
[node]="displayNode"
|
|
[id]="tab.component"
|
|
[attr.data-automation-id]="tab.component"
|
|
>
|
|
</adf-dynamic-tab>
|
|
</adf-info-drawer-tab>
|
|
</adf-info-drawer>
|
|
</ng-container>
|