-
+
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 cbff950a2..c7fff39b5 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
@@ -6,7 +6,7 @@ import {
Output,
ViewChild,
} from '@angular/core'
-import { map } from 'rxjs/operators'
+import { first, map } from 'rxjs/operators'
import { PaperlessDocument } from 'src/app/data/paperless-document'
import { DocumentService } from 'src/app/services/rest/document.service'
import {
@@ -14,6 +14,8 @@ import {
SETTINGS_KEYS,
} from 'src/app/services/settings.service'
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'
+import { OpenDocumentsService } from 'src/app/services/open-documents.service'
+import { Router } from '@angular/router'
@Component({
selector: 'app-document-card-small',
@@ -26,7 +28,9 @@ import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'
export class DocumentCardSmallComponent implements OnInit {
constructor(
private documentService: DocumentService,
- private settingsService: SettingsService
+ private settingsService: SettingsService,
+ private openDocumentsService: OpenDocumentsService,
+ private router: Router
) {}
@Input()
@@ -109,4 +113,13 @@ export class DocumentCardSmallComponent implements OnInit {
mouseLeaveCard() {
this.popover.close()
}
+
+ clickEdit() {
+ this.openDocumentsService
+ .openDocument(this.document)
+ .pipe(first())
+ .subscribe((open) => {
+ if (open) this.router.navigate(['documents', this.document.id])
+ })
+ }
}
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 4a15fe976..1b0eae525 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
@@ -168,7 +168,7 @@
- {{d.title | documentTitle}}
+ {{d.title | documentTitle}}
|
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 01c2bee34..3d6db5731 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
@@ -20,6 +20,7 @@ import {
} from 'src/app/directives/sortable.directive'
import { ConsumerStatusService } from 'src/app/services/consumer-status.service'
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
+import { OpenDocumentsService } from 'src/app/services/open-documents.service'
import {
filterRulesFromQueryParams,
QueryParamsService,
@@ -47,7 +48,8 @@ export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
private toastService: ToastService,
private modalService: NgbModal,
private consumerStatusService: ConsumerStatusService,
- private queryParamsService: QueryParamsService
+ private queryParamsService: QueryParamsService,
+ private openDocumentsService: OpenDocumentsService
) {}
@ViewChild('filterEditor')
@@ -245,6 +247,15 @@ export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
else this.list.selectRangeTo(document)
}
+ clickEdit(doc: PaperlessDocument) {
+ this.openDocumentsService
+ .openDocument(doc)
+ .pipe(first())
+ .subscribe((open) => {
+ if (open) this.router.navigate(['documents', doc.id])
+ })
+ }
+
clickTag(tagID: number) {
this.list.selectNone()
setTimeout(() => {
diff --git a/src-ui/src/app/services/open-documents.service.ts b/src-ui/src/app/services/open-documents.service.ts
index 5297a38bf..37e29cd6e 100644
--- a/src-ui/src/app/services/open-documents.service.ts
+++ b/src-ui/src/app/services/open-documents.service.ts
@@ -55,14 +55,24 @@ export class OpenDocumentsService {
return this.openDocuments.find((d) => d.id == id)
}
- openDocument(doc: PaperlessDocument) {
+ openDocument(doc: PaperlessDocument): Observable {
if (this.openDocuments.find((d) => d.id == doc.id) == null) {
- this.openDocuments.unshift(doc)
- if (this.openDocuments.length > this.MAX_OPEN_DOCUMENTS) {
- this.openDocuments.pop()
+ if (this.openDocuments.length == this.MAX_OPEN_DOCUMENTS) {
+ const docToRemove = this.openDocuments[this.MAX_OPEN_DOCUMENTS - 1]
+ const closeObservable = this.closeDocument(docToRemove)
+ closeObservable.pipe(first()).subscribe((closed) => {
+ if (closed) {
+ this.openDocuments.unshift(doc)
+ this.save()
+ }
+ })
+ return closeObservable
+ } else {
+ this.openDocuments.unshift(doc)
+ this.save()
}
- this.save()
}
+ return of(true)
}
setDirty(documentId: number, dirty: boolean) {
@@ -82,7 +92,11 @@ export class OpenDocumentsService {
backdrop: 'static',
})
modal.componentInstance.title = $localize`Unsaved Changes`
- modal.componentInstance.messageBold = $localize`You have unsaved changes.`
+ modal.componentInstance.messageBold =
+ $localize`You have unsaved changes to the document` +
+ ' "' +
+ doc.title +
+ '"'
modal.componentInstance.message = $localize`Are you sure you want to close this document?`
modal.componentInstance.btnClass = 'btn-warning'
modal.componentInstance.btnCaption = $localize`Close document`
|