+
-
-
-
-
+
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]