From c18286b5389db7a67d4795688991a6e829363e12 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 14 Jun 2024 22:06:23 -0700 Subject: [PATCH] chore: simplify --- src/_data/books.js | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/_data/books.js b/src/_data/books.js index cce1d4b7..05e355a2 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -54,26 +54,19 @@ async function fetchAllBooks() { export default async function () { const books = await fetchAllBooks() - 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 { + return books.map(book => ({ title: book['title'], - author, + author: book['author'] || '', review: book['review'], rating: book['star_rating'] !== 'unrated' ? book['star_rating'] : '', description: book['description'], image: book['thumbnail'], url: `/books/${book['isbn']}`, - date, + date: book['date_finished'], status: book['read_status'], progress: book['progress'], tags: book['tags'], isbn: book['isbn'], type: 'book', - } - }) + })) } \ No newline at end of file