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
|
export default {
relations: (relation, musicVideo, thing) => ({
image:
relation('image', {
path: musicVideo.path,
artTags: [],
dimensions: musicVideo.coverArtDimensions,
}),
releaseLine:
relation('generateMusicVideoReleaseLine', musicVideo, thing),
contributorCredit:
relation('generateArtistCredit', musicVideo.contributorContribs, []),
}),
data: (musicVideo, track) => ({
label:
musicVideo.label,
url:
musicVideo.url,
sameDay:
(() => {
if (!musicVideo.dateIsSpecified) return null;
const compare = (a, b) =>
a.toDateString() === b.toDateString();
if (compare(musicVideo.date, track.album.date)) {
if (track.album.style === 'single') {
return 'single';
} else {
return 'album';
}
}
if (compare(musicVideo.date, track.date)) {
return 'track';
}
return null;
})(),
}),
generate: (data, relations, {language, html}) =>
language.encapsulate('misc.musicVideo', capsule =>
html.tag('div', {class: 'music-video'}, [
html.tag('p', {class: 'music-video-label'},
language.encapsulate(capsule, 'label', workingCapsule => {
const workingOptions = {};
if (data.label) {
workingCapsule += '.customLabel';
workingOptions.label = data.label;
}
return language.$(workingCapsule, workingOptions);
})),
relations.image.slots({
link: data.url,
}),
html.tag('p', {class: 'music-video-info'},
{[html.joinChildren]: html.tag('br')},
[
html.tag('span', {class: 'release-line'},
{[html.onlyIfContent]: true},
relations.releaseLine),
language.encapsulate(capsule, 'date', capsule => [
data.sameDay == 'album' &&
language.$(capsule, 'sameDayAsAlbum'),
data.sameDay == 'single' &&
language.$(capsule, 'sameDayAsTrack'),
data.sameDay === 'track' &&
language.$(capsule, 'sameDayAsTrack'),
]),
language.encapsulate(capsule, 'contributorsLine', capsule =>
language.$(capsule, {
[language.onlyIfOptions]: ['credit'],
credit:
relations.contributorCredit.slots({
normalStringKey: language.encapsulate(capsule, 'credit'),
showAnnotation: true,
showChronology: true,
chunkwrap: false,
chronologyKind: 'musicVideoContribution',
}),
})),
]),
])),
};
|