chore: property names
This commit is contained in:
parent
026e5892b2
commit
cbbd442d64
3 changed files with 6 additions and 9 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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
|
||||
}))
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue