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
|
import {empty} from '#sugar';
export default {
contentDependencies: ['linkContribution'],
extraDependencies: ['html', 'language'],
relations(relation, contributions) {
if (empty(contributions)) {
return {};
}
return {
contributionLinks:
contributions
.map(contrib => relation('linkContribution', contrib)),
};
},
slots: {
stringKey: {type: 'string'},
showContribution: {type: 'boolean', default: true},
showIcons: {type: 'boolean', default: true},
},
generate(relations, slots, {html, language}) {
if (!relations.contributionLinks) {
return html.blank();
}
return language.$(slots.stringKey, {
artists:
language.formatConjunctionList(
relations.contributionLinks.map(link =>
link.slots({
showContribution: slots.showContribution,
showIcons: slots.showIcons,
}))),
});
},
};
|