mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00

When the user press [TAB] the input form should be filled with the highlighted item from the autocomplete list, but not release a search / with other words: what we now have by pressing once on [ENTER] should be mapped to the [TAB] key and pressing [ENTER] once should release a search query. [1] [1] https://github.com/searxng/searxng/issues/778#issuecomment-1016593816 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
171 lines
6.3 KiB
JavaScript
171 lines
6.3 KiB
JavaScript
/* SPDX-License-Identifier: AGPL-3.0-or-later */
|
|
/* global AutoComplete */
|
|
(function (w, d, searxng) {
|
|
'use strict';
|
|
|
|
var qinput_id = "q", qinput;
|
|
|
|
const isMobile = window.matchMedia("only screen and (max-width: 50em)").matches;
|
|
|
|
function submitIfQuery () {
|
|
if (qinput.value.length > 0) {
|
|
var search = document.getElementById('search');
|
|
setTimeout(search.submit.bind(search), 0);
|
|
}
|
|
}
|
|
|
|
function createClearButton (qinput) {
|
|
var cs = document.getElementById('clear_search');
|
|
var updateClearButton = function () {
|
|
if (qinput.value.length === 0) {
|
|
cs.classList.add("empty");
|
|
} else {
|
|
cs.classList.remove("empty");
|
|
}
|
|
};
|
|
|
|
// update status, event listener
|
|
updateClearButton();
|
|
cs.addEventListener('click', function (ev) {
|
|
qinput.value = '';
|
|
qinput.focus();
|
|
updateClearButton();
|
|
ev.preventDefault();
|
|
});
|
|
qinput.addEventListener('keyup', updateClearButton, false);
|
|
}
|
|
|
|
searxng.ready(function () {
|
|
qinput = d.getElementById(qinput_id);
|
|
|
|
if (qinput !== null) {
|
|
// clear button
|
|
createClearButton(qinput);
|
|
|
|
// autocompleter
|
|
if (searxng.settings.autocomplete_provider) {
|
|
searxng.autocomplete = AutoComplete.call(w, {
|
|
Url: "./autocompleter",
|
|
EmptyMessage: searxng.settings.translations.no_item_found,
|
|
HttpMethod: searxng.settings.http_method,
|
|
HttpHeaders: {
|
|
"Content-type": "application/x-www-form-urlencoded",
|
|
"X-Requested-With": "XMLHttpRequest"
|
|
},
|
|
MinChars: searxng.settings.autocomplete_min,
|
|
Delay: 300,
|
|
_Position: function () {},
|
|
_Open: function () {
|
|
var params = this;
|
|
Array.prototype.forEach.call(this.DOMResults.getElementsByTagName("li"), function (li) {
|
|
if (li.getAttribute("class") != "locked") {
|
|
li.onmousedown = function () {
|
|
params._Select(li);
|
|
};
|
|
}
|
|
});
|
|
},
|
|
_Select: function (item) {
|
|
AutoComplete.defaults._Select.call(this, item);
|
|
var form = item.closest('form');
|
|
if (form) {
|
|
form.submit();
|
|
}
|
|
},
|
|
KeyboardMappings: Object.assign({}, AutoComplete.defaults.KeyboardMappings, {
|
|
"KeyUpAndDown_up": Object.assign({}, AutoComplete.defaults.KeyboardMappings.KeyUpAndDown_up, {
|
|
Callback: function (event) {
|
|
AutoComplete.defaults.KeyboardMappings.KeyUpAndDown_up.Callback.call(this, event);
|
|
var liActive = this.DOMResults.querySelector("li.active");
|
|
if (liActive) {
|
|
AutoComplete.defaults._Select.call(this, liActive);
|
|
}
|
|
},
|
|
}),
|
|
"Tab": Object.assign({}, AutoComplete.defaults.KeyboardMappings.Enter, {
|
|
Conditions: [{
|
|
Is: 9,
|
|
Not: false
|
|
}],
|
|
Callback: function (event) {
|
|
if (this.DOMResults.getAttribute("class").indexOf("open") != -1) {
|
|
var liActive = this.DOMResults.querySelector("li.active");
|
|
if (liActive !== null) {
|
|
AutoComplete.defaults._Select.call(this, liActive);
|
|
event.preventDefault();
|
|
}
|
|
}
|
|
},
|
|
})
|
|
}),
|
|
}, "#" + qinput_id);
|
|
}
|
|
|
|
/*
|
|
Monkey patch autocomplete.js to fix a bug
|
|
With the POST method, the values are not URL encoded: query like "1 + 1" are sent as "1 1" since space are URL encoded as plus.
|
|
See HTML specifications:
|
|
* HTML5: https://url.spec.whatwg.org/#concept-urlencoded-serializer
|
|
* HTML4: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
|
|
|
|
autocomplete.js does not URL encode the name and values:
|
|
https://github.com/autocompletejs/autocomplete.js/blob/87069524f3b95e68f1b54d8976868e0eac1b2c83/src/autocomplete.ts#L665
|
|
|
|
The monkey patch overrides the compiled version of the ajax function.
|
|
See https://github.com/autocompletejs/autocomplete.js/blob/87069524f3b95e68f1b54d8976868e0eac1b2c83/dist/autocomplete.js#L143-L158
|
|
The patch changes only the line 156 from
|
|
params.Request.send(params._QueryArg() + "=" + params._Pre());
|
|
to
|
|
params.Request.send(encodeURIComponent(params._QueryArg()) + "=" + encodeURIComponent(params._Pre()));
|
|
|
|
Related to:
|
|
* https://github.com/autocompletejs/autocomplete.js/issues/78
|
|
* https://github.com/searxng/searxng/issues/1695
|
|
*/
|
|
AutoComplete.prototype.ajax = function (params, request, timeout) {
|
|
if (timeout === void 0) { timeout = true; }
|
|
if (params.$AjaxTimer) {
|
|
window.clearTimeout(params.$AjaxTimer);
|
|
}
|
|
if (timeout === true) {
|
|
params.$AjaxTimer = window.setTimeout(AutoComplete.prototype.ajax.bind(null, params, request, false), params.Delay);
|
|
} else {
|
|
if (params.Request) {
|
|
params.Request.abort();
|
|
}
|
|
params.Request = request;
|
|
params.Request.send(encodeURIComponent(params._QueryArg()) + "=" + encodeURIComponent(params._Pre()));
|
|
}
|
|
};
|
|
|
|
if (!isMobile && document.querySelector('.index_endpoint')) {
|
|
qinput.focus();
|
|
}
|
|
}
|
|
|
|
// vanilla js version of search_on_category_select.js
|
|
if (qinput !== null && d.querySelector('.help') != null && searxng.settings.search_on_category_select) {
|
|
d.querySelector('.help').className = 'invisible';
|
|
|
|
searxng.on('#categories input', 'change', function () {
|
|
var i, categories = d.querySelectorAll('#categories input[type="checkbox"]');
|
|
for (i = 0; i < categories.length; i++) {
|
|
if (categories[i] !== this && categories[i].checked) {
|
|
categories[i].click();
|
|
}
|
|
}
|
|
if (! this.checked) {
|
|
this.click();
|
|
}
|
|
submitIfQuery();
|
|
return false;
|
|
});
|
|
|
|
searxng.on(d.getElementById('safesearch'), 'change', submitIfQuery);
|
|
searxng.on(d.getElementById('time_range'), 'change', submitIfQuery);
|
|
searxng.on(d.getElementById('language'), 'change', submitIfQuery);
|
|
}
|
|
|
|
});
|
|
|
|
})(window, document, window.searxng);
|