--- import { parseISO, format } from "date-fns"; import Layout from "@layouts/Layout.astro"; import Modal from "@components/blocks/Modal.astro"; import ToggleContent from "@components/utils/ToggleContent.astro"; import AssociatedMedia from "@components/blocks/AssociatedMedia.astro"; import icons from "@cdransf/astro-tabler-icons"; import { fetchGlobalData } from "@utils/data/global/index.js"; import { parseCountries } from "@utils/helpers/media.js"; import { md } from "@utils/helpers/general.js"; const { artist, globals } = await fetchGlobalData(Astro, Astro.url.pathname); if (!artist) return Astro.redirect("/404", 404); const { IconArrowLeft, IconHeart, IconNeedle, IconMapPin, IconDeviceSpeaker, } = icons; const pageTitle = `${artist.name} / Music`; const description = artist.description || `Learn more about ${artist.name}`; const alt = `${artist.name} / ${parseCountries(artist.country)}`; const playLabel = artist.total_plays === 1 ? "play" : "plays"; ---
Back to music
{alt}
{artist.name}
{parseCountries(artist.country)} { artist.favorite && (
This is one of my favorite artists! ) } { artist.tattoo && (
I have a tattoo inspired by this artist! ) } { artist.total_plays > 0 && ( {artist.total_plays} {playLabel} ) } {artist.emoji || artist.genre_emoji} {artist.genre.name}
{ artist.description && ( <>

Overview

) } { artist.concerts && ( <>
I've seen this artist live!
    {artist.concerts.map((concert, index) => (
  • On{" "} {format(parseISO(concert.date), "MMM d, yyyy")} {concert.venue_name_short && ( <> {" "} at{" "} {concert.venue_latitude && concert.venue_longitude ? ( {concert.venue_name_short} ) : ( {concert.venue_name_short} )} )} {concert.notes && ( <> {" "} )}
  • ))}
) } { artist.albums && ( <> {artist.albums.map((album) => ( ))}
Album Plays Year
{album.name} {album.total_plays} {album.release_year}

These are the albums by this artist that are in my collection, not necessarily a comprehensive discography.

) }