56 lines
2.8 KiB
HTML
56 lines
2.8 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<ion-back-button [attr.aria-label]="'core.back' | translate"></ion-back-button>
|
|
</ion-buttons>
|
|
<ion-title>{{ title }}</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
<ion-content>
|
|
<ion-refresher slot="fixed" [disabled]="!filesLoaded || (!showPrivateFiles && !showSiteFiles)"
|
|
(ionRefresh)="refreshData($event.target)">
|
|
<ion-refresher-content pullingText="{{ 'core.pulltorefresh' | translate }}"></ion-refresher-content>
|
|
</ion-refresher>
|
|
|
|
<core-loading [hideUntil]="filesLoaded" *ngIf="showPrivateFiles || showSiteFiles">
|
|
<!-- Allow selecting the files to see: private or site. -->
|
|
<div class="ion-padding" *ngIf="showPrivateFiles && showSiteFiles && !path">
|
|
<ion-select [(ngModel)]="root" (ngModelChange)="rootChanged()" interface="popover" class="core-button-select">
|
|
<ion-select-option value="my">{{ 'addon.privatefiles.privatefiles' | translate }}</ion-select-option>
|
|
<ion-select-option value="site">{{ 'addon.privatefiles.sitefiles' | translate }}</ion-select-option>
|
|
</ion-select>
|
|
</div>
|
|
|
|
<!-- Display info about space used and space left. -->
|
|
<ion-card class="core-info-card" *ngIf="userQuota && filesInfo && filesInfo.filecount > 0">
|
|
<ion-item><ion-label>
|
|
{{ 'core.quotausage' | translate:{$a: {used: spaceUsed, total: userQuotaReadable} } }}
|
|
</ion-label></ion-item>
|
|
</ion-card>
|
|
|
|
<!-- List of files. -->
|
|
<ion-list *ngIf="files && files.length > 0">
|
|
<ng-container *ngFor="let file of files">
|
|
<ion-item button *ngIf="file.isdir" class="item-file" (click)="openFolder(file)">
|
|
<ion-thumbnail slot="start">
|
|
<img [src]="file.imgPath" alt="" role="presentation">
|
|
</ion-thumbnail>
|
|
<ion-label>{{file.filename}}</ion-label>
|
|
</ion-item>
|
|
<core-file *ngIf="!file.isdir" [file]="file" [component]="component" [componentId]="file.contextid"></core-file>
|
|
</ng-container>
|
|
</ion-list>
|
|
|
|
<!-- Message telling there are no files. -->
|
|
<core-empty-box *ngIf="!files || !files.length" icon="far-folder-open" [message]="'addon.privatefiles.emptyfilelist' | translate">
|
|
</core-empty-box>
|
|
</core-loading>
|
|
|
|
<!-- Upload a private file. -->
|
|
<ion-fab slot="fixed" core-fab vertical="bottom" horizontal="end" *ngIf="showUpload && root != 'site' && !path">
|
|
<ion-fab-button (click)="uploadFile()" [attr.aria-label]="'core.fileuploader.uploadafile' | translate">
|
|
<ion-icon name="fas-plus"></ion-icon>
|
|
</ion-fab-button>
|
|
</ion-fab>
|
|
</ion-content>
|