chore: property names

This commit is contained in:
Cory Dransfeldt 2024-08-01 13:26:55 -07:00
parent 026e5892b2
commit cbbd442d64
No known key found for this signature in database
3 changed files with 6 additions and 9 deletions

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "21.1.1",
"version": "21.1.2",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {

View file

@ -46,26 +46,23 @@ const fetchAllConcerts = async () => {
const processConcerts = (concerts) => {
return concerts.map(concert => ({
id: concert['id'],
date: concert['date'],
artist_name_string: concert['artist_name_string'],
artistNameString: concert['artist_name_string'],
venue: {
id: concert['venue'],
name: concert['venue_name'],
latitude: concert['latitude'],
longitude: concert['longitude'],
bounding_box: concert['bounding_box'],
boundingBox: concert['bounding_box'],
notes: concert['venue_notes']
},
notes: concert['concert_notes'],
artist: concert['artist'] ? {
id: concert['artist'],
name: concert['artist_name'],
mbid: concert['artist_mbid'],
country: parseCountryField(concert['artist_country'])
} : null,
url: `/concerts/${concert['id']}`,
artist_url: concert['artist'] ? `/music/artists/${sanitizeMediaString(concert['artist_name'])}-${sanitizeMediaString(parseCountryField(concert['artist_country']))}` : null
artistUrl: concert['artist'] ? `/music/artists/${sanitizeMediaString(concert['artist_name'])}-${sanitizeMediaString(parseCountryField(concert['artist_country']))}` : null
}))
}