diff options
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/dependencies/generateArtistInfoPage.js | 49 | ||||
-rw-r--r-- | src/content/dependencies/generateGroupInfoPage.js | 39 |
2 files changed, 66 insertions, 22 deletions
diff --git a/src/content/dependencies/generateArtistInfoPage.js b/src/content/dependencies/generateArtistInfoPage.js index 52f3e221..7b47c037 100644 --- a/src/content/dependencies/generateArtistInfoPage.js +++ b/src/content/dependencies/generateArtistInfoPage.js @@ -1,4 +1,4 @@ -import {empty, unique} from '#sugar'; +import {empty, stitchArrays, unique} from '#sugar'; export default { contentDependencies: [ @@ -71,7 +71,8 @@ export default { closeGroupLinks: artist.closelyLinkedGroups - .map(group => relation('linkGroup', group)), + .map(({thing: group}) => + relation('linkGroup', group)), visitLinks: artist.urls @@ -116,6 +117,10 @@ export default { ? artist.avatarFileExtension : null), + closeGroupAnnotations: + artist.closelyLinkedGroups + .map(({annotation}) => annotation), + totalTrackCount: query.allTracks.length, @@ -154,17 +159,35 @@ export default { html.tag('p', {[html.onlyIfContent]: true}, - language.encapsulate(pageCapsule, 'closelyLinkedGroups', capsule => - (relations.closeGroupLinks.length === 0 - ? html.blank() - : relations.closeGroupLinks.length === 1 - ? language.$(capsule, 'one', { - group: relations.closeGroupLinks, - }) - : language.$(capsule, 'multiple', { - groups: - language.formatUnitList(relations.closeGroupLinks), - })))), + language.encapsulate(pageCapsule, 'closelyLinkedGroups', capsule => { + const [workingCapsule, option] = + (relations.closeGroupLinks.length === 0 + ? [null, null] + : relations.closeGroupLinks.length === 1 + ? [language.encapsulate(capsule, 'one'), 'group'] + : [language.encapsulate(capsule, 'multiple'), 'groups']); + + if (!workingCapsule) return html.blank(); + + return language.$(workingCapsule, { + [option]: + language.formatUnitList( + stitchArrays({ + link: relations.closeGroupLinks, + annotation: data.closeGroupAnnotations, + }).map(({link, annotation}) => + language.encapsulate(capsule, 'group', workingCapsule => { + const workingOptions = {group: link}; + + if (annotation) { + workingCapsule += '.withAnnotation'; + workingOptions.annotation = annotation; + } + + return language.$(workingCapsule, workingOptions); + }))), + }); + })), html.tag('p', {[html.onlyIfContent]: true}, diff --git a/src/content/dependencies/generateGroupInfoPage.js b/src/content/dependencies/generateGroupInfoPage.js index deddfd68..918d6476 100644 --- a/src/content/dependencies/generateGroupInfoPage.js +++ b/src/content/dependencies/generateGroupInfoPage.js @@ -1,3 +1,5 @@ +import {stitchArrays} from '#sugar'; + export default { contentDependencies: [ 'generateColorStyleAttribute', @@ -43,7 +45,8 @@ export default { closeArtistLinks: group.closelyLinkedArtists - .map(artist => relation('linkArtist', artist)), + .map(({thing: artist}) => + relation('linkArtist', artist)), visitLinks: group.urls @@ -62,6 +65,10 @@ export default { color: group.color, + + closeArtistAnnotations: + group.closelyLinkedArtists + .map(({annotation}) => annotation), }), generate: (data, relations, {html, language}) => @@ -76,23 +83,37 @@ export default { {[html.onlyIfContent]: true}, language.encapsulate(pageCapsule, 'closelyLinkedArtists', capsule => { - let option; - [capsule, option] = + const [workingCapsule, option] = (relations.closeArtistLinks.length === 0 ? [null, null] : relations.closeArtistLinks.length === 1 ? [language.encapsulate(capsule, 'one'), 'artist'] : [language.encapsulate(capsule, 'multiple'), 'artists']); - if (!capsule) return html.blank(); + if (!workingCapsule) return html.blank(); - return language.$(capsule, { + return language.$(workingCapsule, { [option]: language.formatUnitList( - relations.closeArtistLinks - .map(link => link.slots({ - attributes: [relations.wikiColorAttribute], - }))), + stitchArrays({ + link: relations.closeArtistLinks, + annotation: data.closeArtistAnnotations, + }).map(({link, annotation}) => + language.encapsulate(capsule, 'artist', workingCapsule => { + const workingOptions = {}; + + workingOptions.artist = + link.slots({ + attributes: [relations.wikiColorAttribute], + }); + + if (annotation) { + workingCapsule += '.withAnnotation'; + workingOptions.annotation = annotation; + } + + return language.$(workingCapsule, workingOptions); + }))), }); })), |