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 = `
`; export const generateMetadata = (data, type, globals) => { let title = globals["site_name"]; let description = data["description"] || globals["site_description"]; const canonicalUrl = data["url"] ? `${globals["url"]}${data["url"]}` : globals["url"]; const ogImage = `${globals["cdn_url"]}${(data["backdrop"] ? data["backdrop"] : data["image"]) || globals["avatar"]}?class=w800`; description = convert( truncateHtml(md.render(description), 100, { byWords: true, ellipsis: "...", }), { wordwrap: false, selectors: [ { selector: "a", options: { ignoreHref: true } }, { selector: "h1", options: { uppercase: false } }, { selector: "h2", options: { uppercase: false } }, { selector: "h3", options: { uppercase: false } }, { selector: "*", format: "block" }, ], } ) .replace(/\s+/g, " ") .trim(); switch (type) { case "artist": title = `Artists / ${data["name"]} / ${globals["site_name"]}`; break; case "genre": title = `Genre / ${data["name"]} / ${globals["site_name"]}`; break; case "book": title = `Books / ${data["title"]} by ${data["author"]} / ${globals["site_name"]}`; break; case "movie": title = `Movies / ${data["title"]} (${data["year"]}) / ${globals["site_name"]}`; break; case "show": title = `Shows / ${data["title"]} / ${globals["site_name"]}`; break; default: title = `${data["title"] || globals["site_name"]}`; } return { title, description, "og:title": title, "og:description": description, "og:image": ogImage, "og:url": canonicalUrl, canonical: canonicalUrl, }; }; 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 `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${md.render(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"])}
` : "" }