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
  | 
export default {
  relations: (relation, contributions) => ({
    textWithTooltip:
      relation('generateTextWithTooltip'),
    tooltip:
      relation('generateTooltip'),
    contributionLinks:
      contributions
        .map(contrib => relation('linkContribution', contrib)),
  }),
  slots: {
    showAnnotation: {type: 'boolean', default: true},
  },
  generate: (relations, slots, {language}) =>
    language.encapsulate('misc.artistLink.withEditsForWiki', capsule =>
      relations.textWithTooltip.slots({
        attributes:
          {class: 'wiki-edits'},
        text:
          language.$(capsule, 'edits'),
        tooltip:
          relations.tooltip.slots({
            attributes:
              {class: 'wiki-edits-tooltip'},
            content:
              language.$(capsule, 'editsLine', {
                [language.onlyIfOptions]: ['artists'],
                artists:
                  language.formatConjunctionList(
                    relations.contributionLinks.map(link =>
                      link.slots({
                        showAnnotation: slots.showAnnotation,
                        trimAnnotation: true,
                        preventTooltip: true,
                        preventWrapping: true,
                      }))),
                }),
          }),
      })),
};
  |