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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
import {empty} from '#sugar';
export default {
contentDependencies: [
'generateTextWithTooltip',
'generateTooltip',
'linkArtist',
'linkExternalAsIcon',
],
extraDependencies: ['html', 'language'],
relations(relation, contribution) {
const relations = {};
relations.artistLink =
relation('linkArtist', contribution.who);
relations.textWithTooltip =
relation('generateTextWithTooltip');
relations.tooltip =
relation('generateTooltip');
if (!empty(contribution.who.urls)) {
relations.artistIcons =
contribution.who.urls
.map(url => relation('linkExternalAsIcon', url));
}
return relations;
},
data(contribution) {
return {
what: contribution.what,
};
},
slots: {
showContribution: {type: 'boolean', default: false},
showIcons: {type: 'boolean', default: false},
preventWrapping: {type: 'boolean', default: true},
iconMode: {
validate: v => v.is('inline', 'tooltip'),
default: 'inline'
},
},
generate(data, relations, slots, {html, language}) {
const hasContribution = !!(slots.showContribution && data.what);
const hasExternalIcons = !!(slots.showIcons && relations.artistIcons);
const parts = ['misc.artistLink'];
const options = {};
options.artist =
(hasExternalIcons && slots.iconMode === 'tooltip'
? relations.textWithTooltip.slots({
customInteractionCue: true,
text:
relations.artistLink.slots({
attributes: {class: 'text-with-tooltip-interaction-cue'},
}),
tooltip:
relations.tooltip.slots({
attributes:
{class: ['icons', 'icons-tooltip']},
contentAttributes:
{[html.joinChildren]: ''},
content:
relations.artistIcons
.map(icon =>
icon.slots({
context: 'artist',
withText: true,
})),
}),
})
: relations.artistLink);
if (hasContribution) {
parts.push('withContribution');
options.contrib = data.what;
}
if (hasExternalIcons && slots.iconMode === 'inline') {
parts.push('withExternalLinks');
options.links =
html.tag('span', {class: ['icons', 'icons-inline']},
{[html.noEdgeWhitespace]: true},
language.formatUnitList(
relations.artistIcons
.slice(0, 4)
.map(icon => icon.slot('context', 'artist'))));
}
const contributionPart =
language.formatString(...parts, options);
if (!hasContribution && !hasExternalIcons) {
return contributionPart;
}
return (
html.tag('span', {class: 'contribution'},
{[html.noEdgeWhitespace]: true},
parts.length > 1 &&
slots.preventWrapping &&
{class: 'nowrap'},
contributionPart));
},
};
|