feat: syndicated concert hashtags
This commit is contained in:
parent
ded6093fd6
commit
ef89b68251
3 changed files with 37 additions and 40 deletions
|
@ -3,40 +3,23 @@ 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 wordMap = {
|
||||||
const words = tag.split(' ')
|
'ai': 'AI',
|
||||||
const hashtag = words.map(word => {
|
'css': 'CSS',
|
||||||
const normalizedWord = word.toLowerCase()
|
'ios': 'iOS',
|
||||||
const wordMap = {
|
'javascript': 'JavaScript',
|
||||||
'ai': 'AI',
|
'macos': 'macOS',
|
||||||
'css': 'CSS',
|
'tv': 'TV'
|
||||||
'ios': 'iOS',
|
}
|
||||||
'javascript': 'JavaScript',
|
return wordMap[word.toLowerCase()] || word.charAt(0).toUpperCase() + word.slice(1)
|
||||||
'macos': 'macOS',
|
|
||||||
'tv': 'TV'
|
|
||||||
}
|
|
||||||
if (wordMap[normalizedWord]) return wordMap[normalizedWord]
|
|
||||||
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
|
||||||
|
@ -123,7 +107,7 @@ export const processContent = (collection) => {
|
||||||
// set url for posts - identified as slugs here
|
// set url for posts - identified as slugs here
|
||||||
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
|
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
|
||||||
|
|
||||||
// link to artist concerts section if available - artistUrl is only present on concert objects here
|
// link to artist concerts section if available - artistUrl is only present on concert objects here
|
||||||
if (item?.['artistUrl']) content['url'] = `${item['artistUrl']}#concerts`
|
if (item?.['artistUrl']) content['url'] = `${item['artistUrl']}#concerts`
|
||||||
if (item?.['description']) {
|
if (item?.['description']) {
|
||||||
content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...<br/><br/>`
|
content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...<br/><br/>`
|
||||||
|
@ -206,4 +190,17 @@ 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
10
package-lock.json
generated
|
@ -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": {
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Reference in a new issue