feat: syndicated concert hashtags

This commit is contained in:
Cory Dransfeldt 2024-08-09 12:19:22 -07:00
parent ded6093fd6
commit ef89b68251
No known key found for this signature in database
3 changed files with 37 additions and 40 deletions

View file

@ -3,11 +3,7 @@ import ics from 'ics'
const BASE_URL = 'https://coryd.dev' const BASE_URL = 'https://coryd.dev'
const tagsToHashtags = (tags) => { const normalizeWord = (word) => {
const hashtags = tags.map(tag => {
const words = tag.split(' ')
const hashtag = words.map(word => {
const normalizedWord = word.toLowerCase()
const wordMap = { const wordMap = {
'ai': 'AI', 'ai': 'AI',
'css': 'CSS', 'css': 'CSS',
@ -16,27 +12,14 @@ const tagsToHashtags = (tags) => {
'macos': 'macOS', 'macos': 'macOS',
'tv': 'TV' 'tv': 'TV'
} }
if (wordMap[normalizedWord]) return wordMap[normalizedWord] return wordMap[word.toLowerCase()] || word.charAt(0).toUpperCase() + word.slice(1)
return word.charAt(0).toUpperCase() + word.slice(1)
}).join('')
return '#' + hashtag
})
return hashtags.join(' ')
} }
export const popularPosts = (collection) => { const tagsToHashtags = (item) => {
const collectionData = collection.getAll()[0] const tags = item?.tags || []
const { data } = collectionData if (tags.length) return tags.map(tag => '#' + tag.split(' ').map(normalizeWord).join('')).join(' ')
const { posts, analytics } = data const artistName = item?.artistName || item?.artist?.name
return artistName ? `#${artistName.charAt(0).toUpperCase() + artistName.slice(1).toLowerCase()} #Music #Concert ` : ''
return posts
.filter((post) => {
if (analytics.find((p) => p.page.includes(post.slug))) return true
})
.sort((a, b) => {
const visitors = (page) => analytics.filter((p) => p.page.includes(page.slug)).pop()?.visitors
return visitors(b) - visitors(a)
})
} }
export const processContent = (collection) => { export const processContent = (collection) => {
@ -103,6 +86,7 @@ export const processContent = (collection) => {
if (items) { if (items) {
items.forEach((item) => { items.forEach((item) => {
let attribution let attribution
let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : ''
// link attribution if properties exist // link attribution if properties exist
if (item?.['authors']?.['mastodon']) { if (item?.['authors']?.['mastodon']) {
@ -114,7 +98,7 @@ export const processContent = (collection) => {
const content = { const content = {
url: `${BASE_URL}${item['url']}`, url: `${BASE_URL}${item['url']}`,
title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${item?.['tags']?.length > 0 ? ' ' + tagsToHashtags(item['tags']) : ''}` title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`
} }
// set url for link posts // set url for link posts
@ -207,3 +191,16 @@ export const albumReleasesCalendar = (collection) => {
return value return value
} }
export const popularPosts = (collection) => {
const collectionData = collection.getAll()[0]
const { data } = collectionData
const { posts, analytics } = data
return posts
.filter((post) => analytics.find((p) => p.page.includes(post.slug)))
.sort((a, b) => {
const visitors = (page) => analytics.filter((p) => p.page.includes(page.slug)).pop()?.visitors
return visitors(b) - visitors(a)
})
}

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.7.0", "version": "21.7.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.7.0", "version": "21.7.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",
@ -517,9 +517,9 @@
"peer": true "peer": true
}, },
"node_modules/@types/node": { "node_modules/@types/node": {
"version": "22.1.0", "version": "22.2.0",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.1.0.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.2.0.tgz",
"integrity": "sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==", "integrity": "sha512-bm6EG6/pCpkxDf/0gDNDdtDILMOHgaQBVOJGdwsqClnxA3xL6jtMv76rLBc006RVMWbmaf0xbmom4Z/5o2nRkQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.7.0", "version": "21.7.1",
"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": {