mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* [ACS-6081] Reduce references to internal Angular material CSS classes * [ACS-6081] rollback default scrollable value [ci:force] * [ACS-6081] linting * [ACS-6081] fix e2es * [ACS-6081] cr fix * [ACS-6081] remove adf-cli logger from e2es
100 lines
3.8 KiB
HTML
100 lines
3.8 KiB
HTML
<aca-page-layout [hasError]="!isValidPath">
|
|
<div class="aca-page-layout-header">
|
|
<adf-breadcrumb [root]="title" [folderNode]="node" [maxItems]="isSmallScreen ? 1 : 0" (navigate)="onBreadcrumbNavigate($event)"> </adf-breadcrumb>
|
|
<aca-toolbar [items]="actions"></aca-toolbar>
|
|
</div>
|
|
|
|
<div class="aca-page-layout-error">
|
|
<aca-generic-error></aca-generic-error>
|
|
</div>
|
|
|
|
<div class="aca-page-layout-content">
|
|
<div class="aca-main-content" *ngIf="!(showLoader$ | async)">
|
|
<adf-upload-drag-area [rootFolderId]="node?.id" [disabled]="!canUpload" (updateFileVersion)="onUploadNewVersion($event)">
|
|
<adf-document-list
|
|
#documentList
|
|
acaDocumentList
|
|
acaContextActions
|
|
[selectionMode]="'multiple'"
|
|
[multiselect]="false"
|
|
[currentFolderId]="node?.id"
|
|
[loading]="true"
|
|
[showHeader]="showHeader"
|
|
[node]="nodeResult"
|
|
[allowDropFiles]="true"
|
|
[navigate]="false"
|
|
[sorting]="['name', 'ASC']"
|
|
[imageResolver]="imageResolver"
|
|
[headerFilters]="true"
|
|
[filterValue]="queryParams"
|
|
[isResizingEnabled]="true"
|
|
[blurOnResize]="false"
|
|
(node-dblclick)="handleNodeClick($event)"
|
|
(name-click)="handleNodeClick($event)"
|
|
(sorting-changed)="onSortingChanged($event)"
|
|
(filterSelection)="onFilterSelected($event)"
|
|
(error)="onError()"
|
|
>
|
|
<data-columns>
|
|
<ng-container *ngFor="let column of columns; trackBy: trackByColumnId">
|
|
<ng-container *ngIf="column.template && !(column.desktopOnly && isSmallScreen)">
|
|
<data-column
|
|
[key]="column.key"
|
|
[title]="column.title"
|
|
[type]="column.type"
|
|
[format]="column.format"
|
|
[class]="column.class"
|
|
[sortable]="column.sortable"
|
|
[sortingKey]="column.sortingKey || column.key"
|
|
[isHidden]="column.isHidden"
|
|
>
|
|
<ng-template let-context>
|
|
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
|
|
</ng-template>
|
|
</data-column>
|
|
</ng-container>
|
|
|
|
<ng-container *ngIf="!column.template && !(column.desktopOnly && isSmallScreen)">
|
|
<data-column
|
|
[key]="column.key"
|
|
[title]="column.title"
|
|
[type]="column.type"
|
|
[format]="column.format"
|
|
[class]="column.class"
|
|
[sortable]="column.sortable"
|
|
[sortingKey]="column.sortingKey || column.key"
|
|
[isHidden]="column.isHidden"
|
|
>
|
|
</data-column>
|
|
</ng-container>
|
|
</ng-container>
|
|
</data-columns>
|
|
|
|
<adf-custom-empty-content-template *ngIf="isFilterHeaderActive">
|
|
<ng-container>
|
|
<div class="empty-search__block" aria-live="polite">
|
|
<p class="empty-search__text">
|
|
{{ 'APP.BROWSE.SEARCH.NO_FILTER_RESULTS' | translate }}
|
|
</p>
|
|
</div>
|
|
</ng-container>
|
|
</adf-custom-empty-content-template>
|
|
</adf-document-list>
|
|
|
|
<adf-pagination acaPagination [target]="documentList"> </adf-pagination>
|
|
</adf-upload-drag-area>
|
|
</div>
|
|
|
|
<mat-progress-spinner *ngIf="showLoader$ | async"
|
|
id="adf-document-list-loading"
|
|
class="adf-document-list-loading-margin"
|
|
[color]="'primary'"
|
|
[mode]="'indeterminate'">
|
|
</mat-progress-spinner>
|
|
|
|
<div class="aca-sidebar" *ngIf="infoDrawerOpened$ | async">
|
|
<aca-info-drawer [node]="selection.last"></aca-info-drawer>
|
|
</div>
|
|
</div>
|
|
</aca-page-layout>
|