Wiki source code of CLB Search Component
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{html clean="false"}} | ||
| 2 | <script> | ||
| 3 | class ClbComponent extends HTMLElement { | ||
| 4 | constructor() { | ||
| 5 | super(); | ||
| 6 | } | ||
| 7 | |||
| 8 | connectedCallback() { | ||
| 9 | this.attachShadow({ mode: 'open'}); | ||
| 10 | } | ||
| 11 | |||
| 12 | get template() { | ||
| 13 | const template = document.createElement('template'); | ||
| 14 | template.innerHTML = ` | ||
| 15 | <style> | ||
| 16 | ${this.styles} | ||
| 17 | </style> | ||
| 18 | ${this.html} | ||
| 19 | `; | ||
| 20 | return template; | ||
| 21 | } | ||
| 22 | |||
| 23 | get styles() { | ||
| 24 | return ''; | ||
| 25 | } | ||
| 26 | |||
| 27 | get html() { | ||
| 28 | return ''; | ||
| 29 | } | ||
| 30 | $(selector) { | ||
| 31 | return this.shadowRoot.querySelector(selector); | ||
| 32 | } | ||
| 33 | |||
| 34 | $$(selector) { | ||
| 35 | return this.shadowRoot.querySelectorAll(selector); | ||
| 36 | } | ||
| 37 | } | ||
| 38 | |||
| 39 | customElements.define('clb-simplified-search', | ||
| 40 | class extends ClbComponent { | ||
| 41 | searchBaseUrl = '/bin/get/XWiki/SuggestSolrService?outputSyntax=plain&media=json&nb=10&query=q%3D%22__INPUT__%22~100%0Afq%3Dtype%3ADOCUMENT%0Afq%3Dspace%3ACollabs.*&input='; | ||
| 42 | constructor() { | ||
| 43 | super(); | ||
| 44 | this.results = []; | ||
| 45 | this.offset = 0; | ||
| 46 | } | ||
| 47 | |||
| 48 | connectedCallback() { | ||
| 49 | super.connectedCallback(); | ||
| 50 | this.render(); | ||
| 51 | const searchInput = this.$('input[type="text"]'); | ||
| 52 | this.$('#search').addEventListener('click', this.handleSearch); | ||
| 53 | this.$('#prev').addEventListener('click', this.handlePrevPage); | ||
| 54 | this.$('#next').addEventListener('click', this.handleNextPage); | ||
| 55 | searchInput.addEventListener('keypress', this.handleKeyPress); | ||
| 56 | searchInput.focus(); | ||
| 57 | } | ||
| 58 | |||
| 59 | disconnectedCallback() { | ||
| 60 | this.$('#search').removeEventListener('click', this.handleSearch); | ||
| 61 | this.$('#prev').removeEventListener('click', this.handlePrevPage); | ||
| 62 | this.$('#next').removeEventListener('click', this.handleNextPage); | ||
| 63 | this.$('input[type="text"]').addEventListener('keypress', this.handleKeyPress); | ||
| 64 | } | ||
| 65 | |||
| 66 | get styles() { | ||
| 67 | return ` | ||
| 68 | input[type="text"] { | ||
| 69 | border: 1px solid red; | ||
| 70 | } | ||
| 71 | ` | ||
| 72 | } | ||
| 73 | handlePrevPage = () => { | ||
| 74 | if(this.offset > 0) { | ||
| 75 | this.offset--; | ||
| 76 | this.handleSearch(); | ||
| 77 | } | ||
| 78 | } | ||
| 79 | handleNextPage = () => { | ||
| 80 | this.offset++; | ||
| 81 | this.handleSearch(); | ||
| 82 | } | ||
| 83 | |||
| 84 | handleSearch = () => { | ||
| 85 | const value = this.$('input[type="text"]').value; | ||
| 86 | fetch(`${this.searchBaseUrl}${encodeURIComponent(value)}&offset=${this.offset}`) | ||
| 87 | .then(res => res.json()) | ||
| 88 | .then(this.renderResults); | ||
| 89 | } | ||
| 90 | |||
| 91 | handleKeyPress = (e) => { | ||
| 92 | if(e.code === 'Enter') { | ||
| 93 | this.handleSearch(); | ||
| 94 | } | ||
| 95 | } | ||
| 96 | |||
| 97 | get html() { | ||
| 98 | return ` | ||
| 99 | <div> | ||
| 100 | <input type="text"><button id="search">Search</button> | ||
| 101 | <div id="results"></div> | ||
| 102 | <button id="prev">prev</button> | ||
| 103 | <button id="next">next</button> | ||
| 104 | </div> | ||
| 105 | `; | ||
| 106 | } | ||
| 107 | |||
| 108 | renderResults = (results) => { | ||
| 109 | const resultsContainer = this.$('#results'); | ||
| 110 | resultsContainer.replaceChildren(); | ||
| 111 | for(let i = 0, j = results.length; i < j; i++) { | ||
| 112 | const { title_, spaces, doccontent_en } = results[i]; | ||
| 113 | const elt = document.createElement('clb-search-result'); | ||
| 114 | elt.setAttribute('data-title', title_); | ||
| 115 | elt.setAttribute('data-href', spaces.join('/')); | ||
| 116 | elt.innerHTML = doccontent_en; | ||
| 117 | resultsContainer.appendChild(elt); | ||
| 118 | } | ||
| 119 | } | ||
| 120 | |||
| 121 | render() { | ||
| 122 | this.shadowRoot.appendChild(this.template.content.cloneNode(true)); | ||
| 123 | } | ||
| 124 | } | ||
| 125 | ); | ||
| 126 | |||
| 127 | customElements.define('clb-search-result', | ||
| 128 | class extends ClbComponent { | ||
| 129 | constructor() { | ||
| 130 | super(); | ||
| 131 | } | ||
| 132 | |||
| 133 | get titleAttr() { | ||
| 134 | return this.getAttribute('data-title'); | ||
| 135 | } | ||
| 136 | |||
| 137 | get hrefAttr() { | ||
| 138 | return this.getAttribute('data-href'); | ||
| 139 | } | ||
| 140 | |||
| 141 | get styles() { | ||
| 142 | return ` | ||
| 143 | a { | ||
| 144 | color: var(--color-brand-primary); | ||
| 145 | } | ||
| 146 | `; | ||
| 147 | } | ||
| 148 | get html() { | ||
| 149 | return ` | ||
| 150 | <div> | ||
| 151 | <a href="/bin/view/${this.hrefAttr}">${this.titleAttr}</a> | ||
| 152 | <div> | ||
| 153 | <slot></slot> | ||
| 154 | </div> | ||
| 155 | </div> ` | ||
| 156 | } | ||
| 157 | |||
| 158 | connectedCallback() { | ||
| 159 | this.attachShadow({ mode: 'open' }); | ||
| 160 | this.shadowRoot.appendChild(this.template.content.cloneNode(true)); | ||
| 161 | } | ||
| 162 | |||
| 163 | } | ||
| 164 | ); | ||
| 165 | </script> | ||
| 166 | <clb-simplified-search></clb-simplified-search> | ||
| 167 | {{/html}} |