« 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: 3e96ed4480ea9d28bc1c75046fc1664e3911044b (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
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: {
    showContribution: {type: 'boolean', default: true},
    showExternalLinks: {type: 'boolean', default: true},
    showChronology: {type: 'boolean', default: true},

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

  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,
              showExternalLinks: slots.showExternalLinks,
              showChronology: slots.showChronology,
              chronologyKind: slots.chronologyKind,
            }))),
    });
  },
};