diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2025-03-22 18:05:09 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2025-03-22 18:05:09 +0300 |
commit | 5214c9c09320e43f1f754b306be588028e9d1426 (patch) | |
tree | 55672043f8a380717853fae660cb189062748a54 /static/js/search.js | |
parent | 3de7fe83861431c2b43cec91c1ef2e8d5ca0a01d (diff) |
Auto-commit 2025-03-22
Diffstat (limited to 'static/js/search.js')
-rw-r--r-- | static/js/search.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/static/js/search.js b/static/js/search.js deleted file mode 100644 index 62bcbbb..0000000 --- a/static/js/search.js +++ /dev/null @@ -1,27 +0,0 @@ -fetch('/index.json') - .then(response => response.json()) - .then(data => { - const fuse = new Fuse(data, { - keys: ['title', 'contents', 'tags'], - includeScore: true - }); - document.getElementById('search-input').addEventListener('input', function (e) { - const results = fuse.search(e.target.value); - displayResults(results); - }); - }); - -function displayResults(results) { - const searchResults = document.getElementById('search-results'); - searchResults.innerHTML = ''; - if (results.length > 0) { - searchResults.classList.remove("hidden"); - } else { - searchResults.classList.add("hidden"); - } - results.forEach(result => { - const elem = document.createElement('div'); - elem.innerHTML = `<a class="list-group-item list-group-item-action" href="${result.item.permalink}">${result.item.title}</a></a`; - searchResults.appendChild(elem); - }); -} |