From af8ac970c515e012938dac0e3610446382ed1669 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 25 Jul 2023 16:55:30 -0700 Subject: [PATCH] chore: update book access patterns --- src/_data/books.js | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/_data/books.js b/src/_data/books.js index c2042502..8951d069 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -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') }