diff --git a/config/collections/index.js b/config/collections/index.js index bfb1a37a..257aa0f4 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -89,6 +89,7 @@ export const processContent = (collection) => { 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']) { @@ -113,9 +114,9 @@ export const processContent = (collection) => { // 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(' ').slice(0, 25).join(' ')}...` + content['description'] = `${item['description'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}` } else if (item?.['notes']) { - content['notes'] = `${item['notes'].split(' ').slice(0, 25).join(' ')}...` + content['notes'] = `${item['notes'].split(' ').length >= 25 ? item['description'].split(' ').slice(0, 25).join(' ') + '...' : item['description']}` } else { content['description'] = '' } diff --git a/config/filters/feeds.js b/config/filters/feeds.js index 1fb82f8f..f423eb12 100644 --- a/config/filters/feeds.js +++ b/config/filters/feeds.js @@ -71,12 +71,7 @@ export default { if (rating) processedEntry['rating'] = rating if (tags) processedEntry['tags'] = tags - if (type === 'album-release') { - if (artist) processedEntry['title'] = `${title} by ${artist}` - processedEntry['excerpt'] = 'Check out the new release!' - processedEntry['content'] = 'Check out the new release!' - } - + 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 c34aacdc..0de3e206 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.8.3", + "version": "24.8.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.8.3", + "version": "24.8.4", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", @@ -30,7 +30,7 @@ "markdown-it": "^14.1.0", "markdown-it-anchor": "^9.2.0", "markdown-it-footnote": "^4.0.0", - "postcss": "^8.4.45", + "postcss": "^8.4.47", "postcss-cli": "^11.0.0", "postcss-import": "^16.1.0", "postcss-import-ext-glob": "^2.1.1", @@ -3261,9 +3261,9 @@ } }, "node_modules/postcss": { - "version": "8.4.45", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.45.tgz", - "integrity": "sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==", + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", "dev": true, "funding": [ { @@ -3282,8 +3282,8 @@ "license": "MIT", "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" diff --git a/package.json b/package.json index b83b7175..f3fb3f22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.8.3", + "version": "24.8.4", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { @@ -46,7 +46,7 @@ "markdown-it": "^14.1.0", "markdown-it-anchor": "^9.2.0", "markdown-it-footnote": "^4.0.0", - "postcss": "^8.4.45", + "postcss": "^8.4.47", "postcss-cli": "^11.0.0", "postcss-import": "^16.1.0", "postcss-import-ext-glob": "^2.1.1", diff --git a/src/data/albumReleases.js b/src/data/albumReleases.js index b665f6fc..1de7c8a5 100644 --- a/src/data/albumReleases.js +++ b/src/data/albumReleases.js @@ -30,6 +30,7 @@ const fetchAlbumReleases = async () => { artist: album['artist_name'], title: album['name'], date: releaseDate.toLocaleString(DateTime.DATE_FULL), + description: 'Check out the new release!', url: album['release_link'], image: album['art'] ? `/${album['art']}` : '', total_plays: album['total_plays'], diff --git a/src/data/concerts.js b/src/data/concerts.js index b20bfd54..f9d58dcb 100644 --- a/src/data/concerts.js +++ b/src/data/concerts.js @@ -47,6 +47,7 @@ const fetchAllConcerts = async () => { const processConcerts = (concerts) => { return concerts.map(concert => ({ id: concert['id'], + type: 'concert', date: concert['date'], artistNameString: concert['artist_name_string'], venue: { @@ -56,6 +57,7 @@ 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'],