« get me outta code hell

linkContribution.js « dependencies « content « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/linkContribution.js
blob: 26f0b2d74f1e92731347d9d2b3783f8f1c285665 (plain)
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
export default {
  contentDependencies: [
    'generateContributionTooltip',
    'generateTextWithTooltip',
    'linkArtist',
  ],

  extraDependencies: ['html', 'language'],

  relations: (relation, contribution) => ({
    artistLink:
      relation('linkArtist', contribution.artist),

    textWithTooltip:
      relation('generateTextWithTooltip'),

    tooltip:
      relation('generateContributionTooltip', contribution),
  }),

  data: (contribution) => ({
    contribution: contribution.annotation,
    urls: contribution.artist.urls,
  }),

  slots: {
    showContribution: {type: 'boolean', default: false},
    showExternalLinks: {type: 'boolean', default: false},
    showChronology: {type: 'boolean', default: false},

    preventWrapping: {type: 'boolean', default: true},
    chronologyKind: {type: 'string'},
  },

  generate: (data, relations, slots, {html, language}) =>
    html.tag('span', {class: 'contribution'},
      {[html.noEdgeWhitespace]: true},

      slots.preventWrapping &&
        {class: 'nowrap'},

      language.encapsulate('misc.artistLink', workingCapsule => {
        const workingOptions = {};

        relations.tooltip.setSlots({
          showExternalLinks: slots.showExternalLinks,
          showChronology: slots.showChronology,
          chronologyKind: slots.chronologyKind,
        });

        workingOptions.artist =
          (html.isBlank(relations.tooltip)
            ? relations.artistLink
            : relations.textWithTooltip.slots({
                customInteractionCue: true,

                text:
                  relations.artistLink.slots({
                    attributes: {class: 'text-with-tooltip-interaction-cue'},
                  }),

                tooltip:
                  relations.tooltip.slots({
                    showExternalLinks: slots.showExternalLinks,
                    showChronology: slots.showChronology,
                    chronologyKind: slots.chronologyKind,
                  }),
              }));

        if (slots.showContribution && data.contribution) {
          workingCapsule += '.withContribution';
          workingOptions.contrib =
            data.contribution;
        }

        return language.formatString(workingCapsule, workingOptions);
      })),
};