Lovely file upload alerts

This commit is contained in:
Michael Shamoon 2021-01-26 02:32:45 -08:00
parent 5651a03b14
commit 53309f017f
4 changed files with 48 additions and 17 deletions

View File

@ -6,20 +6,22 @@
(onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)" dropZoneClassName="bg-light card" (onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)" dropZoneClassName="bg-light card"
multiple="true" contentClassName="justify-content-center d-flex align-items-center p-5" [showBrowseBtn]=true multiple="true" contentClassName="justify-content-center d-flex align-items-center p-5" [showBrowseBtn]=true
browseBtnClassName="btn btn-sm btn-outline-primary ml-2" i18n-dropZoneLabel i18n-browseBtnLabel> browseBtnClassName="btn btn-sm btn-outline-primary ml-2" i18n-dropZoneLabel i18n-browseBtnLabel>
</ngx-file-drop> </ngx-file-drop>
</form> </form>
<p>Uploading {{getStatusUploading().length}} files...</p>
<div *ngFor="let status of getStatus()"> <div *ngFor="let status of getStatus()">
<p>{{status.filename}}: {{status.message}}</p> <ngb-alert type="secondary" class="mt-2 mb-0" [dismissible]="isFinished(status)" (closed)="dismiss(status)">
<ngb-progressbar [value]="status.getProgress()" [max]="1" [striped]="true" [animated]="!isFinished(status)" [type]="getType(status)"> <h6 class="alert-heading">{{status.filename}}</h6>
</ngb-progressbar> <p class="mb-0" *ngIf="!isFinished(status) || (isFinished(status) && !status.documentId)">{{status.message}}</p>
<ngb-progressbar [value]="status.getProgress()" [max]="1" [type]="getStatusColor(status)"></ngb-progressbar>
<div *ngIf="isFinished(status)" class="mb-2"> <div *ngIf="isFinished(status)">
<button *ngIf="status.documentId" class="btn btn-sm btn-outline-primary mr-2" routerLink="/documents/{{status.documentId}}" (click)="dismiss(status)">Open document</button> <button *ngIf="status.documentId" class="btn btn-sm btn-outline-primary mr-2" routerLink="/documents/{{status.documentId}}" (click)="dismiss(status)">
<button class="btn btn-sm btn-outline-secondary" (click)="dismiss(status)">Dismiss</button> <small>Open document</small>
</div> <svg xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="currentColor" class="bi bi-arrow-right-short" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z"/>
</svg>
</button>
</div>
</ngb-alert>
</div> </div>
</div> </div>
</app-widget-frame> </app-widget-frame>

View File

@ -3,3 +3,31 @@
::ng-deep .ngx-file-drop__drop-zone--over { ::ng-deep .ngx-file-drop__drop-zone--over {
background-color: $primaryFaded !important; background-color: $primaryFaded !important;
} }
form {
position: relative;
}
.alert {
transition: all 0.2s ease;
}
.alert-heading {
font-size: 80%;
font-weight: bold;
}
.btn-sm {
line-height: 1;
}
::ng-deep .progress {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: auto;
mix-blend-mode: soft-light;
pointer-events: none;
}

View File

@ -41,7 +41,7 @@ export class UploadFileWidgetComponent implements OnInit {
return status.phase == FileStatusPhase.FAILED || status.phase == FileStatusPhase.SUCCESS return status.phase == FileStatusPhase.FAILED || status.phase == FileStatusPhase.SUCCESS
} }
getType(status: FileStatus) { getStatusColor(status: FileStatus) {
switch (status.phase) { switch (status.phase) {
case FileStatusPhase.PROCESSING: case FileStatusPhase.PROCESSING:
case FileStatusPhase.UPLOADING: case FileStatusPhase.UPLOADING:

View File

@ -33,7 +33,8 @@ export class FileStatus {
case FileStatusPhase.UPLOADING: case FileStatusPhase.UPLOADING:
return this.currentPhaseProgress / this.currentPhaseMaxProgress * 0.2 return this.currentPhaseProgress / this.currentPhaseMaxProgress * 0.2
case FileStatusPhase.PROCESSING: case FileStatusPhase.PROCESSING:
return this.currentPhaseProgress / this.currentPhaseMaxProgress * 0.8 + 0.2 if (this.currentPhaseProgress > 100) this.currentPhaseProgress = 0
return (this.currentPhaseProgress / this.currentPhaseMaxProgress * 0.8) + 0.2
case FileStatusPhase.SUCCESS: case FileStatusPhase.SUCCESS:
case FileStatusPhase.FAILED: case FileStatusPhase.FAILED:
return 1.0 return 1.0