search improvements

This commit is contained in:
cupcakearmy 2021-01-27 12:42:00 +01:00
parent c255ea209a
commit 1cd6aa0465
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
2 changed files with 42 additions and 34 deletions

View File

@ -5,7 +5,6 @@
let href = '/'
$: {
console.log(type, slug)
switch (type) {
case 'works':
case 'projects':
@ -21,6 +20,14 @@
}
</script>
<li>
<a {href}>
<h3>{slug.replace(/-/g, ' ')}</h3>
<span>{type}</span>
<code>Score: {result.score.toFixed(1)}</code>
</a>
</li>
<style>
h3 {
margin: 0;
@ -40,11 +47,3 @@
margin-left: 1em;
}
</style>
<li>
<a {href}>
<h3>{slug.replace(/-/g, ' ')}</h3>
<span>{type}</span>
<code>Score: {result.score.toFixed(1)}</code>
</a>
</li>

View File

@ -1,18 +1,19 @@
<script context="module">
export async function preload() {
import lunr from 'lunr'
export async function preload({ query }) {
const prebuilt = await this.fetch(`/search.json`).then((res) => res.json())
return { prebuilt }
return { idx: lunr.Index.load(prebuilt) }
}
</script>
<script>
import lunr from 'lunr'
import { onMount } from 'svelte'
import SearchResult from '../components/SearchResult.svelte'
import SimplePage from '../components/SimplePage.svelte'
export let prebuilt
export let idx
let needle
let results = []
@ -26,28 +27,18 @@
}
}
$: idx = lunr.Index.load(prebuilt)
$: search(needle)
$: if (needle) {
if (typeof window !== 'undefined') {
window.history.replaceState(null, null, `/search?q=${needle || ''}`)
}
search(needle)
}
onMount(() => {
needle = new URLSearchParams(window.location.search).get('q')
})
</script>
<style>
input {
appearance: none;
margin: 0;
padding: 0.5rem;
font-size: 1em;
width: 100%;
outline: none;
border: 1px solid var(--clr-dark);
}
ul {
margin-top: 2em;
list-style: none;
padding: 0;
}
</style>
<SimplePage title="Search" expanded={false}>
<input bind:value={needle} placeholder="needle" />
<ul>
@ -56,3 +47,21 @@
{/each}
</ul>
</SimplePage>
<style>
input {
appearance: none;
margin: 0;
padding: 0.5rem;
font-size: 1em;
width: 100%;
outline: none;
border: 2px solid var(--clr-primary);
}
ul {
margin-top: 2em;
list-style: none;
padding: 0;
}
</style>