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
|
export default {
relations: (relation, musicVideo) => ({
artistCredit:
relation('generateArtistCredit', musicVideo.artistContribs, []),
}),
data: (musicVideo) => ({
label:
musicVideo.label,
}),
generate: (data, relations, {html, language}) =>
language.encapsulate('misc.musicVideo.artistsLine', artistsLineCapsule =>
language.encapsulate(artistsLineCapsule, workingCapsule => {
const credit = relations.artistCredit;
credit.setSlots({
normalStringKey:
language.encapsulate(artistsLineCapsule, 'credit'),
showAnnotation: true,
showChronology: true,
showExternalLinks: true,
chronologyKind: 'musicVideo',
});
if (html.isBlank(credit)) {
return html.blank();
}
if (data.label === 'Music video' || !data.label) {
credit.setSlots({
normalStringKey:
language.encapsulate(artistsLineCapsule, 'noLabel'),
});
return credit;
}
const workingOptions = {};
workingOptions.credit =
html.tag('span', {class: 'by'}, credit);
if (data.label && data.label !== 'Music video') {
workingCapsule += '.customLabel';
workingOptions.label = data.label;
}
return language.$(workingCapsule, workingOptions);
})),
};
|