Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 1 | // Input field for queries |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 2 | /* |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 3 | * TODO: Support alert for query problems. |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 6 | "use strict"; |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 7 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 8 | define(['util'], function () { |
| 9 | |
| 10 | return { |
| 11 | |
| 12 | /** |
| 13 | * Create a new input field. |
| 14 | */ |
| 15 | create : function (element) { |
| 16 | return Object.create(this)._init(element); |
| 17 | }, |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 18 | |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 19 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 20 | // Initialize new input field |
| 21 | _init : function (element) { |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 22 | this._el = element; |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 23 | |
| 24 | this._container = document.createElement("div"); |
| 25 | this._container.setAttribute('id', 'hint'); |
| 26 | |
| 27 | // Create mirror for searchField |
| 28 | // This is important for positioning |
| 29 | // if ((this._mirror = document.getElementById("searchMirror")) === null) { |
| 30 | this._mirror = document.createElement("div"); |
| 31 | const m = this._mirror; |
| 32 | m.classList.add('hint', 'mirror'); |
| 33 | m.addE("span"); |
| 34 | m.appendChild(this._container); |
| 35 | m.style.height = "0px"; |
| 36 | document.getElementsByTagName("body")[0].appendChild(m); |
| 37 | |
| 38 | // Update position of the mirror |
| 39 | const re = this.reposition.bind(this); |
| 40 | window.addEventListener('resize', re); |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 41 | this._el.addEventListener('onfocus', re); |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 42 | this.reposition(); |
| 43 | return this; |
| 44 | }, |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 45 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 46 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 47 | /** |
| 48 | * Get the mirrored input field. |
| 49 | */ |
| 50 | mirror : function () { |
| 51 | return this._mirror; |
| 52 | }, |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 53 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 54 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 55 | /** |
| 56 | * Get the container element. |
| 57 | * This contains the hint helper / menus |
| 58 | * and probably an |
| 59 | * error message. |
| 60 | */ |
| 61 | container : function () { |
| 62 | return this._container; |
| 63 | }, |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 64 | |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 65 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 66 | /** |
| 67 | * Get the input element the |
| 68 | * hint helper is attached to. |
| 69 | */ |
| 70 | element : function () { |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 71 | return this._el; |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 72 | }, |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 73 | |
Akron | c14cbfc | 2018-08-31 13:15:55 +0200 | [diff] [blame] | 74 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 75 | /** |
| 76 | * Get the value of the input field |
| 77 | * the hint helper is attached to. |
| 78 | */ |
| 79 | value : function () { |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 80 | return this._el.value; |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 81 | }, |
Akron | 00cd4d1 | 2016-05-31 21:01:11 +0200 | [diff] [blame] | 82 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 83 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 84 | /** |
| 85 | * Get the value of the input field mirror. |
| 86 | */ |
| 87 | mirrorValue : function () { |
| 88 | return this._mirror.firstChild.textContent; |
| 89 | }, |
Akron | 95abaf4 | 2018-04-26 15:33:22 +0200 | [diff] [blame] | 90 | |
| 91 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 92 | /** |
| 93 | * Reset the input value |
| 94 | */ |
| 95 | reset : function () { |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 96 | this._el.value = ""; |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 97 | }, |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 98 | |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 99 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 100 | /** |
| 101 | * Update the mirror content. |
| 102 | */ |
| 103 | update : function () { |
| 104 | this._mirror.firstChild.textContent = this._split()[0]; |
| 105 | this._container.style.left = this._rightPos() + 'px'; |
| 106 | return this; |
| 107 | }, |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 108 | |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 109 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 110 | /** |
| 111 | * Insert text into the mirror. |
| 112 | * This is a prefix of the input field's |
| 113 | * value. |
| 114 | */ |
| 115 | insert : function (text) { |
| 116 | const splittedText = this._split(); |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 117 | const s = this._el; |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 118 | s.value = splittedText[0] + text + splittedText[1]; |
| 119 | s.selectionStart = (splittedText[0] + text).length; |
| 120 | s.selectionEnd = s.selectionStart; |
| 121 | |
| 122 | // Maybe update? |
| 123 | this._mirror.firstChild.textContent = splittedText[0] + text; |
| 124 | return this; |
| 125 | }, |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 126 | |
Akron | c14cbfc | 2018-08-31 13:15:55 +0200 | [diff] [blame] | 127 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 128 | /** |
| 129 | * Move hinthelper to given character position |
| 130 | */ |
| 131 | moveto : function (charpos) { |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 132 | const e = this._el; |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 133 | e.selectionStart = charpos; |
| 134 | e.selectionEnd = charpos; |
| 135 | e.focus(); |
| 136 | return this.update(); |
| 137 | }, |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 138 | |
Akron | c14cbfc | 2018-08-31 13:15:55 +0200 | [diff] [blame] | 139 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 140 | /** |
| 141 | * Reposition the input mirror directly |
| 142 | * below the input box. |
| 143 | */ |
| 144 | reposition : function () { |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 145 | const inputClientRect = this._el.getBoundingClientRect(); |
| 146 | const inputStyle = window.getComputedStyle(this._el, null); |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 147 | |
| 148 | const bodyClientRect = |
| 149 | document.getElementsByTagName('body')[0].getBoundingClientRect(); |
| 150 | |
| 151 | // Reset position |
| 152 | const mirrorStyle = this._mirror.style; |
| 153 | mirrorStyle.left = parseInt(inputClientRect.left) + "px"; |
| 154 | mirrorStyle.top = parseInt(inputClientRect.bottom - bodyClientRect.top) + "px"; |
| 155 | mirrorStyle.width = inputStyle.getPropertyValue("width"); |
| 156 | |
| 157 | // These may be relevant in case of media depending css |
| 158 | mirrorStyle.paddingLeft = inputStyle.getPropertyValue("padding-left"); |
| 159 | mirrorStyle.marginLeft = inputStyle.getPropertyValue("margin-left"); |
| 160 | mirrorStyle.borderLeftWidth = inputStyle.getPropertyValue("border-left-width"); |
| 161 | mirrorStyle.borderLeftStyle = inputStyle.getPropertyValue("border-left-style"); |
| 162 | mirrorStyle.fontSize = inputStyle.getPropertyValue("font-size"); |
| 163 | mirrorStyle.fontFamily = inputStyle.getPropertyValue("font-family"); |
| 164 | }, |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 165 | |
| 166 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 167 | /** |
| 168 | * Get the context, which is the input |
| 169 | * field's value bounded to the |
| 170 | * cursor position. |
| 171 | */ |
| 172 | context : function () { |
| 173 | return this._split()[0]; |
| 174 | }, |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 175 | |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 176 | |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 177 | // Get the right position |
| 178 | _rightPos : function () { |
| 179 | const box = this._mirror.firstChild.getBoundingClientRect(); |
| 180 | return box.right - box.left; |
| 181 | }, |
| 182 | |
| 183 | |
| 184 | /* |
| 185 | * Return two substrings, |
| 186 | * splitted at a given position |
| 187 | * or at the current cursor position. |
| 188 | */ |
| 189 | _split : function (start) { |
Akron | 24aa005 | 2020-11-10 11:00:34 +0100 | [diff] [blame^] | 190 | const s = this._el; |
Akron | da5bd3a | 2020-10-16 17:37:49 +0200 | [diff] [blame] | 191 | const value = s.value; |
| 192 | |
| 193 | // Get start from cursor position |
| 194 | if (arguments.length === 0) |
| 195 | start = s.selectionStart; |
| 196 | |
| 197 | return new Array( |
| 198 | value.substring(0, start), |
| 199 | value.substring(start, value.length) |
| 200 | ); |
| 201 | } |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 202 | } |
| 203 | }); |