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
|
import {empty} from '#sugar';
export default {
contentDependencies: [
'linkArtist',
'linkExternalAsIcon',
],
extraDependencies: [
'html',
'language',
],
relations(relation, contribution) {
const relations = {};
relations.artistLink =
relation('linkArtist', contribution.who);
if (!empty(contribution.who.urls)) {
relations.artistIcons =
contribution.who.urls
.slice(0, 4)
.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},
},
generate(data, relations, slots, {html, language}) {
const hasContributionPart = !!(slots.showContribution && data.what);
const hasExternalPart = !!(slots.showIcons && relations.artistIcons);
const externalLinks = hasExternalPart &&
html.tag('span',
{[html.noEdgeWhitespace]: true, class: 'icons'},
language.formatUnitList(relations.artistIcons));
const parts = ['misc.artistLink'];
const options = {artist: relations.artistLink};
if (hasContributionPart) {
parts.push('withContribution');
options.contrib = data.what;
}
if (hasExternalPart) {
parts.push('withExternalLinks');
options.links = externalLinks;
}
const content = language.formatString(parts.join('.'), options);
return (
(parts.length > 1 && slots.preventWrapping
? html.tag('span',
{[html.noEdgeWhitespace]: true, class: 'nowrap'},
content)
: content));
},
};
|