From 073c42984afc5b153ef00759823a7e1de56782e1 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 10 Oct 2024 19:43:13 -0700 Subject: [PATCH] Enhancement: dont wait to get preview (#7894) --- .../document-detail/document-detail.component.ts | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index c971870da..084efefe7 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -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 )