Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/static/search.js

58 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-11-02 20:16:31 +05:00
/** inject search widget */
function inject_search(elem) {
var inner = document.createElement("div");
var button = document.createElement("button");
var input = document.createElement("input");
var status = document.createElement("span");
var output = document.createElement("div");
2016-11-02 20:22:18 +05:00
button.innerHTML = "search";
2016-11-02 20:16:31 +05:00
function inject_search_result(r) {
var e = document.createElement("div");
e.innerHTML = r.PostMarkup;
output.appendChild(e);
output.appendChild(document.createElement("hr"));
}
2016-11-02 20:21:14 +05:00
button.onclick = function(ev) {
2016-11-02 20:16:31 +05:00
var text = input.value;
input.value = "";
while(output.children.length > 0)
output.children[0].remove();
var ajax = new XMLHttpRequest();
ajax.onreadystatechange = function() {
if (ajax.readyState == XMLHttpRequest.DONE) {
// done
if(ajax.status == 200) {
// good
var result = JSON.parse(ajax.responseText);
if (result.length == 0) {
status.innerHTML = "no results";
} else {
status.innerHTML = "found "+result.length+"results";
for (var idx = 0 ; idx < result.length; idx ++ ) {
inject_search_result(result[idx]);
}
}
} else {
status.innerHTML = "HTTP "+ajax.status;
}
}
}
2016-11-02 20:18:11 +05:00
ajax.open("GET", "/api/find?text="+text);
ajax.send();
2016-11-02 20:16:31 +05:00
}
inner.appendChild(input);
inner.appendChild(button);
inner.appendChild(status);
elem.appendChild(inner);
elem.appendChild(output);
}