Wiki source code of Context Search
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{html clean="false"}} | ||
| 2 | <!-- | ||
| 3 | !!! POC. Code must be reviewed / optimized and packaged for use in production !!! | ||
| 4 | --> | ||
| 5 | <script type="module"> | ||
| 6 | import {LitElement, html, css} from 'https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js'; | ||
| 7 | window.addEventListener('DOMContentLoaded', function() { | ||
| 8 | |||
| 9 | class UnifiedSearch extends LitElement { | ||
| 10 | /* | ||
| 11 | static properties = { | ||
| 12 | searchText: { type: String }, | ||
| 13 | favoritesFilter: { type: Boolean }, | ||
| 14 | administratorFilter: { type: Boolean }, | ||
| 15 | editorFilter: { type: Boolean }, | ||
| 16 | viewerFilter: { type: Boolean }, | ||
| 17 | publicFilter: { type: Boolean }, | ||
| 18 | privateFilter: { type: Boolean }, | ||
| 19 | } | ||
| 20 | */ | ||
| 21 | static properties = { | ||
| 22 | results: { type: Array } | ||
| 23 | } | ||
| 24 | static styles = css` | ||
| 25 | .result { | ||
| 26 | margin-top: 1em; | ||
| 27 | } | ||
| 28 | .light { | ||
| 29 | color: var(--color-gray-500, #CCC); | ||
| 30 | font-size: 14px; | ||
| 31 | } | ||
| 32 | a { | ||
| 33 | color: var(--color-brand-primary, blue); | ||
| 34 | } | ||
| 35 | `; | ||
| 36 | constructor() { | ||
| 37 | super(); | ||
| 38 | this.searchText = ""; | ||
| 39 | this.prevSearchText = ""; | ||
| 40 | this.administrator = false; | ||
| 41 | this.editor = false; | ||
| 42 | this.viewer = false; | ||
| 43 | this.rolesFilter = []; | ||
| 44 | this.filterUrl = new URL(`${document.location.origin}/rest/v1/collabs?search=&offset=0&orderField=title&order=asc&limit=10000&favorite=false&roles=`); | ||
| 45 | this.results = []; | ||
| 46 | this.resultsCache = []; | ||
| 47 | } | ||
| 48 | toggleRoleFilter(roleName) { | ||
| 49 | if(this.rolesFilter.indexOf(roleName) === -1) { | ||
| 50 | this.rolesFilter.push(roleName); | ||
| 51 | } else { | ||
| 52 | this.rolesFilter = this.rolesFilter.filter(role => role !== roleName); | ||
| 53 | } | ||
| 54 | this[roleName] = !this[roleName]; | ||
| 55 | this.filterUrl.searchParams.set('roles', this.rolesFilter.join("+")); | ||
| 56 | this.handleSearch(); | ||
| 57 | } | ||
| 58 | setSearchText(e) { | ||
| 59 | this.searchText = e.target.value; | ||
| 60 | } | ||
| 61 | handleSearch(textSearch) { | ||
| 62 | if(this.searchText !== "" || textSearch) { | ||
| 63 | if(this.searchText !== this.prevSearchText) { | ||
| 64 | this.clearResults(); | ||
| 65 | this.prevSearchText = this.searchText; | ||
| 66 | this.fetchWikiSearch().then(results => { | ||
| 67 | this.resultsCache = results; | ||
| 68 | if(this.hasActiveFilters()) { | ||
| 69 | this.fetchFilterSearch().then(this.filterResults); | ||
| 70 | } else { | ||
| 71 | this.results = results; | ||
| 72 | } | ||
| 73 | }) | ||
| 74 | /* | ||
| 75 | Promise.all([ | ||
| 76 | this.fetchWikiSearch(), | ||
| 77 | this.fetchFilterSearch() | ||
| 78 | ]).then(([wikiSearchResults, collabSearchResults]) => { | ||
| 79 | this.results = wikiSearchResults; | ||
| 80 | this.resultsCache = wikiSearchResults; | ||
| 81 | console.log(wikiSearchResults, collabSearchResults); | ||
| 82 | }); | ||
| 83 | */ | ||
| 84 | } else if (this.searchText === this.prevSearchText && this.hasActiveFilters()) { | ||
| 85 | this.fetchFilterSearch().then(this.filterResults) | ||
| 86 | } else { | ||
| 87 | this.results = this.resultsCache; | ||
| 88 | } | ||
| 89 | } else { | ||
| 90 | this.clearResults(); | ||
| 91 | console.log("no search text, should return filter search results if any"); | ||
| 92 | this.fetchFilterSearch().then(collabs => { | ||
| 93 | console.log("Format and display collabs", collabs); | ||
| 94 | }) | ||
| 95 | } | ||
| 96 | } | ||
| 97 | hasActiveFilters() { | ||
| 98 | // we only look at role filters for POC. | ||
| 99 | return this.rolesFilter.length > 0; | ||
| 100 | } | ||
| 101 | fetchWikiSearch() { | ||
| 102 | // request should be built from component, not from "external" dependency. Leave it here like this for POC. | ||
| 103 | return handleXWikiSearch(this.searchText); | ||
| 104 | } | ||
| 105 | fetchFilterSearch() { | ||
| 106 | return new Promise((resolve) => { | ||
| 107 | if(this.hasActiveFilters()) { | ||
| 108 | fetch(this.filterUrl).then(res => res.json()).then(resolve); | ||
| 109 | } else { | ||
| 110 | resolve([]); | ||
| 111 | } | ||
| 112 | }); | ||
| 113 | } | ||
| 114 | filterResults = (filteredCollabs) => { | ||
| 115 | const collabSpaces = filteredCollabs.map(collab => `Collabs.${collab.name}`); | ||
| 116 | this.results = this.resultsCache.filter(result => collabSpaces.some(space => result.space.startsWith(space))); | ||
| 117 | } | ||
| 118 | clearResults() { | ||
| 119 | this.results = []; | ||
| 120 | this.resultsCache = []; | ||
| 121 | } | ||
| 122 | getLink(xwikiDocSpace) { | ||
| 123 | return `/bin/view/${xwikiDocSpace.replaceAll('.', '/')}`; | ||
| 124 | } | ||
| 125 | render() { | ||
| 126 | return html` | ||
| 127 | <div> | ||
| 128 | <div> | ||
| 129 | <input @change="${this.setSearchText}" type="text" placeholder="Search..." /> | ||
| 130 | <button @click="${() => this.handleSearch(true)}">Search</button> | ||
| 131 | </div> | ||
| 132 | <div> | ||
| 133 | <label><input type="checkbox" @change="${() => this.toggleRoleFilter('administrator')}" .checked="${this.administratorFilter}"/> Administrator</label> | ||
| 134 | <label><input type="checkbox" @change="${() => this.toggleRoleFilter('editor')}" .checked="${this.editorFilter}"/> Editor</label> | ||
| 135 | <label><input type="checkbox" @change="${() => this.toggleRoleFilter('viewer')}" .checked="${this.viewerFilter}"/> Viewer</label> | ||
| 136 | </div> | ||
| 137 | <div> | ||
| 138 | ${this.results.map(result => html` | ||
| 139 | <div class="result"> | ||
| 140 | <a href="${this.getLink(result.space)}">${result.title_}</a> | ||
| 141 | <div>${result.doccontent_.substring(0, 150)} | ||
| 142 | <div class="light">${result.space.replaceAll('.', ' / ')}</div> | ||
| 143 | </div> | ||
| 144 | `)} | ||
| 145 | </div> | ||
| 146 | </div> | ||
| 147 | ` | ||
| 148 | } | ||
| 149 | } | ||
| 150 | customElements.define('clb-unified-search', UnifiedSearch); | ||
| 151 | |||
| 152 | function handleXWikiSearch(searchString) { | ||
| 153 | return new Promise((resolve) => { | ||
| 154 | require(['jquery'], function($) { | ||
| 155 | const solrServiceURL = new XWiki.Document('SuggestSolrService', 'XWiki').getURL('get'); | ||
| 156 | //contextSearchButton.addEventListener('click', function() { | ||
| 157 | $.post(solrServiceURL, { | ||
| 158 | outputSyntax: 'plain', | ||
| 159 | media: 'json', | ||
| 160 | query: [ | ||
| 161 | 'q="__INPUT__"~100', | ||
| 162 | 'fq=type:DOCUMENT', | ||
| 163 | `fq=space:Collabs.*` | ||
| 164 | ].join('\n'), | ||
| 165 | input: searchString | ||
| 166 | }).then(resolve); | ||
| 167 | //}); | ||
| 168 | }); | ||
| 169 | }); | ||
| 170 | } | ||
| 171 | }); | ||
| 172 | </script> | ||
| 173 | |||
| 174 | <clb-unified-search></clb-unified-search> | ||
| 175 | |||
| 176 | {{/html}} |