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");
|
|
|
|
|
|
|
|
input.addEventListener("focus", init);
|
2019-07-17 11:42:39 +00:00
|
|
|
input.addEventListener("keyup", search);
|
2019-07-16 12:34:02 +00:00
|
|
|
|
|
|
|
function init() {
|
2019-07-17 15:56:12 +00:00
|
|
|
input.removeEventListener("focus", init); //init once
|
|
|
|
input.required = true;
|
|
|
|
|
|
|
|
loadScript("{{ "lunr.min.js" | relURL }}");
|
2019-07-17 12:43:30 +00:00
|
|
|
loadScript("{{ $searchData.RelPermalink }}", function() {
|
|
|
|
input.readOnly = false;
|
2019-07-17 15:56:12 +00:00
|
|
|
input.required = false;
|
2019-07-17 12:43:30 +00:00
|
|
|
search();
|
|
|
|
});
|
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-17 15:56:12 +00:00
|
|
|
if (!input.value) {
|
|
|
|
return;
|
2019-07-17 11:42:39 +00:00
|
|
|
}
|
2019-07-16 12:34:02 +00:00
|
|
|
|
2019-07-17 11:42:39 +00:00
|
|
|
const terms = lunr.tokenizer(input.value);
|
|
|
|
const searchHits = window.bookSearch.idx.query(function(query) {
|
|
|
|
query.term(terms, {
|
2019-07-17 15:56:12 +00:00
|
|
|
boost: 100
|
2019-07-16 12:34:02 +00:00
|
|
|
});
|
2019-07-17 11:42:39 +00:00
|
|
|
query.term(terms, {
|
|
|
|
boost: 10,
|
2019-07-17 15:56:12 +00:00
|
|
|
wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING
|
2019-07-17 11:42:39 +00:00
|
|
|
});
|
|
|
|
query.term(terms, {
|
|
|
|
editDistance: 2
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
searchHits.slice(0, 10).forEach(function(hit) {
|
|
|
|
const page = window.bookSearch.pages[hit.ref];
|
2019-07-17 15:56:12 +00:00
|
|
|
const li = document.createElement("li"),
|
|
|
|
a = li.appendChild(document.createElement("a"));
|
2019-07-17 11:42:39 +00:00
|
|
|
|
|
|
|
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 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
|
|
|
})();
|