--- import { isBefore, parseISO, format } from "date-fns"; import IconMapper from "@components/IconMapper.astro"; const { artists = [], books = [], genres = [], movies = [], posts = [], shows = [], } = Astro.props; const media = [ ...(artists || []), ...(books || []), ...(genres || []), ...(movies || []), ...(posts || []), ...(shows || []), ]; if (media.length === 0) return null; const sections = [ { key: "artists", icon: "headphones", cssClass: "music", label: "Related artist(s)", items: artists || [], }, { key: "books", icon: "books", cssClass: "books", label: "Related book(s)", items: books || [], }, { key: "genres", icon: "headphones", cssClass: "music", label: "Related genre(s)", items: genres || [], }, { key: "movies", icon: "movie", cssClass: "movies", label: "Related movie(s)", items: movies || [], }, { key: "posts", icon: "article", cssClass: "article", label: "Related post(s)", items: posts?.filter((post) => isBefore(new Date(post.date), new Date())) || [], }, { key: "shows", icon: "device-tv-old", cssClass: "tv", label: "Related show(s)", items: shows || [], }, ]; ---