fix: error handling
This commit is contained in:
parent
020df9e78f
commit
0ac1a28c42
3 changed files with 20 additions and 12 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -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",
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -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(',')
|
||||||
const response = await fetch(`https://coryd.dev/api/search?q=${query}&type=${typeQuery}`)
|
|
||||||
const index = await response.json()
|
|
||||||
|
|
||||||
resultsById = index.reduce((byId, result) => {
|
try {
|
||||||
byId[result.id] = result
|
const response = await fetch(`https://coryd.dev/api/search?q=${query}&type=${typeQuery}`)
|
||||||
return byId
|
const index = await response.json()
|
||||||
}, {})
|
|
||||||
|
|
||||||
miniSearch.removeAll()
|
if (!Array.isArray(data)) return {}
|
||||||
miniSearch.addAll(index)
|
|
||||||
return resultsById
|
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)
|
loadSearchIndex().then(loadedResultsById => resultsById = loadedResultsById)
|
||||||
|
|
Reference in a new issue