« 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: 2e6c470914356ac1e70f188f3554abf106ef6d25 (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
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,
              iconMode: 'tooltip',
            }))),
    });
  },
};