From ef89b6825139c4e3cd63bd7109523fb040aa12f5 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 9 Aug 2024 12:19:22 -0700 Subject: [PATCH] feat: syndicated concert hashtags --- config/collections/index.js | 65 ++++++++++++++++++------------------- package-lock.json | 10 +++--- package.json | 2 +- 3 files changed, 37 insertions(+), 40 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index 6754ce49..4de7f9d4 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -3,40 +3,23 @@ import ics from 'ics' const BASE_URL = 'https://coryd.dev' -const tagsToHashtags = (tags) => { - const hashtags = tags.map(tag => { - const words = tag.split(' ') - const hashtag = words.map(word => { - const normalizedWord = word.toLowerCase() - const wordMap = { - 'ai': 'AI', - 'css': 'CSS', - 'ios': 'iOS', - 'javascript': 'JavaScript', - 'macos': 'macOS', - 'tv': 'TV' - } - if (wordMap[normalizedWord]) return wordMap[normalizedWord] - return word.charAt(0).toUpperCase() + word.slice(1) - }).join('') - return '#' + hashtag - }) - return hashtags.join(' ') +const normalizeWord = (word) => { + const wordMap = { + 'ai': 'AI', + 'css': 'CSS', + 'ios': 'iOS', + 'javascript': 'JavaScript', + 'macos': 'macOS', + 'tv': 'TV' + } + return wordMap[word.toLowerCase()] || word.charAt(0).toUpperCase() + word.slice(1) } -export const popularPosts = (collection) => { - const collectionData = collection.getAll()[0] - const { data } = collectionData - const { posts, analytics } = data - - 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) - }) +const tagsToHashtags = (item) => { + const tags = item?.tags || [] + if (tags.length) return tags.map(tag => '#' + tag.split(' ').map(normalizeWord).join('')).join(' ') + const artistName = item?.artistName || item?.artist?.name + return artistName ? `#${artistName.charAt(0).toUpperCase() + artistName.slice(1).toLowerCase()} #Music #Concert ` : '' } export const processContent = (collection) => { @@ -103,6 +86,7 @@ export const processContent = (collection) => { if (items) { items.forEach((item) => { let attribution + let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : '' // link attribution if properties exist if (item?.['authors']?.['mastodon']) { @@ -114,7 +98,7 @@ export const processContent = (collection) => { const content = { 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 @@ -123,7 +107,7 @@ export const processContent = (collection) => { // set url for posts - identified as slugs here 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?.['description']) { content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...

` @@ -206,4 +190,17 @@ export const albumReleasesCalendar = (collection) => { } 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) + }) } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 45a2d745..d5aca674 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.7.0", + "version": "21.7.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.7.0", + "version": "21.7.1", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", @@ -517,9 +517,9 @@ "peer": true }, "node_modules/@types/node": { - "version": "22.1.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.1.0.tgz", - "integrity": "sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==", + "version": "22.2.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.2.0.tgz", + "integrity": "sha512-bm6EG6/pCpkxDf/0gDNDdtDILMOHgaQBVOJGdwsqClnxA3xL6jtMv76rLBc006RVMWbmaf0xbmom4Z/5o2nRkQ==", "dev": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 2a01acd0..21f4d950 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.7.0", + "version": "21.7.1", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": {