mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #979 from paperless-ngx/fix-978
Fix: Title is changed after switching doc quickly
This commit is contained in:
commit
f1e99de59a
@ -85,6 +85,7 @@ export class DocumentDetailComponent
|
|||||||
store: BehaviorSubject<any>
|
store: BehaviorSubject<any>
|
||||||
isDirty$: Observable<boolean>
|
isDirty$: Observable<boolean>
|
||||||
unsubscribeNotifier: Subject<any> = new Subject()
|
unsubscribeNotifier: Subject<any> = new Subject()
|
||||||
|
docChangeNotifier: Subject<any> = new Subject()
|
||||||
|
|
||||||
requiresPassword: boolean = false
|
requiresPassword: boolean = false
|
||||||
password: string
|
password: string
|
||||||
@ -117,18 +118,7 @@ export class DocumentDetailComponent
|
|||||||
private toastService: ToastService,
|
private toastService: ToastService,
|
||||||
private settings: SettingsService,
|
private settings: SettingsService,
|
||||||
private queryParamsService: QueryParamsService
|
private queryParamsService: QueryParamsService
|
||||||
) {
|
) {}
|
||||||
this.titleSubject
|
|
||||||
.pipe(
|
|
||||||
debounceTime(1000),
|
|
||||||
distinctUntilChanged(),
|
|
||||||
takeUntil(this.unsubscribeNotifier)
|
|
||||||
)
|
|
||||||
.subscribe((titleValue) => {
|
|
||||||
this.title = titleValue
|
|
||||||
this.documentForm.patchValue({ title: titleValue })
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
titleKeyUp(event) {
|
titleKeyUp(event) {
|
||||||
this.titleSubject.next(event.target?.value)
|
this.titleSubject.next(event.target?.value)
|
||||||
@ -182,8 +172,10 @@ export class DocumentDetailComponent
|
|||||||
|
|
||||||
this.route.paramMap
|
this.route.paramMap
|
||||||
.pipe(
|
.pipe(
|
||||||
|
takeUntil(this.unsubscribeNotifier),
|
||||||
switchMap((paramMap) => {
|
switchMap((paramMap) => {
|
||||||
const documentId = +paramMap.get('id')
|
const documentId = +paramMap.get('id')
|
||||||
|
this.docChangeNotifier.next(documentId)
|
||||||
return this.documentsService.get(documentId)
|
return this.documentsService.get(documentId)
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
@ -208,6 +200,29 @@ export class DocumentDetailComponent
|
|||||||
this.updateComponent(doc)
|
this.updateComponent(doc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.titleSubject
|
||||||
|
.pipe(
|
||||||
|
debounceTime(1000),
|
||||||
|
distinctUntilChanged(),
|
||||||
|
takeUntil(this.docChangeNotifier),
|
||||||
|
takeUntil(this.unsubscribeNotifier)
|
||||||
|
)
|
||||||
|
.subscribe({
|
||||||
|
next: (titleValue) => {
|
||||||
|
this.title = titleValue
|
||||||
|
this.documentForm.patchValue({ title: titleValue })
|
||||||
|
},
|
||||||
|
complete: () => {
|
||||||
|
// doc changed so we manually check dirty in case title was changed
|
||||||
|
if (
|
||||||
|
this.store.getValue().title !==
|
||||||
|
this.documentForm.get('title').value
|
||||||
|
) {
|
||||||
|
this.openDocumentService.setDirty(doc.id, true)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
this.ogDate = new Date(normalizeDateStr(doc.created.toString()))
|
this.ogDate = new Date(normalizeDateStr(doc.created.toString()))
|
||||||
|
|
||||||
// Initialize dirtyCheck
|
// Initialize dirtyCheck
|
||||||
@ -235,7 +250,6 @@ export class DocumentDetailComponent
|
|||||||
return this.isDirty$.pipe(map((dirty) => ({ doc, dirty })))
|
return this.isDirty$.pipe(map((dirty) => ({ doc, dirty })))
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.pipe(takeUntil(this.unsubscribeNotifier))
|
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: ({ doc, dirty }) => {
|
next: ({ doc, dirty }) => {
|
||||||
this.openDocumentService.setDirty(doc.id, dirty)
|
this.openDocumentService.setDirty(doc.id, dirty)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user