hugo-geekdoc/assets/js/search.js

114 lines
3.0 KiB
JavaScript
Raw Normal View History

2020-01-12 15:33:02 +01:00
'use strict';
{{ $searchDataFile := printf "js/%s.search-data.js" .Language.Lang }}
{{ $searchData := resources.Get "js/search-data.js" | resources.ExecuteAsTemplate $searchDataFile . | resources.Minify | resources.Fingerprint }}
(function() {
const input = document.querySelector('#gdoc-search-input');
const results = document.querySelector('#gdoc-search-results');
2020-12-20 20:09:49 +01:00
let showParent = false
{{ if .Site.Params.GeekdocSearchShowParent }}
showParent = true
{{ end }}
2020-01-12 15:33:02 +01:00
input.addEventListener('focus', init);
input.addEventListener('keyup', search);
function init() {
input.removeEventListener('focus', init); // init once
input.required = true;
2020-12-02 15:21:34 +01:00
loadScript('{{ index .Site.Data.assets "js/flexsearch.min.js" | relURL }}');
2020-01-12 15:33:02 +01:00
loadScript('{{ $searchData.RelPermalink }}', function() {
input.required = false;
search();
});
2020-12-20 20:09:49 +01:00
loadScript('{{ index .Site.Data.assets "js/groupBy.min.js" | relURL }}');
2020-01-12 15:33:02 +01:00
}
function search() {
while (results.firstChild) {
results.removeChild(results.firstChild);
}
if (!input.value) {
console.log("empty")
results.classList.remove("has-hits");
return;
}
2020-12-20 20:09:49 +01:00
let searchHits = window.geekdocSearchIndex.search(input.value, 10);
2020-01-12 15:33:02 +01:00
console.log(searchHits.length);
2020-12-20 20:09:49 +01:00
if (searchHits.length < 1) {
return results.classList.remove("has-hits");
}
results.classList.add("has-hits");
if (showParent) {
searchHits = groupBy(searchHits, hit => hit.parent);
}
const items = [];
if (showParent) {
for (const section in searchHits) {
const item = document.createElement('li'),
title = item.appendChild(document.createElement('span')),
subList = item.appendChild(document.createElement('ul'));
title.textContent = section;
title.classList.add('gdoc-search__list__section-title');
createLinks(searchHits[section], subList);
items.push(item);
}
2020-01-12 15:33:02 +01:00
} else {
2020-12-20 20:09:49 +01:00
items.push(...createLinks(searchHits));
2020-01-12 15:33:02 +01:00
}
2020-12-20 20:09:49 +01:00
items.forEach(item => {
results.appendChild(item);
})
}
/**
* Creates links to given pages and either returns them in an array or attaches them to a target element
* @param {Object} pages Page to which the link should point to
* @param {HTMLElement} target Element to which the links should be attatched
* @returns {Array} If target is not specified, returns an array of built links
*/
function createLinks(pages, target) {
const items = [];
2020-01-12 15:33:02 +01:00
2020-12-20 20:09:49 +01:00
for (const page of pages) {
const item = document.createElement('li'),
a = item.appendChild(document.createElement('a'));
2020-11-10 22:50:21 +01:00
2020-12-20 20:09:49 +01:00
a.href = page.href;
2020-01-12 15:33:02 +01:00
a.textContent = page.title;
2020-12-20 20:09:49 +01:00
if (target) {
target.appendChild(item);
continue
}
items.push(item);
}
2020-01-12 15:33:02 +01:00
2020-12-20 20:09:49 +01:00
return items;
2020-01-12 15:33:02 +01:00
}
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);
}
})();