Dismiss all

This commit is contained in:
Michael Shamoon 2021-01-26 02:52:16 -08:00
parent 53309f017f
commit 532a3d955c
4 changed files with 27 additions and 2 deletions

View File

@ -1,5 +1,13 @@
<app-widget-frame title="Upload new documents" i18n-title> <app-widget-frame title="Upload new documents" i18n-title [class.has-multiple-status]="getStatus().length > 1">
<div header-buttons>
<button type="button" class="btn btn-link dismiss-all" [disabled]="!getStatus().length" (click)="dismissAll()">
<small class="mr-1">Hide all</small>
<svg xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="currentColor" class="bi bi-check2-all" viewBox="0 0 16 16">
<path d="M12.354 4.354a.5.5 0 0 0-.708-.708L5 10.293 1.854 7.146a.5.5 0 1 0-.708.708l3.5 3.5a.5.5 0 0 0 .708 0l7-7zm-4.208 7l-.896-.897.707-.707.543.543 6.646-6.647a.5.5 0 0 1 .708.708l-7 7a.5.5 0 0 1-.708 0z"/>
<path d="M5.354 7.146l.896.897-.707.707-.897-.896a.5.5 0 1 1 .708-.708z"/>
</svg>
</button>
</div>
<div content> <div content>
<form> <form>
<ngx-file-drop dropZoneLabel="Drop documents here or" browseBtnLabel="Browse files" (onFileDrop)="dropped($event)" <ngx-file-drop dropZoneLabel="Drop documents here or" browseBtnLabel="Browse files" (onFileDrop)="dropped($event)"

View File

@ -21,6 +21,15 @@ form {
line-height: 1; line-height: 1;
} }
.dismiss-all {
transition: opacity 0.2s ease;
opacity: 0;
}
.has-multiple-status .dismiss-all {
opacity: 1;
}
::ng-deep .progress { ::ng-deep .progress {
position: absolute; position: absolute;
top: 0; top: 0;

View File

@ -57,6 +57,10 @@ export class UploadFileWidgetComponent implements OnInit {
this.consumerStatusService.dismiss(status) this.consumerStatusService.dismiss(status)
} }
dismissAll() {
this.consumerStatusService.dismissAll()
}
ngOnInit(): void { ngOnInit(): void {
} }

View File

@ -133,6 +133,10 @@ export class ConsumerStatusService {
} }
} }
dismissAll() {
this.consumerStatus = []
}
onDocumentConsumptionFinished() { onDocumentConsumptionFinished() {
return this.documentConsumptionFinishedSubject return this.documentConsumptionFinishedSubject
} }