feat: show unique shows on now page

This commit is contained in:
Cory Dransfeldt 2023-09-05 11:04:10 -07:00
parent 55cf750643
commit 920c44f6d9
No known key found for this signature in database
2 changed files with 59 additions and 13 deletions

View file

@ -23,7 +23,7 @@ module.exports = {
if (item.type === 'tv') { if (item.type === 'tv') {
normalized['title'] = item['title'] normalized['title'] = item['title']
normalized['alt'] = `${item['title']} from ${item['name']}` normalized['alt'] = `${item['title']} from ${item['name']}`
normalized['subtext'] = `${item.name} • <strong>${item.episode}</strong>` normalized['subtext'] = item['subtext']
} }
return normalized return normalized
}), }),

View file

@ -15,18 +15,64 @@ module.exports = async function () {
}, },
}).catch() }).catch()
const data = await res const data = await res
return data.map((episode) => { const episodes = []
return { data.reverse().forEach((episode) => {
name: episode['show']['title'], if (episodes.find((e) => e.name === episode?.['show']?.['title'])) {
title: episode['episode']['title'], // cache the matched episode reference
url: `https://trakt.tv/shows/${episode['show']['ids']['slug']}/seasons/${episode['episode']['season']}/episodes/${episode['episode']['number']}`, const matchedEpisode = episodes.find((e) => e.name === episode?.['show']?.['title'])
episode: `S${episode['episode']['season']}E${episode['episode']['number']}`,
image: // remove the matched episode from the array
`https://cdn.coryd.dev/tv/${episode['show']['title'] episodes.splice(
.replace(':', '') episodes.findIndex((e) => e.name === episode['show']['title']),
.replace(/\s+/g, '-') 1
.toLowerCase()}.jpg` || 'https://cdn.coryd.dev/tv/missing-tv.jpg', )
type: 'tv',
// populate the subtext to show the appropriate range if it spans multiple seasons
const subtext =
matchedEpisode['season'] === episode['episode']['season']
? `S${matchedEpisode['season']}E${
matchedEpisode['startingEpisode'] || matchedEpisode['episode']
} - ${episode['episode']['number']}`
: `S${matchedEpisode['season']}E${
matchedEpisode['startingEpisode'] || matchedEpisode['episode']
} - S${episode['episode']['season']}E${episode['episode']['number']}`
// push the new episode to the array
episodes.push({
name: matchedEpisode['name'],
title: matchedEpisode['title'],
url: `https://trakt.tv/shows/${matchedEpisode['slug']}`,
subtext,
image:
`https://cdn.coryd.dev/tv/${matchedEpisode['name']
.replace(':', '')
.replace(/\s+/g, '-')
.toLowerCase()}.jpg` || 'https://cdn.coryd.dev/tv/missing-tv.jpg',
startingEpisode: matchedEpisode['episode'],
episode: episode['episode']['number'],
season: episode['episode']['season'],
type: 'tv',
})
} else {
// if an episode with the same show name doesn't exist, push it to the array
episodes.push({
name: episode['show']['title'],
title: episode['episode']['title'],
url: `https://trakt.tv/shows/${episode['show']['ids']['slug']}/seasons/${episode['episode']['season']}/episodes/${episode['episode']['number']}`,
subtext: `${episode['show']['title']} • S${episode['episode']['season']}E${episode['episode']['number']}`,
image:
`https://cdn.coryd.dev/tv/${episode['show']['title']
.replace(':', '')
.replace(/\s+/g, '-')
.toLowerCase()}.jpg` || 'https://cdn.coryd.dev/tv/missing-tv.jpg',
episode: episode['episode']['number'],
season: episode['episode']['season'],
slug: episode['show']['ids']['slug'],
type: 'tv',
})
} }
}) })
// return a reverse sorted array of episodes to match the watch order
return episodes.reverse()
} }