fix find_results through SearchProcess

This commit is contained in:
Simon 2023-09-25 10:14:14 +07:00
parent 1cdb9e1ad5
commit 7801ed0d60
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 2 additions and 1 deletions

View File

@ -200,11 +200,12 @@ class ArchivistResultsView(ArchivistViewConfig):
def find_results(self):
"""add results and pagination to context"""
response, _ = ElasticWrap(self.es_search).get(self.data)
results = SearchProcess(response).process()
max_hits = response["hits"]["total"]["value"]
self.pagination_handler.validate(max_hits)
self.context.update(
{
"results": [i["_source"] for i in response["hits"]["hits"]],
"results": results,
"max_hits": max_hits,
"pagination": self.pagination_handler.pagination,
"aggs": response.get("aggregations"),