feat: movie tags
This commit is contained in:
parent
4132c92186
commit
5bc0c97537
6 changed files with 21 additions and 7 deletions
|
@ -51,6 +51,7 @@ export const tagMap = (collection) => {
|
||||||
const posts = collectionData.data.collections.posts
|
const posts = collectionData.data.collections.posts
|
||||||
const links = collectionData.data.collections.links
|
const links = collectionData.data.collections.links
|
||||||
const books = collectionData.data.books
|
const books = collectionData.data.books
|
||||||
|
const movies = collectionData.data.movies
|
||||||
|
|
||||||
if (posts) {
|
if (posts) {
|
||||||
posts.forEach((post) => {
|
posts.forEach((post) => {
|
||||||
|
@ -81,6 +82,15 @@ export const tagMap = (collection) => {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (movies) {
|
||||||
|
movies.forEach((movie) => {
|
||||||
|
const tagString = movie['tags']?.map((tag) => tagAliases[tag.toLowerCase()])
|
||||||
|
.join(' ')
|
||||||
|
.trim()
|
||||||
|
if (tagString) tags[movie.url] = tagString.replace(/\s+/g,' ')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
return tags
|
return tags
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
export default {
|
export default {
|
||||||
'11ty': '#Eleventy',
|
'11ty': '#Eleventy',
|
||||||
accessibility: '#Accessibility',
|
accessibility: '#Accessibility',
|
||||||
|
action: '#Action',
|
||||||
|
adventure: '#Adventure',
|
||||||
ai: '#AI',
|
ai: '#AI',
|
||||||
'black metal': '#BlackMetal',
|
'black metal': '#BlackMetal',
|
||||||
blogging: '#Blogging',
|
blogging: '#Blogging',
|
||||||
|
@ -19,6 +21,7 @@ export default {
|
||||||
grindcore: '#Grindcore',
|
grindcore: '#Grindcore',
|
||||||
health: '#Health',
|
health: '#Health',
|
||||||
'indie web': '#IndieWeb #SmallWeb',
|
'indie web': '#IndieWeb #SmallWeb',
|
||||||
|
'horror': '#Horror',
|
||||||
ios: '#iOS #Apple',
|
ios: '#iOS #Apple',
|
||||||
javascript: '#JavaScript',
|
javascript: '#JavaScript',
|
||||||
'last.fm': '#Music',
|
'last.fm': '#Music',
|
||||||
|
@ -36,6 +39,7 @@ export default {
|
||||||
rss: '#RSS',
|
rss: '#RSS',
|
||||||
shoegaze: '#Shoegaze',
|
shoegaze: '#Shoegaze',
|
||||||
scifi: '#SciFi',
|
scifi: '#SciFi',
|
||||||
|
'science-fiction': '#SciFi',
|
||||||
'social media': '#SocialMedia',
|
'social media': '#SocialMedia',
|
||||||
spotify: '#Music',
|
spotify: '#Music',
|
||||||
'surveillance capitalism': '#SurveillanceCapitalism',
|
'surveillance capitalism': '#SurveillanceCapitalism',
|
||||||
|
@ -43,6 +47,7 @@ export default {
|
||||||
tech: '#Tech',
|
tech: '#Tech',
|
||||||
television: '#TV',
|
television: '#TV',
|
||||||
technology: '#Tech',
|
technology: '#Tech',
|
||||||
|
thriller: '#Thriller',
|
||||||
tv: '#TV',
|
tv: '#TV',
|
||||||
'web components': '#WebComponents'
|
'web components': '#WebComponents'
|
||||||
}
|
}
|
|
@ -60,11 +60,11 @@ export default {
|
||||||
return visitors(b) - visitors(a)
|
return visitors(b) - visitors(a)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
tagLookup: (url, tagMap) => {
|
tagLookup: (url, tagMap) => {
|
||||||
if (!url) return
|
if (!url) return
|
||||||
if (url.includes('openlibrary.org')) return `#Books #NowReading ${tagMap[url]}`
|
if (url.includes('openlibrary.org')) return `#Books #NowReading ${tagMap[url]}`.trim()
|
||||||
if (url.includes('trakt.tv')) return '#Movies #Watching #Trakt'
|
if (url.includes('trakt.tv')) return `#Movies #Watching ${tagMap[url]}`.trim()
|
||||||
return tagMap[url] || ''
|
return tagMap[url] || ''
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "12.4.0",
|
"version": "12.5.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": {
|
||||||
|
|
|
@ -12,9 +12,9 @@ export default async function () {
|
||||||
id: item['movie']['ids']['trakt'],
|
id: item['movie']['ids']['trakt'],
|
||||||
tmdbId: item['movie']['ids']['tmdb'],
|
tmdbId: item['movie']['ids']['tmdb'],
|
||||||
description: `${item['movie']['overview']}<br/><br/>`,
|
description: `${item['movie']['overview']}<br/><br/>`,
|
||||||
|
tags: item['movie']['genres'],
|
||||||
type: 'movie',
|
type: 'movie',
|
||||||
}
|
}
|
||||||
if (process.env.ELEVENTY_PRODUCTION === 'false') movie.image = 'https://cd-movies.b-cdn.net'
|
|
||||||
return movie;
|
return movie;
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ export default async function () {
|
||||||
})
|
})
|
||||||
const tmdbData = await tmdbRes
|
const tmdbData = await tmdbRes
|
||||||
const posterPath = tmdbData['poster_path']
|
const posterPath = tmdbData['poster_path']
|
||||||
movie.image = `https://cd-movies.b-cdn.net/t/p/w500${posterPath}`
|
movie.image = `https://image.tmdb.org/t/p/w500/${posterPath}`
|
||||||
}
|
}
|
||||||
return movies;
|
return movies;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,6 @@ export default async function () {
|
||||||
type: 'tv',
|
type: 'tv',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (process.env.ELEVENTY_PRODUCTION === 'false') episodeData[episodeData.length - 1].image = 'https://cd-movies.b-cdn.net'
|
|
||||||
})
|
})
|
||||||
|
|
||||||
return episodeData.reverse()
|
return episodeData.reverse()
|
||||||
|
|
Reference in a new issue