From 8722ff481cd5aeb0b62fa90580722a32c310c3ed Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 4 Dec 2024 23:14:08 -0800 Subject: [PATCH] Fix: use update preview component for dashboard widget --- src-ui/messages.xlf | 11 +---- .../workflow-dialog.component.scss | 0 .../saved-view-widget.component.html | 11 ++--- .../saved-view-widget.component.spec.ts | 29 +----------- .../saved-view-widget.component.ts | 45 ------------------- 5 files changed, 6 insertions(+), 90 deletions(-) create mode 100644 src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-dialog.component.scss diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 914e781d4..61722b5ad 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -2933,7 +2933,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 79 + 74 src/app/components/document-detail/document-detail.component.html @@ -5962,18 +5962,11 @@ 336 - - View Preview - - src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 71 - - No documents src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html - 121 + 116 diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-dialog.component.scss b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-dialog.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html index 42de9f374..2846e0d04 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -67,15 +67,10 @@ } @if (i === displayFields.length - 1) { -
- +
+ - - - - + diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts index ef36b0806..b4958b9b9 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts @@ -202,39 +202,12 @@ describe('SavedViewWidgetComponent', () => { // preview + download buttons expect( fixture.debugElement.queryAll(By.css('td a.btn'))[0].attributes['href'] - ).toEqual(component.getPreviewUrl(documentResults[0])) + ).toEqual(documentService.getPreviewUrl(documentResults[0].id)) expect( fixture.debugElement.queryAll(By.css('td a.btn'))[1].attributes['href'] ).toEqual(component.getDownloadUrl(documentResults[0])) }) - it('should show preview on mouseover after delay to preload content', fakeAsync(() => { - jest.spyOn(documentService, 'listFiltered').mockReturnValue( - of({ - all: [2, 3], - count: 2, - results: documentResults, - }) - ) - component.ngOnInit() - fixture.detectChanges() - component.mouseEnterPreviewButton(documentResults[0]) - expect(component.popover.isOpen()).toBeTruthy() - expect(component.popoverHidden).toBeTruthy() - tick(600) - expect(component.popoverHidden).toBeFalsy() - component.maybeClosePopover() - - component.mouseEnterPreviewButton(documentResults[1]) - tick(100) - component.mouseLeavePreviewButton() - component.mouseEnterPreview() - expect(component.popover.isOpen()).toBeTruthy() - component.mouseLeavePreview() - tick(600) - expect(component.popover.isOpen()).toBeFalsy() - })) - it('should call api endpoint and load results', () => { const listAllSpy = jest.spyOn(documentService, 'listFiltered') listAllSpy.mockReturnValue( diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts index 476531947..f788726d0 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts @@ -202,55 +202,10 @@ export class SavedViewWidgetComponent this.router.navigate(['documents', document.id]) } - getPreviewUrl(document: Document): string { - return this.documentService.getPreviewUrl(document.id) - } - getDownloadUrl(document: Document): string { return this.documentService.getDownloadUrl(document.id) } - mouseEnterPreviewButton(doc: Document) { - const newPopover = this.popovers.get(this.documents.indexOf(doc)) - if (this.popover !== newPopover && this.popover?.isOpen()) - this.popover.close() - this.popover = newPopover - this.mouseOnPreview = true - if (!this.popover.isOpen()) { - // we're going to open but hide to pre-load content during hover delay - this.popover.open() - this.popoverHidden = true - setTimeout(() => { - if (this.mouseOnPreview) { - // show popover - this.popoverHidden = false - } else { - this.popover.close() - } - }, 600) - } - } - - mouseEnterPreview() { - this.mouseOnPreview = true - } - - mouseLeavePreview() { - this.mouseOnPreview = false - this.maybeClosePopover() - } - - mouseLeavePreviewButton() { - this.mouseOnPreview = false - this.maybeClosePopover() - } - - maybeClosePopover() { - setTimeout(() => { - if (!this.mouseOnPreview) this.popover?.close() - }, 300) - } - public getColumnTitle(field: DisplayField): string { if (field.startsWith(DisplayField.CUSTOM_FIELD)) { const id = field.split('_')[2]