chore: simplify
This commit is contained in:
parent
694b2d6c1d
commit
c18286b538
1 changed files with 4 additions and 11 deletions
|
@ -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',
|
||||||
}
|
}))
|
||||||
})
|
|
||||||
}
|
}
|
Reference in a new issue