« 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: 5ef4501b258abb3f322ec22c78ea74c6ebf79671 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export default {
  contentDependencies: [
    'generateAlbumSidebarGroupBox',
    'generateAlbumSidebarTrackSection',
    'linkAlbum',
  ],

  extraDependencies: ['html'],

  relations(relation, album, track) {
    const relations = {};

    relations.albumLink =
      relation('linkAlbum', album);

    relations.groupBoxes =
      album.groups.map(group =>
        relation('generateAlbumSidebarGroupBox', album, group));

    relations.trackSections =
      album.trackSections.map(trackSection =>
        relation('generateAlbumSidebarTrackSection', album, track, trackSection));

    return relations;
  },

  data(album, track) {
    return {isAlbumPage: !track};
  },

  generate(data, relations, {html}) {
    const trackListBox = {
      class: 'track-list-sidebar-box',
      content:
        html.tags([
          html.tag('h1', relations.albumLink),
          relations.trackSections,
        ]),
    };

    if (data.isAlbumPage) {
      const groupBoxes =
        relations.groupBoxes
          .map(content => ({
            class: 'individual-group-sidebar-box',
            content: content.slot('mode', 'album'),
          }));

      return {
        leftSidebarMultiple: [
          ...groupBoxes,
          trackListBox,
        ],
      };
    }

    const conjoinedGroupBox = {
      class: 'conjoined-group-sidebar-box',
      content:
        relations.groupBoxes
          .flatMap((content, i, {length}) => [
            content.slot('mode', 'track'),
            i < length - 1 &&
              html.tag('hr', {
                style: `border-color: var(--primary-color); border-style: none none dotted none`
              }),
          ])
          .filter(Boolean),
    };

    return {
      // leftSidebarStickyMode: 'column',
      leftSidebarMultiple: [
        trackListBox,
        conjoinedGroupBox,
      ],
    };
  },
};