diff --git a/config/collections/index.js b/config/collections/index.js index 257aa0f4..06d673fe 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -18,8 +18,7 @@ const normalizeWord = (word) => { 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 ` : '' + return '' } export const processContent = (collection) => { @@ -88,8 +87,6 @@ export const processContent = (collection) => { items.forEach((item) => { let attribution 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 if (item?.['authors']?.['mastodon']) { @@ -111,8 +108,6 @@ 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 - if (item?.['artistUrl']) content['url'] = `${item['artistUrl']}?t=${DateTime.fromISO(item['date']).toMillis()}#concerts` if (item?.['description']) { content['description'] = `${item['description'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}` } else if (item?.['notes']) { @@ -140,8 +135,6 @@ export const processContent = (collection) => { 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(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(pages, (item) => item.title, (item) => item.date) diff --git a/config/filters/feeds.js b/config/filters/feeds.js index f423eb12..e2b15c66 100644 --- a/config/filters/feeds.js +++ b/config/filters/feeds.js @@ -71,7 +71,6 @@ export default { if (rating) processedEntry['rating'] = rating if (tags) processedEntry['tags'] = tags - if (type === 'album-release' && artist) processedEntry['title'] = `${title} by ${artist}` if (entry) posts.push(processedEntry) }) diff --git a/package-lock.json b/package-lock.json index 4ebec743..85755699 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.10.0", + "version": "24.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.10.0", + "version": "24.11.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index aa9d234f..fd11a0d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.10.0", + "version": "24.11.0", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/assets/styles/pages/feeds.css b/src/assets/styles/pages/feeds.css index b31cc7b1..24d99ae9 100644 --- a/src/assets/styles/pages/feeds.css +++ b/src/assets/styles/pages/feeds.css @@ -43,5 +43,6 @@ & footer { padding-bottom: var(--spacing-3xl); + width: unset; } } \ No newline at end of file diff --git a/src/data/concerts.js b/src/data/concerts.js index f9d58dcb..533af1a1 100644 --- a/src/data/concerts.js +++ b/src/data/concerts.js @@ -57,7 +57,6 @@ const processConcerts = (concerts) => { boundingBox: concert['bounding_box'], notes: concert['venue_notes'] }, - description: 'I went to (yet another) concert!', notes: concert['concert_notes'], artist: concert['artist'] ? { name: concert['artist_name'],