diff --git a/config/collections/index.js b/config/collections/index.js index 5e4b34f3..6754ce49 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -46,7 +46,7 @@ export const processContent = (collection) => { let id = 0 const collectionData = collection.getAll()[0] const { data } = collectionData - const { posts, links, movies, books, pages, artists, genres, tv } = data + const { posts, links, movies, books, pages, artists, genres, tv, concerts } = data const parseDate = (date) => { if (!date) return null @@ -104,6 +104,7 @@ export const processContent = (collection) => { items.forEach((item) => { let attribution + // link attribution if properties exist if (item?.['authors']?.['mastodon']) { const mastoUrl = new URL(item['authors']['mastodon']) attribution = `${mastoUrl.pathname.replace('/', '')}@${mastoUrl.host}` @@ -115,10 +116,19 @@ export const processContent = (collection) => { url: `${BASE_URL}${item['url']}`, title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${item?.['tags']?.length > 0 ? ' ' + tagsToHashtags(item['tags']) : ''}` } + + // set url for link posts if (item?.['link']) content['url'] = item?.['link'] + + // 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']}#concerts` if (item?.['description']) { content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...

` + } else if (item?.['notes']) { + content['notes'] = `${item['notes'].split(' ').slice(0, 25).join(' ')}...

` } else { content['description'] = '' } @@ -140,6 +150,7 @@ 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']) addSiteMapContent(posts, (item) => item.title, (item) => item.date) addSiteMapContent(pages, (item) => item.title, (item) => item.date) diff --git a/package-lock.json b/package-lock.json index 4ea2ba6a..45a2d745 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.6.7", + "version": "21.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.6.7", + "version": "21.7.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 6b2bfebc..2a01acd0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.6.7", + "version": "21.7.0", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/data/concerts.js b/src/data/concerts.js index 028d9102..b20bfd54 100644 --- a/src/data/concerts.js +++ b/src/data/concerts.js @@ -62,7 +62,7 @@ const processConcerts = (concerts) => { mbid: concert['artist_mbid'], country: parseCountryField(concert['artist_country']) } : null, - url: `/concerts/${concert['id']}`, + url: `/music/concerts?id=${concert['id']}`, artistUrl: concert['artist'] ? `/music/artists/${sanitizeMediaString(concert['artist_name'])}-${sanitizeMediaString(parseCountryField(concert['artist_country']))}` : null })).sort((a, b) => new Date(b['date']) - new Date(a['date'])) } diff --git a/src/pages/dynamic/music/artists/artist.html b/src/pages/dynamic/music/artists/artist.html index 82a58ed9..846deb84 100644 --- a/src/pages/dynamic/music/artists/artist.html +++ b/src/pages/dynamic/music/artists/artist.html @@ -64,7 +64,7 @@ schema: artist {%- endif -%} {%- if artist.concerts -%}
-

+

{% tablericon "device-speaker" "concert" %} I've seen this artist live!