chore: those names make more sense
This commit is contained in:
parent
8310892e6c
commit
e0851c9e4d
1 changed files with 5 additions and 5 deletions
|
@ -6,14 +6,14 @@ const SUPABASE_KEY = process.env.SUPABASE_KEY
|
||||||
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY)
|
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY)
|
||||||
|
|
||||||
const deriveArtistName = (albumName, key) => {
|
const deriveArtistName = (albumName, key) => {
|
||||||
const normalizedInput = albumName.toLowerCase().replace(/[\s.]+/g, '-').replace(/[^a-z0-9-]/g, '')
|
const normalizedAlbumName = albumName.toLowerCase().replace(/[\s.]+/g, '-').replace(/[^a-z0-9-]/g, '')
|
||||||
if (key.endsWith(normalizedInput)) {
|
if (key.endsWith(normalizedAlbumName)) {
|
||||||
const nonMatchingPart = key.slice(0, key.length - normalizedInput.length).replace(/-$/, '')
|
const artistName = key.slice(0, key.length - normalizedAlbumName.length).replace(/-$/, '')
|
||||||
const capitalized = nonMatchingPart
|
const formattedArtistName = artistName
|
||||||
.split('-')
|
.split('-')
|
||||||
.map(part => part.charAt(0).toUpperCase() + part.slice(1))
|
.map(part => part.charAt(0).toUpperCase() + part.slice(1))
|
||||||
.join(' ')
|
.join(' ')
|
||||||
return capitalized
|
return formattedArtistName
|
||||||
} else {
|
} else {
|
||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue