feat: add ratings
This commit is contained in:
parent
c37fc2f1a3
commit
614d1e210c
13 changed files with 98 additions and 66 deletions
|
@ -45,12 +45,11 @@ export const followContent = (collection) => {
|
||||||
if (!parsedDate.isValid) parsedDate = DateTime.fromFormat(date, 'dd-MM-yyyy')
|
if (!parsedDate.isValid) parsedDate = DateTime.fromFormat(date, 'dd-MM-yyyy')
|
||||||
return parsedDate.isValid ? parsedDate.toISO() : null
|
return parsedDate.isValid ? parsedDate.toISO() : null
|
||||||
}
|
}
|
||||||
|
|
||||||
const addContent = (items, icon, getTitle, getDate) => {
|
const addContent = (items, icon, getTitle, getDate) => {
|
||||||
if (items) {
|
if (items) {
|
||||||
items.forEach(item => {
|
items.forEach(item => {
|
||||||
const content = {
|
const content = {
|
||||||
url: item.url.includes('http') ? item.url : `https://coryd.dev${item.url}`,
|
url: item.url?.includes('http') ? item.url : `https://coryd.dev${item.url}`,
|
||||||
title: `${icon}: ${getTitle(item)}`
|
title: `${icon}: ${getTitle(item)}`
|
||||||
}
|
}
|
||||||
if (item.data?.link) content.url = item.data?.link
|
if (item.data?.link) content.url = item.data?.link
|
||||||
|
@ -63,8 +62,8 @@ export const followContent = (collection) => {
|
||||||
|
|
||||||
addContent(posts, '📝', item => item.data.title, item => item.data.date)
|
addContent(posts, '📝', item => item.data.title, item => item.data.date)
|
||||||
addContent(links, '🔗', item => item.data.title, item => item.data.date)
|
addContent(links, '🔗', item => item.data.title, item => item.data.date)
|
||||||
addContent(books.filter(book => book.status === 'started'), '📖', item => item.title, item => item.date)
|
addContent(books.filter(book => book.status === 'finished'), '📖', item => item.title, item => item.date)
|
||||||
addContent(movies, '🎥', item => item.title, item => item.lastWatched)
|
addContent(movies, '🎥', item => `${item.title}${item.rating ? ' (' + item.rating + ')' : ''}`, item => item.lastWatched)
|
||||||
addContent(weeklyArtistChart, '🎧', item => item.title, item => item.date)
|
addContent(weeklyArtistChart, '🎧', item => item.title, item => item.date)
|
||||||
|
|
||||||
return aggregateContent.sort((a, b) => {
|
return aggregateContent.sort((a, b) => {
|
||||||
|
|
|
@ -174,6 +174,7 @@ export default {
|
||||||
content: entry?.description || entry?.data?.description,
|
content: entry?.description || entry?.data?.description,
|
||||||
date,
|
date,
|
||||||
excerpt,
|
excerpt,
|
||||||
|
rating: entry?.rating || ''
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
return posts
|
return posts
|
||||||
|
@ -197,7 +198,12 @@ export default {
|
||||||
normalized['alt'] = `${item['plays']} plays of ${item['title']}`
|
normalized['alt'] = `${item['plays']} plays of ${item['title']}`
|
||||||
normalized['subtext'] = `${item['plays']} plays`
|
normalized['subtext'] = `${item['plays']} plays`
|
||||||
}
|
}
|
||||||
if (item.type === 'movie') normalized['alt'] = item['title']
|
if (item.type === 'movie') {
|
||||||
|
normalized['title'] = `${item['title']} (${item['year']})`
|
||||||
|
normalized['alt'] = item['title']
|
||||||
|
normalized['rating'] = item['rating']
|
||||||
|
normalized['subtext'] = item['rating']
|
||||||
|
}
|
||||||
if (item.type === 'book') {
|
if (item.type === 'book') {
|
||||||
normalized['alt'] = `${item['title']} by ${item['authors']}`
|
normalized['alt'] = `${item['title']} by ${item['authors']}`
|
||||||
normalized['subtext'] = `${item['percentage']} finished`
|
normalized['subtext'] = `${item['percentage']} finished`
|
||||||
|
@ -217,14 +223,15 @@ export default {
|
||||||
}),
|
}),
|
||||||
calculatePlayPercentage: (plays, mostPlayed) => `${plays/mostPlayed * 100}%`,
|
calculatePlayPercentage: (plays, mostPlayed) => `${plays/mostPlayed * 100}%`,
|
||||||
bookStatus: (books, status) => books.filter(book => book.status === status),
|
bookStatus: (books, status) => books.filter(book => book.status === status),
|
||||||
bookFinishedYear: (books, year) => books.filter(book => {
|
bookSortDescending: (books) => books.sort((a, b) => {
|
||||||
if (book.status === 'finished' && book.date) return parseInt(book.date.split('-')[0]) === year
|
|
||||||
return ''
|
|
||||||
}).sort((a, b) => {
|
|
||||||
const dateA = DateTime.fromISO(a.date)
|
const dateA = DateTime.fromISO(a.date)
|
||||||
const dateB = DateTime.fromISO(b.date)
|
const dateB = DateTime.fromISO(b.date)
|
||||||
return dateB - dateA
|
return dateB - dateA
|
||||||
}),
|
}),
|
||||||
|
bookFinishedYear: (books, year) => books.filter(book => {
|
||||||
|
if (book.status === 'finished' && book.date) return parseInt(book.date.split('-')[0]) === year
|
||||||
|
return ''
|
||||||
|
}),
|
||||||
currentBookCount: (books) => {
|
currentBookCount: (books) => {
|
||||||
const year = DateTime.now().year
|
const year = DateTime.now().year
|
||||||
return books.filter(book => {
|
return books.filter(book => {
|
||||||
|
|
82
package-lock.json
generated
82
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "15.3.0",
|
"version": "15.4.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "15.3.0",
|
"version": "15.4.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.2.2",
|
"@cdransf/api-text": "^1.2.2",
|
||||||
|
@ -4296,9 +4296,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss": {
|
"node_modules/lightningcss": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.25.0.tgz",
|
||||||
"integrity": "sha512-kUpHOLiH5GB0ERSv4pxqlL0RYKnOXtgGtVe7shDGfhS0AZ4D1ouKFYAcLcZhql8aMspDNzaUCumGHZ78tb2fTg==",
|
"integrity": "sha512-B08o6QQikGaY4rPuQohtFVE+X2++mm/QemwAJ/1sgnMgTwwUnafJbTmSSBWC8Tv4JPfhelXZB6sWA0Y/6eYJmQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"detect-libc": "^1.0.3"
|
"detect-libc": "^1.0.3"
|
||||||
|
@ -4311,21 +4311,21 @@
|
||||||
"url": "https://opencollective.com/parcel"
|
"url": "https://opencollective.com/parcel"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"lightningcss-darwin-arm64": "1.24.1",
|
"lightningcss-darwin-arm64": "1.25.0",
|
||||||
"lightningcss-darwin-x64": "1.24.1",
|
"lightningcss-darwin-x64": "1.25.0",
|
||||||
"lightningcss-freebsd-x64": "1.24.1",
|
"lightningcss-freebsd-x64": "1.25.0",
|
||||||
"lightningcss-linux-arm-gnueabihf": "1.24.1",
|
"lightningcss-linux-arm-gnueabihf": "1.25.0",
|
||||||
"lightningcss-linux-arm64-gnu": "1.24.1",
|
"lightningcss-linux-arm64-gnu": "1.25.0",
|
||||||
"lightningcss-linux-arm64-musl": "1.24.1",
|
"lightningcss-linux-arm64-musl": "1.25.0",
|
||||||
"lightningcss-linux-x64-gnu": "1.24.1",
|
"lightningcss-linux-x64-gnu": "1.25.0",
|
||||||
"lightningcss-linux-x64-musl": "1.24.1",
|
"lightningcss-linux-x64-musl": "1.25.0",
|
||||||
"lightningcss-win32-x64-msvc": "1.24.1"
|
"lightningcss-win32-x64-msvc": "1.25.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-darwin-arm64": {
|
"node_modules/lightningcss-darwin-arm64": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.25.0.tgz",
|
||||||
"integrity": "sha512-1jQ12jBy+AE/73uGQWGSafK5GoWgmSiIQOGhSEXiFJSZxzV+OXIx+a9h2EYHxdJfX864M+2TAxWPWb0Vv+8y4w==",
|
"integrity": "sha512-neCU5PrQUAec/b2mpXv13rrBWObQVaG/y0yhGKzAqN9cj7lOv13Wegnpiro0M66XAxx/cIkZfmJstRfriOR2SQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
|
@ -4343,9 +4343,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-darwin-x64": {
|
"node_modules/lightningcss-darwin-x64": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.25.0.tgz",
|
||||||
"integrity": "sha512-R4R1d7VVdq2mG4igMU+Di8GPf0b64ZLnYVkubYnGG0Qxq1KaXQtAzcLI43EkpnoWvB/kUg8JKCWH4S13NfiLcQ==",
|
"integrity": "sha512-h1XBxDHdED7TY4/1V30UNjiqXceGbcL8ARhUfbf8CWAEhD7wMKK/4UqMHi94RDl31ko4LTmt9fS2u1uyeWYE6g==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -4363,9 +4363,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-freebsd-x64": {
|
"node_modules/lightningcss-freebsd-x64": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.25.0.tgz",
|
||||||
"integrity": "sha512-z6NberUUw5ALES6Ixn2shmjRRrM1cmEn1ZQPiM5IrZ6xHHL5a1lPin9pRv+w6eWfcrEo+qGG6R9XfJrpuY3e4g==",
|
"integrity": "sha512-f7v6QwrqCFtQOG1Y7iZ4P1/EAmMsyUyRBrYbSmDxihMzdsL7xyTM753H2138/oCpam+maw2RZrXe/NA1r/I5cQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -4383,9 +4383,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.25.0.tgz",
|
||||||
"integrity": "sha512-NLQLnBQW/0sSg74qLNI8F8QKQXkNg4/ukSTa+XhtkO7v3BnK19TS1MfCbDHt+TTdSgNEBv0tubRuapcKho2EWw==",
|
"integrity": "sha512-7KSVcjci9apHxUKNjiLKXn8hVQJqCtwFg5YNvTeKi/BM91A9lQTuO57RpmpPbRIb20Qm8vR7fZtL1iL5Yo3j9A==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm"
|
"arm"
|
||||||
],
|
],
|
||||||
|
@ -4403,9 +4403,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-linux-arm64-gnu": {
|
"node_modules/lightningcss-linux-arm64-gnu": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.25.0.tgz",
|
||||||
"integrity": "sha512-AQxWU8c9E9JAjAi4Qw9CvX2tDIPjgzCTrZCSXKELfs4mCwzxRkHh2RCxX8sFK19RyJoJAjA/Kw8+LMNRHS5qEg==",
|
"integrity": "sha512-1+6tuAsUyMVG5N2rzgwaOOf84yEU+Gjl71b+wLcz26lyM/ohgFgeqPWeB/Dor0wyUnq7vg184l8goGT26cRxoQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
|
@ -4423,9 +4423,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-linux-arm64-musl": {
|
"node_modules/lightningcss-linux-arm64-musl": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.25.0.tgz",
|
||||||
"integrity": "sha512-JCgH/SrNrhqsguUA0uJUM1PvN5+dVuzPIlXcoWDHSv2OU/BWlj2dUYr3XNzEw748SmNZPfl2NjQrAdzaPOn1lA==",
|
"integrity": "sha512-4kw3ZnGQzxD8KkaB4doqfi32hP5h3o04OlrdfZ7T9VLTbUxeh3YZUKcJmhINV2rdMOOmVODqaRw1kuvvF16Q+Q==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
|
@ -4443,9 +4443,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-linux-x64-gnu": {
|
"node_modules/lightningcss-linux-x64-gnu": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.25.0.tgz",
|
||||||
"integrity": "sha512-TYdEsC63bHV0h47aNRGN3RiK7aIeco3/keN4NkoSQ5T8xk09KHuBdySltWAvKLgT8JvR+ayzq8ZHnL1wKWY0rw==",
|
"integrity": "sha512-oVEP5rBrFQB5V7fRIPYkDxKLmd2fAbz9VagKWIRu1TlYDUFWXK4F3KztAtAKuD7tLMBSGGi1LMUueFzVe+cZbw==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -4463,9 +4463,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-linux-x64-musl": {
|
"node_modules/lightningcss-linux-x64-musl": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.25.0.tgz",
|
||||||
"integrity": "sha512-HLfzVik3RToot6pQ2Rgc3JhfZkGi01hFetHt40HrUMoeKitLoqUUT5owM6yTZPTytTUW9ukLBJ1pc3XNMSvlLw==",
|
"integrity": "sha512-7ssY6HwCvmPDohqtXuZG2Mh9q32LbVBhiF/SS/VMj2jUcXcsBilUEviq/zFDzhZMxl5f1lXi5/+mCuSGrMir1A==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -4483,9 +4483,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lightningcss-win32-x64-msvc": {
|
"node_modules/lightningcss-win32-x64-msvc": {
|
||||||
"version": "1.24.1",
|
"version": "1.25.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.25.0.tgz",
|
||||||
"integrity": "sha512-joEupPjYJ7PjZtDsS5lzALtlAudAbgIBMGJPNeFe5HfdmJXFd13ECmEM+5rXNxYVMRHua2w8132R6ab5Z6K9Ow==",
|
"integrity": "sha512-DUVxj1S6dCQkixQ5qiHcYojamxE02bgmSpc4p6lejPwW7WRd/pvDPDAr+BvZWAkX5MRphxB7ei6+93+42ZtvmQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "15.3.0",
|
"version": "15.4.0",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -22,6 +22,7 @@ export default async function () {
|
||||||
status: book['status'],
|
status: book['status'],
|
||||||
tags: book['tags'],
|
tags: book['tags'],
|
||||||
categories: book['categories']?.length > 1 ? book['categories'].join(', ') : book['categories']?.[0],
|
categories: book['categories']?.length > 1 ? book['categories'].join(', ') : book['categories']?.[0],
|
||||||
|
rating: book['rating'] !== 'unrated' ? book['rating'] : '',
|
||||||
type: 'book',
|
type: 'book',
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -10308,7 +10308,7 @@
|
||||||
"isbn": "9781501182891",
|
"isbn": "9781501182891",
|
||||||
"dateAdded": "2024-05-03",
|
"dateAdded": "2024-05-03",
|
||||||
"status": "finished",
|
"status": "finished",
|
||||||
"rating": "unrated",
|
"rating": "⭐️⭐️⭐️⭐️",
|
||||||
"tags": [
|
"tags": [
|
||||||
"\"politics\"",
|
"\"politics\"",
|
||||||
"\"economics\"",
|
"\"economics\"",
|
||||||
|
|
|
@ -22,7 +22,8 @@ const fetchAllMovies = async () => {
|
||||||
year,
|
year,
|
||||||
collected,
|
collected,
|
||||||
plays,
|
plays,
|
||||||
favorite
|
favorite,
|
||||||
|
rating
|
||||||
`)
|
`)
|
||||||
.order('last_watched', { ascending: false })
|
.order('last_watched', { ascending: false })
|
||||||
.range(rangeStart, rangeStart + PAGE_SIZE - 1)
|
.range(rangeStart, rangeStart + PAGE_SIZE - 1)
|
||||||
|
@ -51,12 +52,13 @@ export default async function () {
|
||||||
year: item['year'],
|
year: item['year'],
|
||||||
url: `https://www.themoviedb.org/movie/${item['tmdb_id']}`,
|
url: `https://www.themoviedb.org/movie/${item['tmdb_id']}`,
|
||||||
description: `<p>${item['title']} (${item['year']})</p><p>Watched at: ${DateTime.fromISO(item['last_watched'], { zone: 'utc' }).setZone('America/Los_Angeles').toFormat('MMMM d, yyyy, h:mma')}</p>`,
|
description: `<p>${item['title']} (${item['year']})</p><p>Watched at: ${DateTime.fromISO(item['last_watched'], { zone: 'utc' }).setZone('America/Los_Angeles').toFormat('MMMM d, yyyy, h:mma')}</p>`,
|
||||||
type: 'movie',
|
|
||||||
image: `https://coryd.dev/media/movies/poster-${item['tmdb_id']}.jpg`,
|
image: `https://coryd.dev/media/movies/poster-${item['tmdb_id']}.jpg`,
|
||||||
backdrop: `https://coryd.dev/media/movies/backdrops/backdrop-${item['tmdb_id']}.jpg`,
|
backdrop: `https://coryd.dev/media/movies/backdrops/backdrop-${item['tmdb_id']}.jpg`,
|
||||||
plays: item['plays'],
|
plays: item['plays'],
|
||||||
collected: item['collected'],
|
collected: item['collected'],
|
||||||
favorite: item['favorite'],
|
favorite: item['favorite'],
|
||||||
|
rating: item['rating'],
|
||||||
|
type: 'movie'
|
||||||
}
|
}
|
||||||
return movie
|
return movie
|
||||||
}).filter(movie => watched ? movie['lastWatched'] : !movie['lastWatched'])
|
}).filter(movie => watched ? movie['lastWatched'] : !movie['lastWatched'])
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
{%- assign bookData = books | bookStatus: 'finished' | bookFinishedYear: year -%}
|
{%- assign bookData = books | bookStatus: 'finished' | bookFinishedYear: year | bookSortDescending -%}
|
||||||
{%- capture currentYear -%}{% currentYear %}{%- endcapture -%}
|
{%- capture currentYear -%}{% currentYear %}{%- endcapture -%}
|
||||||
{%- assign yearString = year | append: '' -%}
|
{%- assign yearString = year | append: '' -%}
|
||||||
{%- assign currentYearString = currentYear | append: '' -%}
|
{%- assign currentYearString = currentYear | append: '' -%}
|
||||||
|
|
|
@ -16,8 +16,13 @@
|
||||||
</image>
|
</image>
|
||||||
{% for entry in entries limit: 20 -%}
|
{% for entry in entries limit: 20 -%}
|
||||||
{% assign author = entry.url | stripUtm | authorLookup %}
|
{% assign author = entry.url | stripUtm | authorLookup %}
|
||||||
|
{% assign rating = entry.rating %}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ entry.title | escape }}{% if author %} via {{ author }}{% endif %}</title>
|
<title>
|
||||||
|
{{ entry.title | escape }}
|
||||||
|
{% if author %} via {{ author }}{% endif %}
|
||||||
|
{% if rating %} ({{ rating }}){% endif %}
|
||||||
|
</title>
|
||||||
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
||||||
<pubDate>{{ entry.date | stringToRFC822Date }}</pubDate>
|
<pubDate>{{ entry.date | stringToRFC822Date }}</pubDate>
|
||||||
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="media-grid {% if shape == 'square' %}square{% else %}vertical{% endif %}">
|
<div class="media-grid {% if shape == 'square' %}square{% else %}vertical{% endif %}">
|
||||||
{% for item in media limit: count %}
|
{% for item in media limit: count %}
|
||||||
{% assign alt = item.alt | strip | escape %}
|
{% assign alt = item.alt | strip | escape %}
|
||||||
{% assign hasMeta = item.type != 'book' and item.type != 'movie' %}
|
{% assign hasMeta = item.type != 'book' %}
|
||||||
<a href="{{ item.url | stripUtm }}" title="{{ alt }}">
|
<a href="{{ item.url | stripUtm }}" title="{{ alt }}">
|
||||||
<div class="item-wrapper{% if hasMeta %} shadow{% endif %}">
|
<div class="item-wrapper{% if hasMeta %} shadow{% endif %}">
|
||||||
{% if hasMeta %}
|
{% if hasMeta %}
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{% capture alt %}{{ movie.title | escape }} ({{ movie.year }}){% endcapture %}
|
{% capture alt %}{{ movie.title | escape }} ({{ movie.year }}){% endcapture %}
|
||||||
<a href="{{ movie.url }}">
|
<a href="{{ movie.url }}">
|
||||||
<div class="watching hero shadow">
|
<div class="watching hero shadow">
|
||||||
<span>{{ movie.title }} ({{ movie.year }})</span>
|
<div class="meta-text">
|
||||||
|
<div class="header">{{ movie.title }} ({{ movie.year }})</div>
|
||||||
|
<div class="subheader">Last watched @ {{ movie.dateAdded | date: "%B %e, %Y" }}</div>
|
||||||
|
</div>
|
||||||
<img src="https://coryd.dev/.netlify/images/?url={{ movie.backdrop }}&fit=cover&w=1200&h=675&fm=webp&q=80" alt="{{ alt }}" loading="eager" decoding="async" width="1200" height="765" />
|
<img src="https://coryd.dev/.netlify/images/?url={{ movie.backdrop }}&fit=cover&w=1200&h=675&fm=webp&q=80" alt="{{ alt }}" loading="eager" decoding="async" width="1200" height="765" />
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
|
@ -7,13 +7,28 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
span {
|
div {
|
||||||
color: white;
|
&.meta-text{
|
||||||
font-weight: var(--font-weight-bold);
|
color: white;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: var(--sizing-sm);
|
left: var(--sizing-sm);
|
||||||
bottom: var(--sizing-md);
|
bottom: var(--sizing-lg);
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
|
& .header {
|
||||||
|
font-weight: var(--font-weight-bold);
|
||||||
|
}
|
||||||
|
|
||||||
|
& .subheader {
|
||||||
|
font-size: var(--font-size-sm);
|
||||||
|
}
|
||||||
|
|
||||||
|
& .header,
|
||||||
|
& .subheader {
|
||||||
|
line-height: 1.5;
|
||||||
|
text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& img {
|
& img {
|
||||||
|
|
|
@ -3,7 +3,7 @@ layout: null
|
||||||
eleventyExcludeFromCollections: true
|
eleventyExcludeFromCollections: true
|
||||||
permalink: /feeds/books
|
permalink: /feeds/books
|
||||||
---
|
---
|
||||||
{%- assign bookData = books | bookStatus: 'started' | reverse -%}
|
{%- assign bookData = books | bookStatus: 'finished' | bookSortDescending -%}
|
||||||
{% render "partials/feeds/rss.liquid"
|
{% render "partials/feeds/rss.liquid"
|
||||||
permalink:"/feeds/books"
|
permalink:"/feeds/books"
|
||||||
title:"Books • Cory Dransfeldt"
|
title:"Books • Cory Dransfeldt"
|
||||||
|
|
Reference in a new issue