« get me outta code hell

generateAlbumSidebar.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/generateAlbumSidebar.js
blob: 355a9a9a2bc5a067a137ab37eb59d195481664f5 (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
46
47
export default {
  contentDependencies: [
    'generateAlbumSidebarGroupBox',
    'generateAlbumSidebarTrackListBox',
    'generatePageSidebar',
    'generatePageSidebarConjoinedBox',
  ],

  relations: (relation, album, track) => ({
    sidebar:
      relation('generatePageSidebar'),

    conjoinedBox:
      relation('generatePageSidebarConjoinedBox'),

    trackListBox:
      relation('generateAlbumSidebarTrackListBox', album, track),

    groupBoxes:
      album.groups.map(group =>
        relation('generateAlbumSidebarGroupBox', album, group)),
  }),

  data: (album, track) => ({
    isAlbumPage: !track,
  }),

  generate: (data, relations) =>
    relations.sidebar.slots({
      boxes: [
        data.isAlbumPage &&
          relations.groupBoxes
            .map(box => box.slot('mode', 'album')),

        relations.trackListBox,

        !data.isAlbumPage &&
          relations.conjoinedBox.slots({
            attributes: {class: 'conjoined-group-sidebar-box'},
            boxes:
              relations.groupBoxes
                .map(box => box.slot('mode', 'track'))
                .map(box => box.content), /* TODO: Kludge. */
          }),
      ],
    }),
};