From 9bc48fed73ecda6921b7fa322170fdb2550bbe09 Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 16 Feb 2022 14:34:19 -0800
Subject: [PATCH] Check for live changes on document detail title
---
.../document-detail.component.html | 2 +-
.../document-detail.component.ts | 17 +++++++++++++++--
2 files changed, 16 insertions(+), 3 deletions(-)
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 52710aca2..4acd7a904 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
@@ -56,7 +56,7 @@
Details
-
+
= new Subject()
previewUrl: string
downloadUrl: string
downloadOriginalUrl: string
@@ -91,7 +92,19 @@ export class DocumentDetailComponent implements OnInit, OnDestroy, DirtyComponen
private documentListViewService: DocumentListViewService,
private documentTitlePipe: DocumentTitlePipe,
private toastService: ToastService,
- private settings: SettingsService) { }
+ private settings: SettingsService) {
+ this.titleSubject.pipe(
+ debounceTime(200),
+ distinctUntilChanged(),
+ takeUntil(this.unsubscribeNotifier)
+ ).subscribe(titleValue => {
+ this.documentForm.patchValue({'title': titleValue})
+ })
+ }
+
+ titleKeyUp(event) {
+ this.titleSubject.next(event.target?.value)
+ }
get useNativePdfViewer(): boolean {
return this.settings.get(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER)