fix: error handling

This commit is contained in:
Cory Dransfeldt 2024-10-19 14:06:04 -07:00
parent 020df9e78f
commit 0ac1a28c42
No known key found for this signature in database
3 changed files with 20 additions and 12 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "1.5.1",
"version": "1.5.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "1.5.1",
"version": "1.5.2",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "1.5.1",
"version": "1.5.2",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {

View file

@ -173,17 +173,25 @@ window.addEventListener('load', () => {
const loadSearchIndex = async (query = '', types = []) => {
const typeQuery = types.join(',')
const response = await fetch(`https://coryd.dev/api/search?q=${query}&type=${typeQuery}`)
const index = await response.json()
resultsById = index.reduce((byId, result) => {
byId[result.id] = result
return byId
}, {})
try {
const response = await fetch(`https://coryd.dev/api/search?q=${query}&type=${typeQuery}`)
const index = await response.json()
miniSearch.removeAll()
miniSearch.addAll(index)
return resultsById
if (!Array.isArray(data)) return {}
resultsById = data.reduce((acc, item) => {
acc[item.id] = item
return acc
}, {})
miniSearch.removeAll()
miniSearch.addAll(index)
return resultsById
} catch (error) {
console.error('Error fetching search data:', error)
return {}
}
}
loadSearchIndex().then(loadedResultsById => resultsById = loadedResultsById)