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", "name": "coryd.dev",
"version": "1.5.1", "version": "1.5.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.5.1", "version": "1.5.2",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

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

View file

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