« get me outta code hell

generateReleaseInfoContributionsLine.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/generateReleaseInfoContributionsLine.js
blob: 2b342d09459d0cd6d0b78b2fb2ddb9e9497b5c33 (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
import {empty} from '../../util/sugar.js';

export default {
  contentDependencies: ['linkContribution'],
  extraDependencies: ['html', 'language'],

  relations(relation, contributions) {
    if (empty(contributions)) {
      return {};
    }

    return {
      contributionLinks:
        contributions
          .slice(0, 4)
          .map(({who, what}) =>
            relation('linkContribution', who, what)),
    };
  },

  generate(relations, {html, language}) {
    return html.template({
      annotation: `generateReleaseInfoContributionsLine`,

      slots: {
        stringKey: {type: 'string'},

        showContribution: {type: 'boolean', default: true},
        showIcons: {type: 'boolean', default: true},
      },

      content(slots) {
        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,
                }))),
        });
      },
    });
  },
};