chore: simplify

This commit is contained in:
Cory Dransfeldt 2024-06-14 22:06:23 -07:00
parent 694b2d6c1d
commit c18286b538

View file

@ -54,26 +54,19 @@ async function fetchAllBooks() {
export default async function () { export default async function () {
const books = await fetchAllBooks() const books = await fetchAllBooks()
return books.map(book => { return books.map(book => ({
const author = book['author'] || ''
let date = book?.['date_finished']
if (book?.['date_started']) date = book['date_started']
if (book?.['date_finished']) date = book['date_finished']
return {
title: book['title'], title: book['title'],
author, author: book['author'] || '',
review: book['review'], review: book['review'],
rating: book['star_rating'] !== 'unrated' ? book['star_rating'] : '', rating: book['star_rating'] !== 'unrated' ? book['star_rating'] : '',
description: book['description'], description: book['description'],
image: book['thumbnail'], image: book['thumbnail'],
url: `/books/${book['isbn']}`, url: `/books/${book['isbn']}`,
date, date: book['date_finished'],
status: book['read_status'], status: book['read_status'],
progress: book['progress'], progress: book['progress'],
tags: book['tags'], tags: book['tags'],
isbn: book['isbn'], isbn: book['isbn'],
type: 'book', type: 'book',
} }))
})
} }