2021-07-29 08:55:44 +00:00
|
|
|
var last_id = 0;
|
2021-07-26 14:54:51 +00:00
|
|
|
|
2021-07-21 19:19:36 +00:00
|
|
|
function searchDirectory() {
|
|
|
|
var input = document.getElementById("search").value;
|
2021-08-18 10:44:44 +00:00
|
|
|
last_id++;
|
|
|
|
var request_id = last_id;
|
2021-07-21 19:19:36 +00:00
|
|
|
|
2021-08-18 10:44:44 +00:00
|
|
|
var data = new FormData();
|
|
|
|
data.append("query", input);
|
2021-07-26 21:01:48 +00:00
|
|
|
|
2021-08-18 10:44:44 +00:00
|
|
|
var xhttp = new XMLHttpRequest();
|
|
|
|
xhttp.onreadystatechange = function() {
|
|
|
|
if (request_id != last_id) return;
|
2021-07-21 19:19:36 +00:00
|
|
|
|
2021-08-18 10:44:44 +00:00
|
|
|
if (this.readyState == 4 && this.status == 200) {
|
|
|
|
var result_div = document.getElementById("search-results");
|
|
|
|
result_div.innerHTML = xhttp.responseText;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
xhttp.open("POST", "/directory/search", true);
|
|
|
|
xhttp.send(data);
|
2021-08-16 14:27:20 +00:00
|
|
|
}
|