fix: book data

This commit is contained in:
Cory Dransfeldt 2023-07-08 20:06:53 -07:00
parent 51d2a1c7d9
commit b7a955a3ab
No known key found for this signature in database
2 changed files with 6 additions and 7 deletions

View file

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

View file

@ -119,16 +119,14 @@ layout: main
</h2> </h2>
<div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose"> <div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose">
{% for book in books %} {% for book in books %}
{% if book.cover %}
<a href="{{book.link}}" title="{{book.title | escape}}"> <a href="{{book.link}}" title="{{book.title | escape}}">
<div class="relative block" style="max-width:226px"> <div class="relative block" style="max-width:226px">
<div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 dark:border-purple-400 dark:hover:border-purple-500"></div> <div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 dark:border-purple-400 dark:hover:border-purple-500"></div>
{%- capture bookImg %}{{book.cover}}{% endcapture -%} {%- capture bookImg %}{{book.cover}}{% endcapture -%}
{%- capture bookName %}{{book.title | escape}} by {{book.author | escape}}{% endcapture -%} {%- capture bookName %}{{book.title | escape}}{% endcapture -%}
{% image bookImg, bookName, 'rounded-lg w-full h-full', '180px' %} {% image bookImg, bookName, 'rounded-lg w-full h-full', '180px' %}
</div> </div>
</a> </a>
{% endif %}
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% endif %}