2019-07-16 12:34:02 +00:00
|
|
|
{{- $searchData := resources.Get "search-data.js" | resources.ExecuteAsTemplate "search-data.js" . | resources.Minify | resources.Fingerprint }}
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
const input = document.querySelector("#book-search-input");
|
|
|
|
const results = document.querySelector("#book-search-results");
|
|
|
|
const dummy = document.querySelector("#book-search-dummy");
|
|
|
|
|
|
|
|
input.addEventListener("focus", init);
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
loadScript("{{ $searchData.RelPermalink }}", function() {
|
|
|
|
input.disabled = false;
|
|
|
|
input.addEventListener("keyup", search);
|
|
|
|
search();
|
2019-07-15 16:25:21 +00:00
|
|
|
});
|
2019-07-16 12:34:02 +00:00
|
|
|
input.removeEventListener("focus", init);
|
2019-07-15 16:25:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function search() {
|
2019-07-16 12:34:02 +00:00
|
|
|
while (results.firstChild) {
|
|
|
|
results.removeChild(results.firstChild);
|
|
|
|
}
|
|
|
|
|
2019-07-15 16:25:21 +00:00
|
|
|
if (input.value) {
|
2019-07-16 12:34:02 +00:00
|
|
|
const hits = window.bookSearch.idx.search(`${input.value}*`);
|
|
|
|
hits.slice(0, 10).forEach(function(hit) {
|
|
|
|
const page = window.bookSearch.pages[hit.ref];
|
|
|
|
const li = dummy.querySelector("li").cloneNode(true),
|
|
|
|
a = li.querySelector("a");
|
|
|
|
|
|
|
|
a.href = page.href;
|
|
|
|
a.textContent = page.title;
|
|
|
|
|
|
|
|
results.appendChild(li);
|
|
|
|
});
|
2019-07-15 16:25:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-16 12:34:02 +00:00
|
|
|
function newLi(href, title) {
|
|
|
|
|
|
|
|
|
|
|
|
return li;
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadScript(src, callback) {
|
|
|
|
const script = document.createElement("script");
|
|
|
|
script.defer = true;
|
|
|
|
script.src = src;
|
|
|
|
script.onload = callback;
|
|
|
|
|
|
|
|
document.head.append(script);
|
2019-07-15 16:25:21 +00:00
|
|
|
}
|
2019-07-16 12:34:02 +00:00
|
|
|
})();
|