fix: properly display starting episodes + seasons
This commit is contained in:
parent
54a253a4e6
commit
631a50f7bd
2 changed files with 11 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "4.7.0",
|
"version": "4.7.1",
|
||||||
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -3,7 +3,7 @@ import EleventyFetch from '@11ty/eleventy-fetch'
|
||||||
export default async function () {
|
export default async function () {
|
||||||
const TV_KEY = process.env.API_KEY_TRAKT
|
const TV_KEY = process.env.API_KEY_TRAKT
|
||||||
const MOVIEDB_KEY = process.env.API_KEY_MOVIEDB
|
const MOVIEDB_KEY = process.env.API_KEY_MOVIEDB
|
||||||
const url = 'https://api.trakt.tv/users/cdransf/history/shows?page=1&limit=36'
|
const url = 'https://api.trakt.tv/users/cdransf/history/shows?page=1&limit=50'
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
|
@ -17,13 +17,19 @@ export default async function () {
|
||||||
}).catch()
|
}).catch()
|
||||||
const data = await res
|
const data = await res
|
||||||
const episodeData = []
|
const episodeData = []
|
||||||
|
const startingEpisodes = []
|
||||||
|
const startingSeasons = []
|
||||||
data.reverse().forEach((episode) => {
|
data.reverse().forEach((episode) => {
|
||||||
const episodeNumber = episode['episode']['number']
|
const episodeNumber = episode['episode']['number']
|
||||||
const seasonNumber = episode['episode']['season']
|
const seasonNumber = episode['episode']['season']
|
||||||
|
if (!startingEpisodes.find((e) => e.show === episode['show']['title'])) { startingEpisodes.push({ show: episode['show']['title'], episode: episodeNumber }) }
|
||||||
|
if (!startingSeasons.find((e) => e.show === episode['show']['title'])) { startingSeasons.push({ show: episode['show']['title'], season: seasonNumber }) }
|
||||||
|
|
||||||
if (episodeData.find((e) => e.name === episode?.['show']?.['title'])) {
|
if (episodeData.find((e) => e.name === episode?.['show']?.['title'])) {
|
||||||
// cache the matched episode reference
|
// cache the matched episode reference
|
||||||
const matchedEpisode = episodeData.find((e) => e.name === episode?.['show']?.['title'])
|
const matchedEpisode = episodeData.find((e) => e.name === episode?.['show']?.['title'])
|
||||||
|
const startingEpisode = startingEpisodes.find((e) => e.show === episode['show']['title'])['episode']
|
||||||
|
const startingSeason = startingSeasons.find((e) => e.show === episode['show']['title'])['season']
|
||||||
|
|
||||||
// remove the matched episode from the array
|
// remove the matched episode from the array
|
||||||
episodeData.splice(
|
episodeData.splice(
|
||||||
|
@ -34,13 +40,10 @@ export default async function () {
|
||||||
// push the new episode to the array
|
// push the new episode to the array
|
||||||
episodeData.push({
|
episodeData.push({
|
||||||
name: matchedEpisode['name'],
|
name: matchedEpisode['name'],
|
||||||
title: matchedEpisode['title'],
|
|
||||||
url: `https://trakt.tv/shows/${episode['show']['ids']['slug']}`,
|
url: `https://trakt.tv/shows/${episode['show']['ids']['slug']}`,
|
||||||
subtext: `S${matchedEpisode['startingSeason'] || matchedEpisode['season']}E${
|
subtext: `S${startingSeason}E${startingEpisode} - S${episode['episode']['season']}E${episode['episode']['number']}`,
|
||||||
matchedEpisode['startingEpisode'] || matchedEpisode['episode']
|
startingEpisode,
|
||||||
} - S${episode['episode']['season']}E${episode['episode']['number']}`,
|
startingSeason,
|
||||||
startingEpisode: matchedEpisode['episode'],
|
|
||||||
startingSeason: matchedEpisode['season'],
|
|
||||||
episode: episodeNumber,
|
episode: episodeNumber,
|
||||||
season: seasonNumber,
|
season: seasonNumber,
|
||||||
id: episode['show']['ids']['trakt'],
|
id: episode['show']['ids']['trakt'],
|
||||||
|
|
Reference in a new issue