From a856969fff2c38cb640e36c1808f9e163f7c390e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 8 Aug 2024 17:53:56 -0700 Subject: [PATCH] feat: last watched episode on show page if available --- config/filters/index.js | 3 ++- package-lock.json | 4 ++-- package.json | 2 +- src/pages/dynamic/watching/show.html | 11 ++++++++++- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index 434b3512..7116f060 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -258,5 +258,6 @@ export default { return `${allButLast} and ${last}` }, - formatVenue: (venue) => venue.split(',')[0].trim() + formatVenue: (venue) => venue.split(',')[0].trim(), + lastEpisode: (episodes) => `S${episodes[episodes.length - 1]['season_number']}E${episodes[episodes.length - 1]['episode_number']}` } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index f1b8fb14..de40d6b3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.6.4", + "version": "21.6.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.6.4", + "version": "21.6.5", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index ed4b6a04..7b2d60e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.6.4", + "version": "21.6.5", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/pages/dynamic/watching/show.html b/src/pages/dynamic/watching/show.html index 49069c4b..90353ff8 100644 --- a/src/pages/dynamic/watching/show.html +++ b/src/pages/dynamic/watching/show.html @@ -34,7 +34,16 @@ schema: show />

{{ show.title }}{%- if show.year %} ({{ show.year }}){%- endif -%}

- {%- if lastWatched -%}

Last watched on {{ lastWatched | date: "%B %e, %Y" }}

{%- endif -%} + {%- if lastWatched -%} + {%- capture lastWatchedText -%} + {%- if show.episodes -%} + I last watched {{ show.episodes | lastEpisode }} on {{ lastWatched | date: "%B %e, %Y" }}. + {%- else -%} + Last watched on {{ lastWatched | date: "%B %e, %Y" }}. + {%- endif -%} + {%- endcapture -%} +

{{ lastWatchedText }}

+ {%- endif -%}

View on TMDB

{% if show.review %}