feat: add artist page

This commit is contained in:
qvalentin 2024-06-08 15:16:13 +02:00
parent 0381b6e4ae
commit 840d23e931
11 changed files with 264 additions and 21 deletions

View file

@ -16,11 +16,7 @@ type Song struct {
Lyrics string
Credits map[string]string
About [2]string
Album struct {
URL string
Name string
Image string
}
Album AlbumPreview
}
type songResponse struct {
@ -38,10 +34,10 @@ type songResponse struct {
Image string `json:"cover_art_url"`
}
CustomPerformances []customPerformance `json:"custom_performances"`
WriterArtists []struct {
WriterArtists []struct {
Name string
} `json:"writer_artists"`
ProducerArtists []struct {
ProducerArtists []struct {
Name string
} `json:"producer_artists"`
}
@ -117,7 +113,8 @@ func (s *Song) parseSongData(doc *goquery.Document) error {
func joinNames(data []struct {
Name string
}) string {
},
) string {
var names []string
for _, hasName := range data {
names = append(names, hasName.Name)