| ... |
... |
@@ -66,7 +66,7 @@ |
| 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 => { |
| ... |
... |
@@ -77,12 +77,11 @@ |
| 77 |
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', |