diff options
Diffstat (limited to 'src/content/dependencies/generateTrackInfoPagePreviousProductionLine.js')
| -rw-r--r-- | src/content/dependencies/generateTrackInfoPagePreviousProductionLine.js | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/content/dependencies/generateTrackInfoPagePreviousProductionLine.js b/src/content/dependencies/generateTrackInfoPagePreviousProductionLine.js deleted file mode 100644 index f7f455c1..00000000 --- a/src/content/dependencies/generateTrackInfoPagePreviousProductionLine.js +++ /dev/null @@ -1,38 +0,0 @@ -import {stitchArrays} from '#sugar'; -import {getKebabCase} from '#wiki-data'; - -export default { - relations: (relation, track) => ({ - trackLinks: - track.followingProductionTracks - .map(track => relation('linkTrack', track)), - - albumLinks: - track.followingProductionTracks - .map(following => - (following.album !== track.album && - getKebabCase(following.name) === getKebabCase(track.name) - - ? relation('linkAlbum', following.album) - : null)), - }), - - generate: (relations, {language}) => - language.encapsulate('releaseInfo.previousProduction', capsule => - language.$(capsule, { - [language.onlyIfOptions]: ['tracks'], - - tracks: - language.formatConjunctionList( - stitchArrays({ - trackLink: relations.trackLinks, - albumLink: relations.albumLinks, - }).map(({trackLink, albumLink}) => - (albumLink - ? language.$(capsule, 'trackOnAlbum', { - track: trackLink, - album: albumLink, - }) - : trackLink))), - })), -}; |