1

crude search system

This commit is contained in:
Evan Pratten 2021-11-16 16:04:00 -05:00
parent f66f687b46
commit 1261194a49
3 changed files with 76 additions and 1 deletions

59
content/search.md Normal file
View File

@ -0,0 +1,59 @@
---
title: Search
---
<div class="field" width="100%">
<input type="search" placeholder="Type something" id="searchField" style="width:100%"/>
</div>
<ol id="searchResults" style="max-width:100%"/>
<script src="/elasticlunr.min.js"></script>
<script src="/search_index.en.js"></script>
<script>
(function (window, document) {
"use strict";
const search = (e) => {
const results = window.searchIndex.search(e.target.value, {
bool: "OR",
expand: true,
});
const resEl = document.getElementById("searchResults");
resEl.innerHTML = "";
if (results) {
results.map((r) => {
const { id, title, description } = r.doc;
const el = document.createElement("li");
resEl.appendChild(el);
const h3 = document.createElement("h3");
el.appendChild(h3);
const a = document.createElement("a");
a.setAttribute("href", id);
a.textContent = title;
h3.appendChild(a);
const p = document.createElement("p");
p.textContent = description;
el.appendChild(p);
});
}
};
// Configure elasticlunr
window.searchIndex = elasticlunr.Index.load(window.searchIndex);
// Attach the search bar to the function above
document.getElementById("searchField").addEventListener("input", search);
// If the request contains a search query (?q=), just search it
if (window.location.search.includes("q=")) {
search({ target: { value: encodeURIComponent(window.location.search.split("=")[1]) } });
}
})(window, document);
</script>

View File

@ -8,6 +8,23 @@
<meta property="og:description" content="{{config.description}}" /> <meta property="og:description" content="{{config.description}}" />
<meta property="description" content="{{config.description}}" /> <meta property="description" content="{{config.description}}" />
<meta name="og:title" content="Evan Pratten (VA3ZZA)" /> <meta name="og:title" content="Evan Pratten (VA3ZZA)" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "https://va3zza.com/",
"about": "{{config.description}}",
"potentialAction": [{
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://va3zza.com/search?q={search_term_string}"
},
"query-input": "required name=search_term_string"
}]
}
</script>
{% endblock head %} {% endblock head %}
{% block content %} {% block content %}

View File

@ -42,7 +42,6 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMat
}] }]
} }
</script> </script>
{% endblock head %} {% endblock head %}
{% block profile %} {% block profile %}