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", "name": "coryd.dev",
"version": "21.1.1", "version": "21.1.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.1.1", "version": "21.1.2",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

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

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