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
|
import {compareArrays, empty} from '#sugar';
export default {
contentDependencies: [
'linkContribution',
'linkTrack',
],
extraDependencies: ['getColors', 'html', 'language'],
relations(relation, track) {
const relations = {};
if (!empty(track.artistContribs)) {
relations.contributionLinks =
track.artistContribs
.map(contrib => relation('linkContribution', contrib));
}
relations.trackLink =
relation('linkTrack', track);
return relations;
},
data(track, album) {
const data = {};
data.duration = track.duration ?? 0;
if (track.color !== album.color) {
data.color = track.color;
}
data.showArtists =
!empty(track.artistContribs) &&
(empty(album.artistContribs) ||
!compareArrays(
track.artistContribs.map(c => c.who),
album.artistContribs.map(c => c.who),
{checkOrder: false}));
return data;
},
generate(data, relations, {getColors, html, language}) {
let colorStyle;
if (data.color) {
const {primary} = getColors(data.color);
colorStyle = {style: `--primary-color: ${primary}`};
}
const parts = ['trackList.item.withDuration'];
const options = {};
options.duration =
language.formatDuration(data.duration);
options.track =
relations.trackLink
.slot('color', false);
if (data.showArtists) {
parts.push('withArtists');
options.by =
html.tag('span', {class: 'by'},
language.$('trackList.item.withArtists.by', {
artists: language.formatConjunctionList(relations.contributionLinks),
}));
}
return html.tag('li',
colorStyle,
language.formatString(...parts, options));
},
};
|