Changes for page Context Search
Last modified by bougault on 2023/02/20 16:29
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -66,23 +66,22 @@ 66 66 } 67 67 handleSearch(textSearch) { 68 68 if(this.searchText !== "" || textSearch) { 69 - //if(this.searchText !== this.prevSearchText) {69 + if(this.searchText !== this.prevSearchText) { 70 70 this.clearResults(); 71 71 this.prevSearchText = this.searchText; 72 72 this.fetchWikiSearch().then(results => { 73 - //this.resultsCache = results;73 + this.resultsCache = results; 74 74 if(this.hasActiveFilters()) { 75 75 this.fetchFilterSearch().then(this.filterResults); 76 76 } else { 77 - this.results = results ? results || [];77 + this.results = results; 78 78 } 79 79 }) 80 - /*} else if (this.searchText === this.prevSearchText && this.hasActiveFilters()) {80 + } else if (this.searchText === this.prevSearchText && this.hasActiveFilters()) { 81 81 this.fetchFilterSearch().then(this.filterResults) 82 82 } else { 83 83 this.results = this.resultsCache; 84 84 } 85 - */ 86 86 } else { 87 87 this.clearResults(); 88 88 console.log("no search text, should return filter search results if any"); ... ... @@ -152,7 +152,7 @@ 152 152 } 153 153 customElements.define('clb-unified-search', UnifiedSearch); 154 154 155 - function handleXWikiSearch(searchString , offset, nb) {154 + function handleXWikiSearch(searchString) { 156 156 return new Promise((resolve) => { 157 157 require(['jquery'], function($) { 158 158 const solrServiceURL = new XWiki.Document('SuggestSolrService', 'XWiki').getURL('get'); ... ... @@ -160,8 +160,8 @@ 160 160 $.get(solrServiceURL, { 161 161 outputSyntax: 'plain', 162 162 media: 'json', 163 - nb: nb,164 - offset: offset,162 + nb:100, 163 + offset:10, 165 165 query: [ 166 166 'q="__INPUT__"~100', 167 167 'fq=type:DOCUMENT',