chore: update book access patterns

This commit is contained in:
Cory Dransfeldt 2023-07-25 16:55:30 -07:00
parent 9a60e4355a
commit af8ac970c5
No known key found for this signature in database

View file

@ -1,15 +1,17 @@
const reading = require('./json/read.json')
module.exports = async function () {
const books = reading.map(read => {
const books = reading.map((read) => {
return {
title: read.title,
cover: read.thumbnail.replace('https://books.google.com', 'https://books.coryd.dev').replace('&edge=curl',''),
link: `https://openlibrary.org/search?q=${read.isbn}`,
started: read.dateStarted,
finished: read.dateFinished,
status: read.status,
title: read['title'],
cover: read['thumbnail']
.replace('https://books.google.com', 'https://books.coryd.dev')
.replace('&edge=curl', ''),
link: `https://openlibrary.org/search?q=${read['isbn']}`,
started: read['dateStarted'],
finished: read['dateFinished'],
status: read['status'],
}
})
return books.filter(book => book.status === 'started')
return books.filter((book) => book.status === 'started')
}