mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 11:29:28 +00:00
76 lines
1.9 KiB
JavaScript
76 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
{{ $searchDataFile := printf "%s.search-data.js" .Language.Lang }}
|
|
{{ $searchData := resources.Get "search-data.js" | resources.ExecuteAsTemplate $searchDataFile . | resources.Minify | resources.Fingerprint }}
|
|
|
|
(function() {
|
|
const input = document.querySelector('#book-search-input');
|
|
const results = document.querySelector('#book-search-results');
|
|
|
|
input.addEventListener('focus', init);
|
|
input.addEventListener('keyup', search);
|
|
|
|
document.addEventListener('keypress', focusSearchFieldOnKeyPress);
|
|
|
|
function focusSearchFieldOnKeyPress(e) {
|
|
if (input === document.activeElement) {
|
|
return;
|
|
}
|
|
|
|
const characterPressed = String.fromCharCode(e.charCode);
|
|
if (!isHotkey(characterPressed)) {
|
|
return;
|
|
}
|
|
|
|
input.focus();
|
|
e.preventDefault();
|
|
}
|
|
|
|
function isHotkey(character) {
|
|
const dataHotkeys = input.getAttribute('data-hotkeys') || '';
|
|
return dataHotkeys.indexOf(character) >= 0;
|
|
}
|
|
|
|
function init() {
|
|
input.removeEventListener('focus', init); // init once
|
|
input.required = true;
|
|
|
|
loadScript('{{ "flexsearch.min.js" | relURL }}');
|
|
loadScript('{{ $searchData.RelPermalink }}', function() {
|
|
input.required = false;
|
|
search();
|
|
});
|
|
}
|
|
|
|
function search() {
|
|
while (results.firstChild) {
|
|
results.removeChild(results.firstChild);
|
|
}
|
|
|
|
if (!input.value) {
|
|
return;
|
|
}
|
|
|
|
const searchHits = window.bookSearchIndex.search(input.value, 10);
|
|
searchHits.forEach(function(page) {
|
|
const li = document.createElement('li'),
|
|
a = li.appendChild(document.createElement('a'));
|
|
|
|
a.href = page.href;
|
|
a.textContent = page.title;
|
|
|
|
results.appendChild(li);
|
|
});
|
|
}
|
|
|
|
function loadScript(src, callback) {
|
|
const script = document.createElement('script');
|
|
script.defer = true;
|
|
script.async = false;
|
|
script.src = src;
|
|
script.onload = callback;
|
|
|
|
document.head.appendChild(script);
|
|
}
|
|
})();
|