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
|
const contributionSlots = {
showAnnotation: true,
showChronology: true,
showExternalLinks: true,
chronologyKind: 'musicVideoContribution',
};
export default {
relations: (relation, musicVideo) => ({
artistCredit:
relation('generateArtistCredit', musicVideo.contributorContribs, []),
contributionLinks:
musicVideo.contributorContribs
.map(contrib => relation('linkContribution', contrib)),
}),
data: (musicVideo) => ({
style:
musicVideo.contributorStyle,
}),
generate: (data, relations, {html, language}) =>
language.encapsulate('misc.musicVideo', capsule =>
(data.style === 'list'
? html.tag('p',
{[html.joinChildren]: html.tag('br')},
{[html.onlyIfContent]: true},
[
html.tags([
language.$(capsule, 'contributorsList.title'),
], {[html.onlyIfSiblings]: true}),
relations.contributionLinks
.map(link => link.slots({...contributionSlots})),
])
: data.style === 'line'
? html.tag('p',
{[html.onlyIfContent]: true},
language.$(capsule, 'contributorsLine', {
[language.onlyIfOptions]: ['credit'],
credit:
relations.artistCredit.slots({
normalStringKey:
language.encapsulate(capsule, 'contributorsLine.credit'),
chunkwrap: false,
...contributionSlots,
}),
}))
: html.blank())),
};
|