chore: cleanup

This commit is contained in:
Cory Dransfeldt 2024-09-15 23:40:16 -07:00
parent 4770654b4e
commit ade57be4a5
No known key found for this signature in database
6 changed files with 5 additions and 13 deletions

View file

@ -18,8 +18,7 @@ const normalizeWord = (word) => {
const tagsToHashtags = (item) => { const tagsToHashtags = (item) => {
const tags = item?.tags || [] const tags = item?.tags || []
if (tags.length) return tags.map(tag => '#' + tag.split(' ').map(normalizeWord).join('')).join(' ') if (tags.length) return tags.map(tag => '#' + tag.split(' ').map(normalizeWord).join('')).join(' ')
const artistName = item?.artistName || item?.artist?.name return ''
return artistName ? `#${artistName.charAt(0).toUpperCase() + artistName.slice(1).toLowerCase()} #Music #Concert ` : ''
} }
export const processContent = (collection) => { export const processContent = (collection) => {
@ -88,8 +87,6 @@ export const processContent = (collection) => {
items.forEach((item) => { items.forEach((item) => {
let attribution let attribution
let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : '' let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : ''
if (item['type'] === 'album-release') hashTags = ' #Music #NewMusic'
if (item['type'] === 'concert') hashTags = ' #Music #Concert'
// link attribution if properties exist // link attribution if properties exist
if (item?.['authors']?.['mastodon']) { if (item?.['authors']?.['mastodon']) {
@ -111,8 +108,6 @@ 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
if (item?.['artistUrl']) content['url'] = `${item['artistUrl']}?t=${DateTime.fromISO(item['date']).toMillis()}#concerts`
if (item?.['description']) { if (item?.['description']) {
content['description'] = `${item['description'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}` content['description'] = `${item['description'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}`
} else if (item?.['notes']) { } else if (item?.['notes']) {
@ -140,8 +135,6 @@ export const processContent = (collection) => {
addContent(links, '🔗', (item) => item['title'], (item) => item['date']) addContent(links, '🔗', (item) => item['title'], (item) => item['date'])
addContent(books.all.filter((book) => book['status'] === 'finished'), '📖', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['date']) addContent(books.all.filter((book) => book['status'] === 'finished'), '📖', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['date'])
addContent(movies['movies'], '🎥', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['lastWatched']) addContent(movies['movies'], '🎥', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['lastWatched'])
addContent(concerts, '🎤', (item) => `${item['artistNameString'] ? item['artistNameString'] : item['artist']['name']} at ${item['venue']['name'].split(',')[0].trim()}`, (item) => item['date'])
addContent([...albumReleases['current']].reverse(), '📆', (item) => `${item['title']} by ${item['artist']}`, (item) => item['release_date'])
addSiteMapContent(posts, (item) => item.title, (item) => item.date) addSiteMapContent(posts, (item) => item.title, (item) => item.date)
addSiteMapContent(pages, (item) => item.title, (item) => item.date) addSiteMapContent(pages, (item) => item.title, (item) => item.date)

View file

@ -71,7 +71,6 @@ export default {
if (rating) processedEntry['rating'] = rating if (rating) processedEntry['rating'] = rating
if (tags) processedEntry['tags'] = tags if (tags) processedEntry['tags'] = tags
if (type === 'album-release' && artist) processedEntry['title'] = `${title} by ${artist}`
if (entry) posts.push(processedEntry) if (entry) posts.push(processedEntry)
}) })

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.10.0", "version": "24.11.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.10.0", "version": "24.11.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

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

View file

@ -43,5 +43,6 @@
& footer { & footer {
padding-bottom: var(--spacing-3xl); padding-bottom: var(--spacing-3xl);
width: unset;
} }
} }

View file

@ -57,7 +57,6 @@ const processConcerts = (concerts) => {
boundingBox: concert['bounding_box'], boundingBox: concert['bounding_box'],
notes: concert['venue_notes'] notes: concert['venue_notes']
}, },
description: 'I went to (yet another) concert!',
notes: concert['concert_notes'], notes: concert['concert_notes'],
artist: concert['artist'] ? { artist: concert['artist'] ? {
name: concert['artist_name'], name: concert['artist_name'],