fix: no authors

This commit is contained in:
Cory Dransfeldt 2024-04-21 10:30:07 -07:00
parent d0fde62431
commit ec725aefaa
No known key found for this signature in database
2 changed files with 9 additions and 4 deletions

View file

@ -32,6 +32,7 @@ export default {
macos: '#macOS #Apple',
mastodon: '#Mastodon',
music: '#Music',
mystery: '#Mystery',
nonfiction: '#NonFiction',
politics: '#Politics',
privacy: '#Privacy',

View file

@ -3,10 +3,14 @@ const require = createRequire(import.meta.url)
const books = require('./json/read.json')
export default async function () {
return books.map(book => (
{
return books.map(book => {
let authors = ''
if (book['authors']?.length > 1) authors = book['authors'].join(', ')
if (book['authors']?.length === 1) authors = book['authors'][0]
return {
title: book['title'],
authors: book['authors'].length > 1 ? book['authors'].join(', ') : book['authors'][0],
authors,
description: book['description'],
image: `https://coryd.dev/.netlify/images/?url=${encodeURIComponent(book['thumbnail'].replace('&edge=curl', ''))}&fit=cover&w=200&h=307`,
url: `https://openlibrary.org/isbn/${book['isbn']}`,
@ -15,5 +19,5 @@ export default async function () {
tags: book['tags'],
type: 'book',
}
))
})
}