mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<ng-container *ngIf="nodeId">
|
|
<adf-viewer
|
|
[ngClass]="{
|
|
'right_side--hide': !showRightSide
|
|
}"
|
|
[fileName]="fileName"
|
|
[maxRetries]="'viewer.maxRetries' | adfAppConfig"
|
|
[nodeId]="nodeId"
|
|
[versionId]="versionId"
|
|
[allowNavigate]="navigateMultiple"
|
|
[allowRightSidebar]="true"
|
|
[allowPrint]="false"
|
|
[showRightSidebar]="true"
|
|
[allowDownload]="false"
|
|
[allowFullScreen]="false"
|
|
[overlayMode]="true"
|
|
(showViewerChange)="onViewerVisibilityChanged()"
|
|
[canNavigateBefore]="!!previousNodeId"
|
|
[canNavigateNext]="!!nextNodeId"
|
|
(navigateBefore)="onNavigateBefore($event)"
|
|
(navigateNext)="onNavigateNext($event)"
|
|
>
|
|
<adf-viewer-sidebar *ngIf="infoDrawerOpened$ | async">
|
|
<aca-info-drawer [node]="selection.file"></aca-info-drawer>
|
|
</adf-viewer-sidebar>
|
|
|
|
<adf-viewer-open-with *ngIf="openWith.length">
|
|
<ng-container *ngFor="let action of openWith; trackBy: trackByActionId">
|
|
<app-toolbar-menu-item [actionRef]="action"></app-toolbar-menu-item>
|
|
</ng-container>
|
|
</adf-viewer-open-with>
|
|
|
|
<adf-viewer-toolbar-actions>
|
|
<ng-container *ngFor="let action of toolbarActions; trackBy: trackByActionId">
|
|
<aca-toolbar-action [actionRef]="action"></aca-toolbar-action>
|
|
</ng-container>
|
|
</adf-viewer-toolbar-actions>
|
|
</adf-viewer>
|
|
</ng-container>
|