import truncateHtml from "truncate-html"; import { convert } from "html-to-text"; import { parseCountryField } from "./countries.js"; import { formatDate, md } from "./formatters.js"; import { ICON_MAP } from "./icons.js"; const warningBanner = `
`; const generateAssociatedMediaHTML = (data, isGenre = false) => { const sections = [ { key: "artists", icon: "headphones", category: "music", title: "Related Artist(s)", }, { key: "related_artists", icon: "headphones", category: "music", title: "Related Artist(s)", }, { key: "genres", icon: "headphones", category: "music", title: "Related Genre(s)", }, { key: "movies", icon: "film", category: "movies", title: "Related Movie(s)", }, { key: "related_movies", icon: "film", category: "movies", title: "Related Movie(s)", }, { key: "shows", icon: "deviceTvOld", category: "tv", title: "Related Show(s)", }, { key: "related_shows", icon: "deviceTvOld", category: "tv", title: "Related Show(s)", }, { key: "posts", icon: "article", category: "article", title: "Related Post(s)", }, { key: "books", icon: "books", category: "books", title: "Related Book(s)", }, { key: "related_books", icon: "books", category: "books", title: "Related Book(s)", }, ]; return sections .filter(({ key }) => !(isGenre && key === "artists")) .map(({ key, category, icon, title }) => { const items = data[key]; if (!items || items.length === 0) return ""; return `${ICON_MAP[icon]} ${title}
${ICON_MAP["deviceSpeaker"]} I've seen this artist live!
Album | Plays | Year |
---|---|---|
${album["name"]} | ${album["total_plays"] || 0} | ${album["release_year"]} |
These are the albums by this artist that are in my collection, not necessarily a comprehensive discography.
` : ""; return ` ${ICON_MAP.arrowLeft} Back to music${book["review"]}
` : "" } ${generateAssociatedMediaHTML(book)}${md.render(book["description"])}
My top ${genre["name"]} ${connectingWords} ${mediaLinks}. I've listened to ${genre["total_plays"]} tracks from this genre.
Continue reading at Wikipedia.
Wikipedia content provided under the terms of the Creative Commons BY-SA license.
${md.render( media["review"] )}
` : "" } ${generateAssociatedMediaHTML(media)} ${ media["description"] ? `${md.render(media["description"])}
` : "" }