From b581e4221645bcf1952bfed438623fce9b2f6e79 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Tue, 26 Jan 2021 01:10:39 +0100 Subject: [PATCH] functions for combined upload progress bars --- .../upload-file-widget.component.html | 1 + .../upload-file-widget.component.ts | 25 ++++++++++++++++--- .../app/services/consumer-status.service.ts | 15 +++++++++-- 3 files changed, 36 insertions(+), 5 deletions(-) diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html index 59afb74f9..263918a73 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -9,6 +9,7 @@ +

Uploading {{getStatusUploading().length}} files...

{{status.filename}}: {{status.message}}

diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts index ac270fe30..bd0e4e290 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts @@ -18,7 +18,23 @@ export class UploadFileWidgetComponent implements OnInit { ) { } getStatus() { - return this.consumerStatusService.consumerStatus + return this.consumerStatusService.getConsumerStatus() + } + + getStatusUploading() { + return this.consumerStatusService.getConsumerStatus(FileStatusPhase.UPLOADING) + } + + getTotalUploadProgress() { + let current = 0 + let max = 0 + + this.getStatusUploading().forEach(status => { + current += status.currentPhaseProgress + max += status.currentPhaseMaxProgress + }) + + return current / Math.max(max, 1) } isFinished(status: FileStatus) { @@ -58,14 +74,17 @@ export class UploadFileWidgetComponent implements OnInit { fileEntry.file((file: File) => { let formData = new FormData() formData.append('document', file, file.name) - let status = this.consumerStatusService.newFileUpload() - status.filename = file.name + let status = this.consumerStatusService.newFileUpload(file.name) + + status.message = "Connecting..." this.documentService.uploadDocument(formData).subscribe(event => { if (event.type == HttpEventType.UploadProgress) { status.updateProgress(FileStatusPhase.UPLOADING, event.loaded, event.total) + status.message = "Uploading..." } else if (event.type == HttpEventType.Response) { status.taskId = event.body["task_id"] + status.message = "Upload complete." } }, error => { diff --git a/src-ui/src/app/services/consumer-status.service.ts b/src-ui/src/app/services/consumer-status.service.ts index 8aaae1e93..69e58e2dd 100644 --- a/src-ui/src/app/services/consumer-status.service.ts +++ b/src-ui/src/app/services/consumer-status.service.ts @@ -63,7 +63,9 @@ export class ConsumerStatusService { private statusWebSocked: WebSocket - consumerStatus: FileStatus[] = [] + private consumerStatus: FileStatus[] = [] + + private documentConsumptionFinishedSubject = new Subject() private documentConsumptionFailedSubject = new Subject() @@ -78,12 +80,21 @@ export class ConsumerStatusService { return status } - newFileUpload(): FileStatus { + newFileUpload(filename: string): FileStatus { let status = new FileStatus() + status.filename = filename this.consumerStatus.push(status) return status } + getConsumerStatus(phase?: FileStatusPhase) { + if (phase) { + return this.consumerStatus.filter(s => s.phase == phase) + } else { + return this.consumerStatus + } + } + connect() { this.disconnect() this.statusWebSocked = new WebSocket("ws://localhost:8000/ws/status/");