Enhancement: dont wait to get preview (#7894)

This commit is contained in:
shamoon 2024-10-10 19:43:13 -07:00 committed by GitHub
parent 2994f3a740
commit 073c42984a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -327,13 +327,8 @@ export class DocumentDetailComponent
switchMap((paramMap) => {
const documentId = +paramMap.get('id')
this.docChangeNotifier.next(documentId)
return this.documentsService.get(documentId)
})
)
.pipe(
switchMap((doc) => {
this.documentId = doc.id
this.previewUrl = this.documentsService.getPreviewUrl(this.documentId)
// Dont wait to get the preview
this.previewUrl = this.documentsService.getPreviewUrl(documentId)
this.http.get(this.previewUrl, { responseType: 'text' }).subscribe({
next: (res) => {
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.documentId
)