chore: update book access patterns
This commit is contained in:
parent
9a60e4355a
commit
af8ac970c5
1 changed files with 10 additions and 8 deletions
|
@ -1,15 +1,17 @@
|
||||||
const reading = require('./json/read.json')
|
const reading = require('./json/read.json')
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const books = reading.map(read => {
|
const books = reading.map((read) => {
|
||||||
return {
|
return {
|
||||||
title: read.title,
|
title: read['title'],
|
||||||
cover: read.thumbnail.replace('https://books.google.com', 'https://books.coryd.dev').replace('&edge=curl',''),
|
cover: read['thumbnail']
|
||||||
link: `https://openlibrary.org/search?q=${read.isbn}`,
|
.replace('https://books.google.com', 'https://books.coryd.dev')
|
||||||
started: read.dateStarted,
|
.replace('&edge=curl', ''),
|
||||||
finished: read.dateFinished,
|
link: `https://openlibrary.org/search?q=${read['isbn']}`,
|
||||||
status: read.status,
|
started: read['dateStarted'],
|
||||||
|
finished: read['dateFinished'],
|
||||||
|
status: read['status'],
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return books.filter(book => book.status === 'started')
|
return books.filter((book) => book.status === 'started')
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue