« get me outta code hell

generateCommentarySection.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/generateCommentarySection.js
blob: 8ae1b2d0e4ba3fcd7a41e221b85e2c18fe79fe41 (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
export default {
  contentDependencies: [
    'transformContent',
    'generateCommentaryEntry',
    'generateContentHeading',
  ],

  extraDependencies: ['html', 'language'],

  relations: (relation, entries) => ({
    heading:
      relation('generateContentHeading'),

    entries:
      entries.map(entry =>
        relation('generateCommentaryEntry', entry)),
  }),

  generate: (relations, {html, language}) =>
    html.tags([
      relations.heading
        .slots({
          id: 'artist-commentary',
          title: language.$('misc.artistCommentary')
        }),

      relations.entries,
    ]),
};