« 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: f014139c86c41982aa8f67fadb346f8e52a18e3f (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
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: [
        relations.trackListBox,

        (data.isAlbumPage
          ? relations.groupBoxes
              .map(box => box.slot('mode', 'album'))

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