From e3e24f249976ffba420f3670f3d73deda91a4676 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 3 May 2024 16:18:35 -0700 Subject: [PATCH] feat: book counts --- config/filters/index.js | 7 +++++++ package.json | 2 +- src/_includes/book-year.liquid | 2 +- src/pages/books/index.html | 2 ++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index aaa52c1e..6f909971 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -225,6 +225,13 @@ export default { const dateB = DateTime.fromISO(b.dateAdded) return dateB - dateA }), + currentBookCount: (books) => { + const year = DateTime.now().year + return books.filter(book => { + if (book.status === 'finished' && book.dateAdded) return parseInt(book.dateAdded.split('-')[0]) === year + return '' + }).length + }, // tags filterTags: (tags) => { diff --git a/package.json b/package.json index b9713146..c769a3c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "13.6.4", + "version": "13.6.5", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/book-year.liquid b/src/_includes/book-year.liquid index 1c8c7d50..bfc7a240 100644 --- a/src/_includes/book-year.liquid +++ b/src/_includes/book-year.liquid @@ -5,6 +5,6 @@ layout: default

{% tablericon "arrow-left" "Go back" %} Go back

{{ content }} -

Books finished: {{ bookData.size }} +

I finished {{ bookData.size }} books in {{ year }}


{% render "partials/now/media-grid.liquid", data:bookData, shape: "vertical", count: 200, loading: "eager" %} \ No newline at end of file diff --git a/src/pages/books/index.html b/src/pages/books/index.html index 4a3d5ce7..d3bb951b 100644 --- a/src/pages/books/index.html +++ b/src/pages/books/index.html @@ -4,9 +4,11 @@ layout: default permalink: "/books/index.html" --- {%- assign bookData = books | bookStatus: 'started' | reverse -%} +{%- assign currentBookCount = books | currentBookCount -%} {% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}

Here's what I'm reading at the moment. You can also take a look at what I'm planning to read (eventually).

+

I've finished {{ currentBookCount }} books this year.

20242023202220212020


{% for book in bookData %}