« get me outta code hell

generateArtistInfoPageArtworksChunk.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/generateArtistInfoPageArtworksChunk.js
blob: b62cb39b2368c8d0929d4a1cebcf439265328c5b (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
export default {
  contentDependencies: [
    'generateArtistInfoPageChunk',
    'generateArtistInfoPageArtworksChunkItem',
    'linkAlbum',
  ],

  relations: (relation, album, contribs) => ({
    template:
      relation('generateArtistInfoPageChunk'),

    albumLink:
      relation('linkAlbum', album),

    // Intentional mapping here: each item may be associated with
    // more than one contribution. (Note: this is only currently
    // applicable for track contributions, but we're retaining the
    // structure in other contributions too.)
    items:
      contribs
        .map(contrib =>
          relation('generateArtistInfoPageArtworksChunkItem', contrib)),
  }),

  data: (_album, contribs) => ({
    dates:
      contribs
        .map(contrib => contrib.date),
  }),

  generate: (data, relations) =>
    relations.template.slots({
      mode: 'album',
      albumLink: relations.albumLink,
      dates: data.dates,
      items: relations.items,
    }),
};