From 44212d492de271be1f723e3c0493b9a90c25047c Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 27 Jan 2023 10:02:25 -0800 Subject: [PATCH 1/2] Fix whoosh auto-highlighting for comments --- src/documents/views.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/documents/views.py b/src/documents/views.py index 854f2da2b..6a719fe70 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -477,21 +477,14 @@ class DocumentViewSet( class SearchResultSerializer(DocumentSerializer): def to_representation(self, instance): doc = Document.objects.get(id=instance["id"]) - comments = "" - if hasattr(instance.results.q, "subqueries"): - commentTerm = instance.results.q.subqueries[0] - comments = ",".join( - [ - str(c.comment) - for c in Comment.objects.filter(document=instance["id"]) - if commentTerm.text in c.comment - ], - ) + comments = ",".join( + [str(c.comment) for c in Comment.objects.filter(document=instance["id"])], + ) r = super().to_representation(doc) r["__search_hit__"] = { "score": instance.score, "highlights": instance.highlights("content", text=doc.content), - "comment_highlights": instance.highlights("content", text=comments) + "comment_highlights": instance.highlights("comments", text=comments) if doc else None, "rank": instance.rank, From 4dc0c7bbe273544a4b520e38ed6686c1b3036c4f Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 27 Jan 2023 10:29:40 -0800 Subject: [PATCH 2/2] Better display of multiple comment hits --- .../document-card-large.component.html | 4 ++-- .../document-card-large.component.ts | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index c114a2d6e..b18524e38 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -26,11 +26,11 @@

- + - + {{contentTrimmed}}

diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts index b43187879..5d24042b9 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts @@ -70,6 +70,22 @@ export class DocumentCardLargeComponent { } } + get searchCommentHighlights() { + let highlights = [] + if ( + this.document['__search_hit__'] && + this.document['__search_hit__'].comment_highlights + ) { + // only show comments with a match + highlights = ( + this.document['__search_hit__'].comment_highlights as string + ) + .split(',') + .filter((higlight) => higlight.includes('