diff --git a/config/collections/index.js b/config/collections/index.js index e8b9a22d..53138b23 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -30,7 +30,7 @@ export const searchIndex = (collection) => { const { data } = collectionData const { posts, links, movies, books } = data const movieData = movies['movies'].filter(movie => (movie['review']?.length && movie['review']?.length > 0 && movie['rating'])) - const bookData = books.filter(book => (book['review']?.length && book['review']?.length > 0 && book['rating'])) + const bookData = books.all.filter(book => (book['review']?.length && book['review']?.length > 0 && book['rating'])) const addItemToIndex = (items, icon, getUrl, getTitle, getTags) => { if (items) { items.forEach((item) => { @@ -104,7 +104,7 @@ export const allContent = (collection) => { addContent(posts, '📝', item => item['title'], item => item['date']) addContent(links, '🔗', item => item['title'], item => item['date']) - addContent(books.filter(book => book['status'] === 'finished'), '📖', item => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, item => item['date']) + addContent(books.all.filter(book => book['status'] === 'finished'), '📖', item => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, item => item['date']) addContent(movies, '🎥', item => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, item => item['lastWatched']) return aggregateContent.sort((a, b) => { diff --git a/config/filters/index.js b/config/filters/index.js index 05dfe4bf..729a0f6b 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -204,6 +204,7 @@ export default { return `${allButLast} and ${last}` }, bookStatus: (books, status) => books.filter(book => book.status === status), + bookFavorites: (books) => books.filter(book => book.favorite === true), bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => { const dateA = DateTime.fromISO(a.date) const dateB = DateTime.fromISO(b.date) @@ -225,6 +226,8 @@ export default { genreStrings: (genres, key) => genres.map(genre => genre[key]), mediaLinks: (data, type, count = 10) => { const dataSlice = data.slice(0, count) + let last; + if (dataSlice.length === 0) return '' if (dataSlice.length === 1) return type === 'genre' ? dataSlice[0] : dataSlice[0]['artist_name'] @@ -233,12 +236,18 @@ export default { return `${item}` } else if (type === 'artist') { return `${item['name_string']}` + } else if (type === 'book') { + return `${item['title']}` } }).join(', ') - const last = type === 'genre' - ? `${dataSlice[dataSlice.length - 1]}` - : `${dataSlice[dataSlice.length - 1]['name_string']}` + if (type === 'genre') { + last = `${dataSlice[dataSlice.length - 1]}` + } else if (type === 'artist') { + last = `${dataSlice[dataSlice.length - 1]['name_string']}` + } else if (type === 'book') { + last = `${dataSlice[dataSlice.length - 1]['title']}` + } return `${allButLast} and ${last}` } diff --git a/package-lock.json b/package-lock.json index a10b208b..19e98d8c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "20.6.4", + "version": "20.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "20.6.4", + "version": "20.7.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", @@ -21,7 +21,7 @@ "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0", "@cdransf/eleventy-plugin-tabler-icons": "^1.9.0", - "@supabase/supabase-js": "^2.44.3", + "@supabase/supabase-js": "^2.44.4", "dotenv-flow": "^4.1.0", "html-minifier-terser": "^7.2.0", "liquidjs": "^10.15.0", @@ -446,9 +446,9 @@ } }, "node_modules/@supabase/auth-js": { - "version": "2.64.2", - "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.64.2.tgz", - "integrity": "sha512-s+lkHEdGiczDrzXJ1YWt2y3bxRi+qIUnXcgkpLSrId7yjBeaXBFygNjTaoZLG02KNcYwbuZ9qkEIqmj2hF7svw==", + "version": "2.64.4", + "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.64.4.tgz", + "integrity": "sha512-9ITagy4WP4FLl+mke1rchapOH0RQpf++DI+WSG2sO1OFOZ0rW3cwAM0nCrMOxu+Zw4vJ4zObc08uvQrXx590Tg==", "dev": true, "license": "MIT", "dependencies": { @@ -512,13 +512,13 @@ } }, "node_modules/@supabase/supabase-js": { - "version": "2.44.3", - "resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.44.3.tgz", - "integrity": "sha512-3tYf5ojKSL0RJIpnkwYSdLPdRcza8KMTdRx2SyF9YA6PWnuUfqzmqjZohAHJuGql2CaPMWd9BLPOHupPuGq0lQ==", + "version": "2.44.4", + "resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.44.4.tgz", + "integrity": "sha512-vqtUp8umqcgj+RPUc7LiEcQmgsEWFDPJdJizRJF/5tf2zSlVB+3YbUwyQE/hLagYA8TLvGXe7oAqtYyFde6llw==", "dev": true, "license": "MIT", "dependencies": { - "@supabase/auth-js": "2.64.2", + "@supabase/auth-js": "2.64.4", "@supabase/functions-js": "2.4.1", "@supabase/node-fetch": "2.6.15", "@supabase/postgrest-js": "1.15.8", diff --git a/package.json b/package.json index ead67d65..96f53fe1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "20.6.4", + "version": "20.7.0", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { @@ -31,7 +31,7 @@ "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0", "@cdransf/eleventy-plugin-tabler-icons": "^1.9.0", - "@supabase/supabase-js": "^2.44.3", + "@supabase/supabase-js": "^2.44.4", "dotenv-flow": "^4.1.0", "html-minifier-terser": "^7.2.0", "liquidjs": "^10.15.0", diff --git a/src/_data/books.js b/src/_data/books.js index 43dd10a5..f1e4c3c0 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -1,7 +1,6 @@ import { createClient } from '@supabase/supabase-js' -const SUPABASE_URL = process.env.SUPABASE_URL -const SUPABASE_KEY = process.env.SUPABASE_KEY +const { SUPABASE_URL, SUPABASE_KEY } = process.env const supabase = createClient(SUPABASE_URL, SUPABASE_KEY) const PAGE_SIZE = 1000 @@ -17,19 +16,18 @@ const fetchTagsForBook = async (bookId) => { return [] } - return data.map(bt => bt.tags.name) + return data.map(bt => bt['tags']['name']) } async function fetchAllBooks() { let books = [] let from = 0 - let to = PAGE_SIZE - 1 while (true) { const { data, error } = await supabase .from('books') .select(`*, art(filename_disk)`) - .range(from, to) + .range(from, from + PAGE_SIZE - 1) if (error) { console.error('Error fetching data from Supabase:', error) @@ -37,7 +35,7 @@ async function fetchAllBooks() { } for (const book of data) { - book.tags = await fetchTagsForBook(book['id']) + book['tags'] = await fetchTagsForBook(book['id']) } books = books.concat(data) @@ -45,20 +43,17 @@ async function fetchAllBooks() { if (data.length < PAGE_SIZE) break from += PAGE_SIZE - to += PAGE_SIZE } - return books -} - -export default async function () { - const books = await fetchAllBooks() - - return books.map(book => ({ + return books.map(book => { + const dateFinished = new Date(book['date_finished']) + const year = dateFinished.getUTCFullYear() + return { title: book['title'], author: book['author'] || '', review: book['review'], rating: book['star_rating'] !== 'unrated' ? book['star_rating'] : '', + favorite: book['favorite'], description: book['description'], image: `/${book?.['art']?.['filename_disk']}`, url: `/books/${book['isbn']}`, @@ -68,5 +63,25 @@ export default async function () { tags: book['tags'], isbn: book['isbn'], type: 'book', - })) + year, + } + }) +} + +const sortBooksByYear = (books) => { + const years = {} + books.forEach(book => { + const year = book['year'] + if (!years[year]) { + years[year] = { value: year, data: [book] } + } else { + years[year]['data'].push(book) + } + }) + return Object.values(years).filter(year => year.value > 2020) +} + +export default async function () { + const books = await fetchAllBooks() + return { all: books, years: sortBooksByYear(books) } } \ No newline at end of file diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index 576bb734..4d18db22 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -15,6 +15,8 @@ {%- assign pageTitle = 'Music / ' | append: genre.name | append: ' / ' | append: globals.site_name -%} {%- elsif book.title -%} {%- assign pageTitle = 'Books / ' | append: book.title | append: ' / ' | append: globals.site_name -%} +{%- elsif year.value -%} + {%- assign pageTitle = ' / Books ' | prepend: year.value | append: ' / ' | append: globals.site_name -%} {%- elsif movie.title -%} {%- assign pageTitle = 'Movies / ' | append: movie.title -%} {%- if movie.rating -%} @@ -57,7 +59,10 @@ {%- assign featuredMovie = movies.recentlyWatched | first -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredMovie.backdrop -%} {%- when 'books' -%} - {%- assign featuredBook = books | bookStatus: 'started' | reverse | first -%} + {%- assign featuredBook = books.all | bookStatus: 'started' | reverse | first -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredBook.image -%} + {%- when 'books-year' -%} + {%- assign featuredBook = books.all | bookStatus: 'finished' | bookFinishedYear: year.value | bookSortDescending | first -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredBook.image -%} {%- when 'book' -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: book.image -%} diff --git a/src/_includes/partials/media/books/year.liquid b/src/_includes/partials/media/books/year.liquid deleted file mode 100644 index bc4ba418..00000000 --- a/src/_includes/partials/media/books/year.liquid +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: default ---- -{%- assign bookData = books | bookStatus: 'finished' | bookFinishedYear: year | bookSortDescending -%} -{%- capture currentYear -%}{% currentYear %}{%- endcapture -%} -{%- assign yearString = year | append: '' -%} -{%- assign currentYearString = currentYear | append: '' -%} -{% tablericon "arrow-left" "Go back to the books index page" %} Back to books -
I've finished {{ bookData.size }} books this year.
-{% else %} -I finished {{ bookData.size }} books in {{ year }}.
-{% endif %} -Here's what I'm reading at the moment. I've finished {{ currentBookCount }} books this year.
2024 / 2023 / 2022 / 2021 / 2020
diff --git a/src/pages/main/books/year.html b/src/pages/main/books/year.html new file mode 100644 index 00000000..251b115b --- /dev/null +++ b/src/pages/main/books/year.html @@ -0,0 +1,24 @@ +--- +layout: default +pagination: + data: books.years + size: 1 + alias: year +permalink: "/books/years/{{ year.value }}.html" +schema: books-year +--- +{%- assign bookData = year.data | bookStatus: 'finished' | bookSortDescending -%} +{%- assign bookDataFavorites = bookData | bookFavorites -%} +{%- capture favoriteBooks -%}{{ bookDataFavorites | shuffleArray | mediaLinks: "book", 5 }}{%- endcapture -%} +{%- capture currentYear -%}{% currentYear %}{%- endcapture -%} +{%- assign yearString = year.value | append: '' -%} +{%- assign currentYearString = currentYear | append: '' -%} +{% tablericon "arrow-left" "Go back to the books index page" %} Back to books +I've finished {{ bookData.size }} books this year. Among my favorites are {{ favoriteBooks }}.
+{% else %} +I finished {{ bookData.size }} books in {{ year.value }}. Among my favorites were {{ favoriteBooks }}.
+{% endif %} +This is everything I read in 2020. My favorites were: every book in The Expanse series and I'll Be Gone in the Dark.
\ No newline at end of file diff --git a/src/pages/main/books/years/2021.html b/src/pages/main/books/years/2021.html deleted file mode 100644 index 1f053a5c..00000000 --- a/src/pages/main/books/years/2021.html +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: 2021 / Books -description: "This is everything I read in 2021. My favorites were: This Is How They Tell Me The World Ends, Sandworm, Empire of Pain, Say Nothing, Sigh, Gone and Leviathan Falls. I finished 53 books in 2021." -year: 2021 -layout: partials/media/books/year -permalink: "/books/years/2021.html" -schema: books ---- -This is everything I read in 2021. My favorites were: This Is How They Tell Me The World Ends, Sandworm, Empire of Pain, Say Nothing, Sigh, Gone and Leviathan Falls.
\ No newline at end of file diff --git a/src/pages/main/books/years/2022.html b/src/pages/main/books/years/2022.html deleted file mode 100644 index 5ab8913f..00000000 --- a/src/pages/main/books/years/2022.html +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: 2022 / Books -description: "This is everything I read in 2022. My favorites were: Sellout, The Sins of Our Fathers, Drive, Adnan's Story and The Lazarus Heist. I finished 67 books in 2022." -year: 2022 -layout: partials/media/books/year -permalink: "/books/years/2022.html" -schema: books ---- -This is everything I read in 2022. My favorites were: Sellout, The Sins of Our Fathers, Drive, Adnan's Story and The Lazarus Heist.
\ No newline at end of file diff --git a/src/pages/main/books/years/2023.html b/src/pages/main/books/years/2023.html deleted file mode 100644 index 4a28c048..00000000 --- a/src/pages/main/books/years/2023.html +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: 2023 / Books -description: "This is everything I read in 2023. My favorites were: Stay True, Where Are Your Boys Tonight?, Trouble Boys, Tracers in the Dark and Girl in a Band. I finished 69 books in 2023." -year: 2023 -layout: partials/media/books/year -permalink: "/books/years/2023.html" -schema: books ---- -This is everything I read in 2023. My favorites were: Stay True, Where Are Your Boys Tonight?, Trouble Boys, Tracers in the Dark and Girl in a Band.
\ No newline at end of file diff --git a/src/pages/main/books/years/2024.html b/src/pages/main/books/years/2024.html deleted file mode 100644 index e0b69de6..00000000 --- a/src/pages/main/books/years/2024.html +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: 2024 / Books -description: "Here's what I'm reading at the moment." -year: 2024 -layout: partials/media/books/year -permalink: "/books/years/2024.html" -schema: books ---- -This is everything I've read in 2024 — continuing my trend of concentrating on science fiction, tech coverage, pop sci, autobiographies and coverage of musicians I appreciate.
\ No newline at end of file