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
|
import {empty} from '../../util/sugar.js';
export default {
contentDependencies: ['linkTrack', 'linkContribution'],
extraDependencies: ['html', 'language'],
relations(relation, tracks) {
if (empty(tracks)) {
return {};
}
return {
items: tracks.map(track => ({
trackLink:
relation('linkTrack', track),
contributionLinks:
track.artistContribs.map(contrib =>
relation('linkContribution', contrib.who, contrib.what)),
})),
};
},
generate(relations, {html, language}) {
return html.template({
annotation: `generateTrackList`,
slots: {
showContribution: {type: 'boolean', default: false},
showIcons: {type: 'boolean', default: false},
},
content(slots) {
return html.tag('ul',
relations.items.map(({trackLink, contributionLinks}) =>
html.tag('li',
language.$('trackList.item.withArtists', {
track: trackLink,
by:
html.tag('span', {class: 'by'},
language.$('trackList.item.withArtists.by', {
artists:
language.formatConjunctionList(
contributionLinks.map(link =>
link.slots({
showContribution: slots.showContribution,
showIcons: slots.showIcons,
}))),
})),
}))));
},
});
},
};
|