Display the number of candidates instead of the returned document count

This commit is contained in:
Kerollmops 2020-12-29 00:50:06 +01:00
parent 510df4729c
commit aa129dd7e8
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
3 changed files with 5 additions and 2 deletions

View File

@ -26,7 +26,7 @@ $('#query, #facet').on('input', function () {
let timeSpent = request.getResponseHeader('Time-Ms');
let numberOfDocuments = data.documents.length;
count.innerHTML = `${numberOfDocuments}`;
count.innerHTML = data.numberOfCandidates.toLocaleString();
time.innerHTML = `${timeSpent}ms`;
time.classList.remove('fade-in-out');

View File

@ -633,6 +633,7 @@ async fn main() -> anyhow::Result<()> {
#[serde(rename_all = "camelCase")]
struct Answer {
documents: Vec<Map<String, Value>>,
number_of_candidates: u64,
facets: HashMap<String, Vec<Value>>,
}
@ -659,6 +660,7 @@ async fn main() -> anyhow::Result<()> {
let SearchResult { found_words, candidates, documents_ids } = search.execute().unwrap();
let number_of_candidates = candidates.len();
let facets = if query.facet_distribution == Some(true) {
Some(index.facets(&rtxn).candidates(candidates).execute().unwrap())
} else {
@ -690,6 +692,7 @@ async fn main() -> anyhow::Result<()> {
let answer = Answer {
documents,
number_of_candidates,
facets: facets.unwrap_or_default(),
};

View File

@ -66,7 +66,7 @@
<nav class="level-right">
<div class="level-item has-text-centered">
<div>
<p class="heading">Documents</p>
<p class="heading">Candidates</p>
<p id="count" class="title">0</p>
</div>
</div>