From 865e9fe2333640c608ece3146abdab8623343c82 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 27 Feb 2025 13:13:36 -0800 Subject: [PATCH] Enhancement: relocate and smaller upload widget, dont limit upload list (#9244) --- src-ui/messages.xlf | 45 +++++------------- .../dashboard/dashboard.component.html | 8 +--- .../upload-file-widget.component.html | 31 ++++-------- .../upload-file-widget.component.scss | 20 ++++++-- .../upload-file-widget.component.spec.ts | 16 ------- .../upload-file-widget.component.ts | 15 +----- .../widget-frame/widget-frame.component.html | 47 +++++++++++-------- .../widget-frame/widget-frame.component.ts | 6 ++- 8 files changed, 73 insertions(+), 115 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 7a35f94fe..4655767fd 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -272,7 +272,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html - 73 + 58 @@ -735,7 +735,7 @@ src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html - 14 + 15 src/app/components/document-detail/document-detail.component.html @@ -6172,10 +6172,6 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 9 - - src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html - 39 - Filter by correspondent @@ -6314,69 +6310,54 @@ 83 - - Upload new documents + + Upload documents src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html - 1 + 6 - - Drop documents anywhere or + + or drop files anywhere src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html - 4 - - - - Browse files - - src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html - 5 + 7 Dismiss completed src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html - 20 + 23 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} - - src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html - 37 - - This is shown as a summary line when there are more than 5 document in the processing pipeline. - Processing: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts - 67 + 61 Failed: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts - 70 + 64 Added: src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts - 73 + 67 , src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts - 76 + 70 src/app/components/document-list/bulk-editor/bulk-editor.component.ts diff --git a/src-ui/src/app/components/dashboard/dashboard.component.html b/src-ui/src/app/components/dashboard/dashboard.component.html index 7472abc8c..99c725802 100644 --- a/src-ui/src/app/components/dashboard/dashboard.component.html +++ b/src-ui/src/app/components/dashboard/dashboard.component.html @@ -49,12 +49,8 @@
-
- -
-
- -
+ +
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 677be66a4..b91d5ed62 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 @@ -1,12 +1,15 @@ - +
-
- Drop documents anywhere or - + +
@if (getStatus().length > 0) { -
+
@@ -30,24 +33,6 @@
} - @if (getStatusHidden().length) { -
- @if (!alertsExpanded) { -

- {getStatusHidden().length, plural, =1 {One more document} other {{{getStatusHidden().length}} more documents}} -  •  - Show all -

- } -
- @for (status of getStatusHidden(); track status) { -
- -
- } -
-
- }
diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss index 7a050ab43..315313bff 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss @@ -1,5 +1,13 @@ -form { - position: relative; +:host ::ng-deep i-bs svg { + margin-top: -3px; +} + +.btn-outline-dark { + --bs-btn-border-color: var(--bs-border-color-translucent); +} + +.smaller { + font-size: 0.75rem; } .alert-heading { @@ -40,6 +48,10 @@ form { background-color: rgba(var(--bs-body-bg-rgb), .95) !important; } -.max-vh100-40 { - max-height: calc(100vh - 40px); +.consumer-status-list { + max-height: calc(100vh - 315px); // e.g. below the upload button, mobile + + @media screen and (min-width: 768px) { + max-height: calc(100vh - 200px); // e.g. below the upload button + } } diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts index 45ac9217a..32d1557ed 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts @@ -8,7 +8,6 @@ import { } from '@angular/core/testing' import { By } from '@angular/platform-browser' import { RouterTestingModule } from '@angular/router/testing' -import { NgbAlert, NgbCollapse } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { routes } from 'src/app/app-routing.module' import { PermissionsGuard } from 'src/app/guards/permissions.guard' @@ -116,20 +115,6 @@ describe('UploadFileWidgetComponent', () => { expect(component.getStatusColor(successStatus)).toEqual('success') }) - it('should enforce a maximum number of alerts', () => { - mockConsumerStatuses(websocketStatusService) - fixture.detectChanges() - // 5 total, 1 hidden - expect(fixture.debugElement.queryAll(By.directive(NgbAlert))).toHaveLength( - 6 - ) - expect( - fixture.debugElement - .query(By.directive(NgbCollapse)) - .queryAll(By.directive(NgbAlert)) - ).toHaveLength(1) - }) - it('should allow dismissing an alert', () => { const dismissSpy = jest.spyOn(websocketStatusService, 'dismiss') component.dismiss(new FileStatus()) @@ -138,7 +123,6 @@ describe('UploadFileWidgetComponent', () => { it('should allow dismissing completed alerts', fakeAsync(() => { mockConsumerStatuses(websocketStatusService) - component.alertsExpanded = true fixture.detectChanges() jest .spyOn(component, 'getStatusCompleted') 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 f60cdce60..478775ae4 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 @@ -4,7 +4,6 @@ import { RouterModule } from '@angular/router' import { NgbAlert, NgbAlertModule, - NgbCollapseModule, NgbProgressbarModule, } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' @@ -21,8 +20,6 @@ import { } from 'src/app/services/websocket-status.service' import { WidgetFrameComponent } from '../widget-frame/widget-frame.component' -const MAX_ALERTS = 5 - @Component({ selector: 'pngx-upload-file-widget', templateUrl: './upload-file-widget.component.html', @@ -34,15 +31,12 @@ const MAX_ALERTS = 5 NgTemplateOutlet, RouterModule, NgbAlertModule, - NgbCollapseModule, NgbProgressbarModule, NgxBootstrapIconsModule, TourNgBootstrapModule, ], }) export class UploadFileWidgetComponent extends ComponentWithPermissions { - alertsExpanded = false - @ViewChildren(NgbAlert) alerts: QueryList constructor( @@ -54,7 +48,7 @@ export class UploadFileWidgetComponent extends ComponentWithPermissions { } getStatus() { - return this.websocketStatusService.getConsumerStatus().slice(0, MAX_ALERTS) + return this.websocketStatusService.getConsumerStatus() } getStatusSummary() { @@ -77,13 +71,6 @@ export class UploadFileWidgetComponent extends ComponentWithPermissions { ) } - getStatusHidden() { - if (this.websocketStatusService.getConsumerStatus().length < MAX_ALERTS) - return [] - else - return this.websocketStatusService.getConsumerStatus().slice(MAX_ALERTS) - } - getStatusUploading() { return this.websocketStatusService.getConsumerStatus( FileStatusPhase.UPLOADING diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html index 5ec00f500..101a489b9 100644 --- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html +++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -1,23 +1,32 @@ -
-
-
-
- @if (draggable) { -
- -
+@if (!cardless) { +
+
+
+
+ @if (draggable) { +
+ +
+ } +
{{title}}
+
+ @if (loading) { +
+
Loading...
} -
{{title}}
+
- @if (loading) { -
-
Loading...
- } -
+
+ +
+
+} @else { +
+ +
+} -
-
- -
-
+ + + diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts index 109608daa..728787e9e 100644 --- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts +++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts @@ -1,4 +1,5 @@ import { DragDropModule } from '@angular/cdk/drag-drop' +import { NgTemplateOutlet } from '@angular/common' import { AfterViewInit, Component, Input } from '@angular/core' import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' import { LoadingComponentWithPermissions } from 'src/app/components/loading-component/loading.component' @@ -7,7 +8,7 @@ import { LoadingComponentWithPermissions } from 'src/app/components/loading-comp selector: 'pngx-widget-frame', templateUrl: './widget-frame.component.html', styleUrls: ['./widget-frame.component.scss'], - imports: [DragDropModule, NgxBootstrapIconsModule], + imports: [DragDropModule, NgxBootstrapIconsModule, NgTemplateOutlet], }) export class WidgetFrameComponent extends LoadingComponentWithPermissions @@ -26,6 +27,9 @@ export class WidgetFrameComponent @Input() draggable: any + @Input() + cardless: boolean = false + ngAfterViewInit(): void { setTimeout(() => { this.show = true