chore: last episode by date
This commit is contained in:
parent
a856969fff
commit
bf35b44f7a
4 changed files with 9 additions and 5 deletions
|
@ -259,5 +259,9 @@ export default {
|
||||||
return `${allButLast} and ${last}`
|
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']}`
|
lastWatchedEpisode: (episodes) => {
|
||||||
|
if (!episodes.length) return
|
||||||
|
const sortedEpisodes = episodes.sort((a, b) => new Date(a.last_watched_at) - new Date(b.last_watched_at))
|
||||||
|
return `S${sortedEpisodes[sortedEpisodes.length - 1]['season_number']}E${sortedEpisodes[sortedEpisodes.length - 1]['episode_number']}`
|
||||||
|
}
|
||||||
}
|
}
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.6.5",
|
"version": "21.6.6",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.6.5",
|
"version": "21.6.6",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.6.5",
|
"version": "21.6.6",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -37,7 +37,7 @@ schema: show
|
||||||
{%- if lastWatched -%}
|
{%- if lastWatched -%}
|
||||||
{%- capture lastWatchedText -%}
|
{%- capture lastWatchedText -%}
|
||||||
{%- if show.episodes -%}
|
{%- if show.episodes -%}
|
||||||
I last watched <strong class="highlight-text">{{ show.episodes | lastEpisode }}</strong> on {{ lastWatched | date: "%B %e, %Y" }}.
|
I last watched <strong class="highlight-text">{{ show.episodes | lastWatchedEpisode }}</strong> on {{ lastWatched | date: "%B %e, %Y" }}.
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
Last watched on {{ lastWatched | date: "%B %e, %Y" }}.
|
Last watched on {{ lastWatched | date: "%B %e, %Y" }}.
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
Reference in a new issue