Failed to execute template. Cause: [Access denied when checking [script] access to [xwiki:Collaboratory.UX.HbpSkin.WebHome] for user [xwiki:XWiki.Admin]]. Click on this message for details.

Context Search - HBP Wiki

IAM21 instance, do not create collab nor modify a team, your changes will be lost


Wiki source code of Context Search

Version 26.28 by bougault on 2022/11/16 13:45

Hide last authors
bougault 1.1 1 {{html clean="false"}}
2
3 <select id="context-search-type">
4 <option value="all">All</option>
5 <option value="collabs">Collabs</option>
6 <option value="current-collab">Current Collab</option>
7 </select>
bougault 26.27 8 <div class="form-group">
9 <label>
10 <input type="checkbox" id="administratorFilter"> Administrator
11 </label>
12 </div>
bougault 1.1 13 <input type="text" id="context-search-text" />
bougault 2.3 14 <button id="context-search-button" class="btn btn-primary">Search</button>
bougault 1.1 15
bougault 2.2 16 <pre id="context-search-response"></pre>
17 <script>
18 window.addEventListener('DOMContentLoaded', function() {
19 const contextSearchType = document.getElementById("context-search-type");
20 const contextSearchText = document.getElementById("context-search-text");
21 const contextSearchResponse = document.getElementById("context-search-response");
22 const contextSearchButton = document.getElementById("context-search-button");
23 contextSearchButton.addEventListener('click', function() {
24 const context = contextSearchType.options[contextSearchType.selectedIndex].value;
bougault 2.3 25 const term = contextSearchText.value;
26 switch(context) {
27 case 'collabs':
28 document.location.href = `/bin/view/Collabs/#search=${term}`;
29 break;
30 case 'current-collab':
bougault 19.1 31 handleXWikiSearch('bougaultx');
bougault 2.3 32 break
33 default:
bougault 26.12 34 handleXWikiSearch('', applyAdministratorFilter)
bougault 2.3 35 }
36
bougault 2.2 37 });
bougault 26.12 38 function handleXWikiSearch(space, callback) {
bougault 26.2 39 require(['jquery'], function($) {
40 var solrServiceURL = new XWiki.Document('SuggestSolrService', 'XWiki').getURL('get');
41 const contextSearchButton = document.getElementById("context-search-button");
42 const xwikiSpace = space ? `.${space}` : '';
43 contextSearchButton.addEventListener('click', function() {
44 $.post(solrServiceURL, {
45 outputSyntax: 'plain',
46 media: 'json',
47 query: [
48 'q="__INPUT__"~100',
49 'fq=type:DOCUMENT',
50 `fq=space:Collabs${xwikiSpace}.*`
51 ].join('\n'),
52 input: $('#context-search-text').val()
53 }).then(res => {
bougault 26.12 54 if(callback) {
55 callback(res).then(results => {
56 contextSearchResponse.innerText = JSON.stringify(results, null, 2);
57 })
58 } else {
59 contextSearchResponse.innerText = JSON.stringify(res, null, 2);
60 }
bougault 26.2 61 });
62 });
bougault 23.1 63 });
bougault 26.2 64 }
bougault 26.11 65 function applyAdministratorFilter(results) {
bougault 26.12 66 return new Promise((resolve, reject) => {
bougault 26.22 67 //fetch("/rest/v1/collabs?roles=administrator")
68 fetch("/rest/v1/collabs?search=&offset=0&orderField=title&order=asc&favorite=false&roles=administrator")
bougault 26.12 69 .then(res => res.json())
bougault 26.14 70 .then(collabs => {
71 const spaces = collabs.map(collab => `Collabs.${collab.name}`);
bougault 26.25 72 const filtered = results.filter(result => spaces.some(space => result.space.startsWith(space)));
bougault 26.18 73 resolve(filtered);
bougault 26.12 74 })
75
76 })
bougault 26.2 77 }
78 });
bougault 21.1 79
bougault 24.1 80
bougault 2.2 81 </script>
bougault 1.1 82 {{/html}}