« 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: 016e0a2cf6fa9040d5df96619413eda1177f8115 (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
export default {
  contentDependencies: ['generateArtistCredit'],
  extraDependencies: ['html'],

  relations: (relation, contributions) => ({
    credit:
      relation('generateArtistCredit', contributions, []),
  }),

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

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

  generate: (relations, slots) =>
    relations.credit.slots({
      showAnnotation: true,
      showExternalLinks: true,
      showChronology: true,
      showWikiEdits: true,

      trimAnnotation: false,

      chronologyKind: slots.chronologyKind,

      normalStringKey: slots.stringKey,
      normalFeaturingStringKey: slots.featuringStringKey,
    }),
};