« 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: 790afa4fde7769674970a58b10d13f1d68458378 (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
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
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
          .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 = {artist: relations.artistLink};

    if (hasContribution) {
      parts.push('withContribution');
      options.contrib = data.what;
    }

    if (hasExternalIcons && slots.iconMode === 'inline') {
      parts.push('withExternalLinks');
      options.links =
        html.tag('span',
          {
            [html.noEdgeWhitespace]: true,
            class: ['icons', 'icons-inline'],
          },
          language.formatUnitList(
            relations.artistIcons
              .slice(0, 4)
              .map(icon => icon.slot('context', 'artist'))));
    }

    let content = language.formatString(parts.join('.'), options);

    if (hasExternalIcons && slots.iconMode === 'tooltip') {
      content = [
        content,
        html.tag('span',
          {
            [html.noEdgeWhitespace]: true,
            class: ['icons', 'icons-tooltip'],
            inert: true,
          },
          html.tag('span',
            {
              [html.noEdgeWhitespace]: true,
              [html.joinChildren]: '',
              class: 'icons-tooltip-content',
            },
            relations.artistIcons
              .map(icon => icon.slots({context: 'artist', withText: true})))),
      ];
    }

    if (hasContribution || hasExternalIcons) {
      content =
        html.tag('span', {
          [html.noEdgeWhitespace]: true,
          [html.joinChildren]: '',

          class: [
            'contribution',

            hasExternalIcons &&
            slots.iconMode === 'tooltip' &&
              'has-tooltip',

            parts.length > 1 &&
            slots.preventWrapping &&
              'nowrap',
          ],
        }, content);
    }

    return content;
  }
};