From 41540a3a5f83c1f76efeb99943b16de097b0a71d Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sat, 6 Feb 2021 00:40:18 -0800 Subject: [PATCH 01/15] Document popover previews --- .../document-card-small.component.html | 20 ++++++++- .../document-card-small.component.scss | 18 ++++++++ .../document-card-small.component.ts | 44 +++++++++++++++++-- .../document-list.component.html | 2 +- .../document-list/document-list.component.ts | 9 ++++ src-ui/src/theme_dark.scss | 12 +++++ 6 files changed, 99 insertions(+), 6 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index 28dc84236..a6ac18b83 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -37,12 +37,30 @@ - + + + +
+
+ Loading... +
+ +
+ + + +
+ + + +
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index a4af1bb11..ba3a180c7 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -34,3 +34,21 @@ .doc-img-background-selected { background-color: $primaryFaded; } + +::ng-deep .popover { + max-width: 40rem; + + .preview { + min-width: 10rem; + min-height: 10rem; + max-height: 25rem; + overflow-y: scroll; + } + + .spinner-border { + position: absolute; + top: 4rem; + left: calc(50% - 0.5rem); + z-index: 0; + } +} diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts index 5db0e30c0..a19e19533 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts @@ -1,7 +1,10 @@ -import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; +import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core'; import { map } from 'rxjs/operators'; import { PaperlessDocument } from 'src/app/data/paperless-document'; +import { PaperlessDocumentMetadata } from 'src/app/data/paperless-document-metadata'; import { DocumentService } from 'src/app/services/rest/document.service'; +import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'; +import { SettingsService, SETTINGS_KEYS } from 'src/app/services/settings.service'; @Component({ selector: 'app-document-card-small', @@ -10,11 +13,11 @@ import { DocumentService } from 'src/app/services/rest/document.service'; }) export class DocumentCardSmallComponent implements OnInit { - constructor(private documentService: DocumentService) { } + constructor(private documentService: DocumentService, private settings: SettingsService) { } @Input() selected = false - + @Output() toggleSelected = new EventEmitter() @@ -29,7 +32,17 @@ export class DocumentCardSmallComponent implements OnInit { moreTags: number = null + @Output() + showPreview = new EventEmitter() + + @ViewChild('popover') popover: NgbPopover + + metadata: PaperlessDocumentMetadata + ngOnInit(): void { + this.documentService.getMetadata(this.document?.id).subscribe(result => { + this.metadata = result + }) } getThumbUrl() { @@ -40,7 +53,7 @@ export class DocumentCardSmallComponent implements OnInit { return this.documentService.getDownloadUrl(this.document.id) } - getPreviewUrl() { + get previewUrl() { return this.documentService.getPreviewUrl(this.document.id) } @@ -57,4 +70,27 @@ export class DocumentCardSmallComponent implements OnInit { ) } + get useNativePdfViewer(): boolean { + return this.settings.get(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER) + } + + getContentType() { + return this.metadata?.has_archive_version ? 'application/pdf' : this.metadata?.original_mime_type + } + + mouseEnterPreview() { + this.mouseOnPreview = true + if (!this.popover.isOpen()) { + setTimeout(() => { + if (this.mouseOnPreview) { + this.showPreview.emit(this) + this.popover.open() + } + }, 600); + } + } + + mouseLeavePreview() { + this.mouseOnPreview = false + } } diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html index cfc2e655d..630395b69 100644 --- a/src-ui/src/app/components/document-list/document-list.component.html +++ b/src-ui/src/app/components/document-list/document-list.component.html @@ -170,5 +170,5 @@
- +
diff --git a/src-ui/src/app/components/document-list/document-list.component.ts b/src-ui/src/app/components/document-list/document-list.component.ts index 0d1562c24..e1c2457e6 100644 --- a/src-ui/src/app/components/document-list/document-list.component.ts +++ b/src-ui/src/app/components/document-list/document-list.component.ts @@ -12,6 +12,7 @@ import { SavedViewService } from 'src/app/services/rest/saved-view.service'; import { Toast, ToastService } from 'src/app/services/toast.service'; import { FilterEditorComponent } from './filter-editor/filter-editor.component'; import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-view-config-dialog.component'; +import { DocumentCardSmallComponent } from './document-card-small/document-card-small.component'; @Component({ selector: 'app-document-list', @@ -41,6 +42,8 @@ export class DocumentListComponent implements OnInit, OnDestroy { private consumptionFinishedSubscription: Subscription + @ViewChildren(DocumentCardSmallComponent) smallCards: QueryList + get isFiltered() { return this.list.filterRules?.length > 0 } @@ -204,4 +207,10 @@ export class DocumentListComponent implements OnInit, OnDestroy { trackByDocumentId(index, item: PaperlessDocument) { return item.id } + + closeAllPopovers(cardOpening: DocumentCardSmallComponent) { + this.smallCards.forEach(card => { + if (card !== cardOpening) card.popover.close() + }) + } } diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index 4e850f017..8526284a8 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -366,6 +366,18 @@ $border-color-dark-mode: #47494f; .progress-bar.bg-primary { background-color: darken($primary-dark-mode, 5%) !important; } + + .popover { + .popover-header, + .popover-body { + background-color: $bg-light-dark-mode; + border-color: $border-color-dark-mode; + } + + .arrow::after { + border-top-color: $bg-light-dark-mode; + } + } } body.color-scheme-dark { From 4a471138b2d447652701cbb77617c7b7be8eff6b Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sat, 6 Feb 2021 14:25:53 -0800 Subject: [PATCH 02/15] Dark mode popover arrow fixes --- src-ui/src/theme_dark.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index 8526284a8..ee59ff9af 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -373,11 +373,17 @@ $border-color-dark-mode: #47494f; background-color: $bg-light-dark-mode; border-color: $border-color-dark-mode; } + } - .arrow::after { - border-top-color: $bg-light-dark-mode; + $placements: 'top', 'right', 'bottom', 'left'; + + @each $placement in $placements { + .bs-popover-#{$placement} > .arrow::after, + .bs-popover-auto[x-placement^=#{$placement}] > .arrow::after { + border-#{$placement}-color: $bg-light-dark-mode; } } + } body.color-scheme-dark { From b0fed61a019074b700964be2b0ce7fc779894987 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sat, 6 Feb 2021 14:28:26 -0800 Subject: [PATCH 03/15] Pre-load pdf contents --- .../document-card-small.component.html | 6 +++--- .../document-card-small.component.scss | 5 +++++ .../document-card-small.component.ts | 11 ++++++++++- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index a6ac18b83..e689bfcbd 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -1,5 +1,5 @@
-
+
@@ -48,10 +48,10 @@
-
+
Loading...
- +
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index ba3a180c7..089072135 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -52,3 +52,8 @@ z-index: 0; } } + +.popover-hidden ::ng-deep .popover { + opacity: 0; + pointer-events: none; +} diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts index a19e19533..4725add10 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts @@ -37,6 +37,9 @@ export class DocumentCardSmallComponent implements OnInit { @ViewChild('popover') popover: NgbPopover + mouseOnPreview = false + popoverHidden = true + metadata: PaperlessDocumentMetadata ngOnInit(): void { @@ -81,10 +84,16 @@ export class DocumentCardSmallComponent implements OnInit { mouseEnterPreview() { 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 this.showPreview.emit(this) - this.popover.open() + } else { + this.popover.close() } }, 600); } From 37b3a3061955dc269cc4a5b81a20e5222ea0dc88 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sat, 6 Feb 2021 14:30:44 -0800 Subject: [PATCH 04/15] Better minimum size for native viewer --- .../document-card-small/document-card-small.component.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index 089072135..5f34d6743 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -39,9 +39,9 @@ max-width: 40rem; .preview { - min-width: 10rem; - min-height: 10rem; - max-height: 25rem; + min-width: 30rem; + min-height: 20rem; + max-height: 35rem; overflow-y: scroll; } From dcb17f2f2185d01429ec7db3f279e34aa6ec792a Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sat, 6 Feb 2021 14:54:36 -0800 Subject: [PATCH 05/15] hide on card mouseleave --- .../document-card-small.component.html | 2 +- .../document-card-small/document-card-small.component.ts | 8 ++++---- .../document-list/document-list.component.html | 2 +- .../components/document-list/document-list.component.ts | 9 --------- 4 files changed, 6 insertions(+), 15 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index e689bfcbd..ca27fb697 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -1,5 +1,5 @@
-
+
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts index 4725add10..02eb5e0eb 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts @@ -32,9 +32,6 @@ export class DocumentCardSmallComponent implements OnInit { moreTags: number = null - @Output() - showPreview = new EventEmitter() - @ViewChild('popover') popover: NgbPopover mouseOnPreview = false @@ -91,7 +88,6 @@ export class DocumentCardSmallComponent implements OnInit { if (this.mouseOnPreview) { // show popover this.popoverHidden = false - this.showPreview.emit(this) } else { this.popover.close() } @@ -102,4 +98,8 @@ export class DocumentCardSmallComponent implements OnInit { mouseLeavePreview() { this.mouseOnPreview = false } + + mouseLeaveCard() { + this.popover.close() + } } diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html index 630395b69..cf954bde8 100644 --- a/src-ui/src/app/components/document-list/document-list.component.html +++ b/src-ui/src/app/components/document-list/document-list.component.html @@ -170,5 +170,5 @@
- +
diff --git a/src-ui/src/app/components/document-list/document-list.component.ts b/src-ui/src/app/components/document-list/document-list.component.ts index e1c2457e6..0d1562c24 100644 --- a/src-ui/src/app/components/document-list/document-list.component.ts +++ b/src-ui/src/app/components/document-list/document-list.component.ts @@ -12,7 +12,6 @@ import { SavedViewService } from 'src/app/services/rest/saved-view.service'; import { Toast, ToastService } from 'src/app/services/toast.service'; import { FilterEditorComponent } from './filter-editor/filter-editor.component'; import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-view-config-dialog.component'; -import { DocumentCardSmallComponent } from './document-card-small/document-card-small.component'; @Component({ selector: 'app-document-list', @@ -42,8 +41,6 @@ export class DocumentListComponent implements OnInit, OnDestroy { private consumptionFinishedSubscription: Subscription - @ViewChildren(DocumentCardSmallComponent) smallCards: QueryList - get isFiltered() { return this.list.filterRules?.length > 0 } @@ -207,10 +204,4 @@ export class DocumentListComponent implements OnInit, OnDestroy { trackByDocumentId(index, item: PaperlessDocument) { return item.id } - - closeAllPopovers(cardOpening: DocumentCardSmallComponent) { - this.smallCards.forEach(card => { - if (card !== cardOpening) card.popover.close() - }) - } } From 5306d58991ada431bf67697e794f3c5e6d18e8e6 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sun, 7 Feb 2021 08:19:00 -0800 Subject: [PATCH 06/15] Dark mode + sizing tweaks --- .../document-card-small.component.scss | 4 ++-- src-ui/src/theme_dark.scss | 12 +++++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index 5f34d6743..62fc18d77 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -39,8 +39,8 @@ max-width: 40rem; .preview { - min-width: 30rem; - min-height: 20rem; + min-width: 25rem; + min-height: 15rem; max-height: 35rem; overflow-y: scroll; } diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index ee59ff9af..57bb9896e 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -1,6 +1,7 @@ $primary-dark-mode: #45973a; $danger-dark-mode: #b71631; $bg-dark-mode: #161618; +$bg-dark-mode-accent: #21262d; $bg-light-dark-mode: #1c1c1f; $text-color-dark-mode: #abb2bf; $text-color-dark-mode-accent: lighten($text-color-dark-mode, 10%); @@ -370,7 +371,7 @@ $border-color-dark-mode: #47494f; .popover { .popover-header, .popover-body { - background-color: $bg-light-dark-mode; + background-color: $bg-dark-mode-accent; border-color: $border-color-dark-mode; } } @@ -380,10 +381,15 @@ $border-color-dark-mode: #47494f; @each $placement in $placements { .bs-popover-#{$placement} > .arrow::after, .bs-popover-auto[x-placement^=#{$placement}] > .arrow::after { - border-#{$placement}-color: $bg-light-dark-mode; + border-#{$placement}-color: $bg-dark-mode-accent; } } - + + .bs-popover-bottom .popover-header::before, + .bs-popover-auto[x-placement^=bottom] .popover-header::before { + border-bottom-color: $bg-dark-mode-accent; + } + } body.color-scheme-dark { From 706b1f46220ffc7cffc51be8bfe0fd458fc86a77 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Wed, 24 Feb 2021 11:26:39 -0800 Subject: [PATCH 07/15] Remove ng2-pdf-viewer and use only native viewer --- src-ui/package.json | 1 - src-ui/src/app/app.module.ts | 2 -- .../document-detail.component.html | 17 +---------------- .../document-detail.component.ts | 12 ------------ .../document-card-small.component.html | 10 ++-------- .../document-card-small.component.ts | 4 ---- .../manage/settings/settings.component.ts | 2 -- src-ui/src/app/services/settings.service.ts | 2 -- 8 files changed, 3 insertions(+), 47 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index 14d828483..a7cef2581 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -24,7 +24,6 @@ "@ng-select/ng-select": "^5.0.9", "bootstrap": "^4.5.0", "ng-bootstrap": "^1.6.3", - "ng2-pdf-viewer": "^6.3.2", "ngx-cookie-service": "^10.1.1", "ngx-file-drop": "^10.0.0", "ngx-infinite-scroll": "^9.1.0", diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index 49e937c0b..d63d34306 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -48,7 +48,6 @@ import { SavedViewWidgetComponent } from './components/dashboard/widgets/saved-v import { StatisticsWidgetComponent } from './components/dashboard/widgets/statistics-widget/statistics-widget.component'; import { UploadFileWidgetComponent } from './components/dashboard/widgets/upload-file-widget/upload-file-widget.component'; import { WidgetFrameComponent } from './components/dashboard/widgets/widget-frame/widget-frame.component'; -import { PdfViewerModule } from 'ng2-pdf-viewer'; import { WelcomeWidgetComponent } from './components/dashboard/widgets/welcome-widget/welcome-widget.component'; import { YesNoPipe } from './pipes/yes-no.pipe'; import { FileSizePipe } from './pipes/file-size.pipe'; @@ -129,7 +128,6 @@ registerLocaleData(localeDe) ReactiveFormsModule, NgxFileDropModule, InfiniteScrollModule, - PdfViewerModule, NgSelectModule ], providers: [ diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html index 2814a1242..9db571708 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.html +++ b/src-ui/src/app/components/document-detail/document-detail.component.html @@ -1,14 +1,4 @@ -
-
-
Page
-
- -
-
of {{previewNumPages}}
-
-
-