-
{title}
- {links.map((link) => {
- const { id: linkId, url, url2, provider, directUrl } = link
-
- return (
-
-
-
-
-
- {url2 && (
-
- {m.flyInc()}
-
- )}
- {url ? (
-
- {m.ouoIO()}
-
- ) : null}
- {directUrl ? (
-
- {m.direct()}
-
- ) : null}
-
-
+ {
+ (album?.artistList.length ?? 0) > 0 && (
+
+ | {m.artists()} |
+ {album?.artistList.map(({ artist }) => artist.name).join(', ')} |
+
)
- })}
-
+ }
+
+
+ | {m.classification()} |
+
+ {
+ [
+ album?.categoryList
+ .map(({ categoryName }) => (m as any)[`${categoryName}Osts`]())
+ .join(' & '),
+ album?.classificationList.map(({ classificationName }) => classificationName).join(', ')
+ ]
+ .filter((f) => f !== '')
+ .join(' - ')
+ }
+ |
+
+ {
+ album?.label && (
+
+ | {m.publishedBy()} |
+
+
+ {album?.label}
+
+ |
+
+ )
+ }
+ {
+ (album?.platformList.length ?? 0) > 0 && (
+
+ | {m.platforms()} |
+
+ {album?.platformList.map(({ platform }, i) => (
+
+ {id === '29' ? (
+
+ {platform.name}
+
+ ) : (
+
+ {platform.name}
+
+ )}
+ {i !== album?.platformList.length - 1 && ', '}
+
+ ))}
+ |
+
+ )
+ }
+ {
+ (album?.gameList.length ?? 0) > 0 && (
+
+ | {m.games()} |
+
+ {album?.gameList.map(({ game }, i) => (
+
+
+ {game.name}
+
+ {i !== album?.gameList.length - 1 && ', '}
+
+ ))}
+ |
+
+ )
+ }
+ {
+ (album?.animList.length ?? 0) > 0 && (
+
+ | {m.animations()} |
+
+ {album?.animList.map(({ animation }, i) => (
+
+
+ {animation.title}
+
+ {i !== album?.animList.length - 1 && ', '}
+
+ ))}
+ |
+
+ )
+ }
+
+
+ | {m.avgRating()} |
+
+
+ |
+
+