mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Enhancement: dont wait to get preview (#7894)
This commit is contained in:
parent
2994f3a740
commit
073c42984a
@ -327,13 +327,8 @@ export class DocumentDetailComponent
|
|||||||
switchMap((paramMap) => {
|
switchMap((paramMap) => {
|
||||||
const documentId = +paramMap.get('id')
|
const documentId = +paramMap.get('id')
|
||||||
this.docChangeNotifier.next(documentId)
|
this.docChangeNotifier.next(documentId)
|
||||||
return this.documentsService.get(documentId)
|
// Dont wait to get the preview
|
||||||
})
|
this.previewUrl = this.documentsService.getPreviewUrl(documentId)
|
||||||
)
|
|
||||||
.pipe(
|
|
||||||
switchMap((doc) => {
|
|
||||||
this.documentId = doc.id
|
|
||||||
this.previewUrl = this.documentsService.getPreviewUrl(this.documentId)
|
|
||||||
this.http.get(this.previewUrl, { responseType: 'text' }).subscribe({
|
this.http.get(this.previewUrl, { responseType: 'text' }).subscribe({
|
||||||
next: (res) => {
|
next: (res) => {
|
||||||
this.previewText = res.toString()
|
this.previewText = res.toString()
|
||||||
@ -344,6 +339,12 @@ export class DocumentDetailComponent
|
|||||||
}`
|
}`
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
return this.documentsService.get(documentId)
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.pipe(
|
||||||
|
switchMap((doc) => {
|
||||||
|
this.documentId = doc.id
|
||||||
this.downloadUrl = this.documentsService.getDownloadUrl(
|
this.downloadUrl = this.documentsService.getDownloadUrl(
|
||||||
this.documentId
|
this.documentId
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user