Wiki source code of Context Search
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
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> | ||
| |
26.27 | 8 | <div class="form-group"> |
| 9 | <label> | ||
| 10 | <input type="checkbox" id="administratorFilter"> Administrator | ||
| 11 | </label> | ||
| 12 | </div> | ||
| |
1.1 | 13 | <input type="text" id="context-search-text" /> |
| |
2.3 | 14 | <button id="context-search-button" class="btn btn-primary">Search</button> |
| |
1.1 | 15 | |
| |
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; | ||
| |
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': | ||
| |
19.1 | 31 | handleXWikiSearch('bougaultx'); |
| |
2.3 | 32 | break |
| 33 | default: | ||
| |
26.12 | 34 | handleXWikiSearch('', applyAdministratorFilter) |
| |
2.3 | 35 | } |
| 36 | |||
| |
2.2 | 37 | }); |
| |
26.12 | 38 | function handleXWikiSearch(space, callback) { |
| |
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 => { | ||
| |
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 | } | ||
| |
26.2 | 61 | }); |
| 62 | }); | ||
| |
23.1 | 63 | }); |
| |
26.2 | 64 | } |
| |
26.11 | 65 | function applyAdministratorFilter(results) { |
| |
26.12 | 66 | return new Promise((resolve, reject) => { |
| |
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") | ||
| |
26.12 | 69 | .then(res => res.json()) |
| |
26.14 | 70 | .then(collabs => { |
| 71 | const spaces = collabs.map(collab => `Collabs.${collab.name}`); | ||
| |
26.25 | 72 | const filtered = results.filter(result => spaces.some(space => result.space.startsWith(space))); |
| |
26.18 | 73 | resolve(filtered); |
| |
26.12 | 74 | }) |
| 75 | |||
| 76 | }) | ||
| |
26.2 | 77 | } |
| 78 | }); | ||
| |
21.1 | 79 | |
| |
24.1 | 80 | |
| |
2.2 | 81 | </script> |
| |
1.1 | 82 | {{/html}} |