1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
import {empty} from '#sugar';
export default {
contentDependencies: [
'generateArtistInfoPageChunkItem',
'generateArtistInfoPageOtherArtistLinks',
'linkTrack',
],
extraDependencies: ['html', 'language'],
query (_artist, contribs) {
const query = {};
// TODO: Very mysterious what to do if the set of contributions is,
// in total, associated with more than one thing. No design yet.
query.track =
contribs[0].thing;
const creditedAsArtist =
contribs
.some(contrib => contrib.isArtistContribution);
const creditedAsContributor =
contribs
.some(contrib => contrib.isContributorContribution);
const annotatedContribs =
contribs
.filter(contrib => contrib.annotation);
const annotatedArtistContribs =
annotatedContribs
.filter(contrib => contrib.isArtistContribution);
const annotatedContributorContribs =
annotatedContribs
.filter(contrib => contrib.isContributorContribution);
// Don't display annotations associated with crediting in the
// Contributors field if the artist is also credited as an Artist
// *and* the Artist-field contribution is non-annotated. This is
// so that we don't misrepresent the artist - the contributor
// annotation tends to be for "secondary" and performance roles.
// For example, this avoids crediting Marcy Nabors on Renewed
// Return seemingly only for "bass clarinet" when they're also
// the one who composed and arranged Renewed Return!
if (
creditedAsArtist &&
creditedAsContributor &&
empty(annotatedArtistContribs)
) {
query.displayedContributions = null;
} else if (
!empty(annotatedArtistContribs) ||
!empty(annotatedContributorContribs)
) {
query.displayedContributions = [
...annotatedArtistContribs,
...annotatedContributorContribs,
];
}
return query;
},
relations: (relation, query, artist, contribs) => ({
template:
relation('generateArtistInfoPageChunkItem'),
trackLink:
relation('linkTrack', query.track),
otherArtistLinks:
relation('generateArtistInfoPageOtherArtistLinks', contribs),
}),
data: (query) => ({
duration:
query.track.duration,
rerelease:
query.track.isRerelease,
contribAnnotations:
(query.displayedContributions
? query.displayedContributions
.map(contrib => contrib.annotation)
: null),
}),
generate: (data, relations, {html, language}) =>
relations.template.slots({
otherArtistLinks: relations.otherArtistLinks,
rerelease: data.rerelease,
annotation:
(data.contribAnnotations
? language.formatUnitList(data.contribAnnotations)
: html.blank()),
content:
language.encapsulate('artistPage.creditList.entry.track', workingCapsule => {
const workingOptions = {track: relations.trackLink};
if (data.duration) {
workingCapsule += '.withDuration';
workingOptions.duration =
language.formatDuration(data.duration);
}
return language.$(workingCapsule, workingOptions);
}),
}),
};
|