« 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: 36785f238f5649e468e69f677f1d88abe0104469 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
export default {
  contentDependencies: [
    'generateAlbumSidebarGroupBox',
    'linkAlbum',
    'linkTrack',
  ],

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

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

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

    relations.trackLinks =
      album.trackSections.map(trackSection =>
        trackSection.tracks.map(track =>
          relation('linkTrack', track)));

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

    return relations;
  },

  data(album, track) {
    const data = {};

    data.isAlbumPage = !track;
    data.isTrackPage = !!track;

    data.hasTrackNumbers = album.hasTrackNumbers;

    data.trackSectionInfo =
      album.trackSections.map(trackSection => ({
        name: trackSection.name,
        color: trackSection.color,
        isDefaultTrackSection: trackSection.isDefaultTrackSection,

        firstTrackNumber: trackSection.startIndex + 1,
        lastTrackNumber: trackSection.startIndex + trackSection.tracks.length,

        includesCurrentTrack: track && trackSection.tracks.includes(track),
        currentTrackIndex: trackSection.tracks.indexOf(track),
      }));

    return data;
  },

  generate(data, relations, {
    getColors,
    html,
    language,
  }) {
    const {isTrackPage, isAlbumPage} = data;

    const trackListPart = html.tags([
      html.tag('h1', relations.albumLink),
      data.trackSectionInfo.map(
        ({
          name,
          color,
          isDefaultTrackSection,

          firstTrackNumber,
          lastTrackNumber,

          includesCurrentTrack,
          currentTrackIndex,
        }, index) => {
          const trackLinks = relations.trackLinks[index];

          const sectionName =
            html.tag('span', {class: 'group-name'},
              (isDefaultTrackSection
                ? language.$('albumSidebar.trackList.fallbackSectionName')
                : name));

          let style;
          if (color) {
            const {primary} = getColors(color);
            style = `--primary-color: ${primary}`;
          }

          const trackListItems =
            trackLinks.map((trackLink, index) =>
              html.tag('li',
                {
                  class:
                    includesCurrentTrack &&
                    index === currentTrackIndex &&
                    'current',
                },
                language.$('albumSidebar.trackList.item', {
                  track: trackLink,
                })));

          return html.tag('details',
            {
              class: includesCurrentTrack && 'current',

              open: (
                // Leave sidebar track sections collapsed on album info page,
                // since there's already a view of the full track listing
                // in the main content area.
                isTrackPage &&

                // Only expand the track section which includes the track
                // currently being viewed by default.
                includesCurrentTrack),
            },
            [
              html.tag('summary', {style},
                html.tag('span',
                  (data.hasTrackNumbers
                    ? language.$('albumSidebar.trackList.group.withRange', {
                        group: sectionName,
                        range: `${firstTrackNumber}–${lastTrackNumber}`
                      })
                    : language.$('albumSidebar.trackList.group', {
                        group: sectionName,
                      })))),

              (data.hasTrackNumbers
                ? html.tag('ol',
                    {start: firstTrackNumber},
                    trackListItems)
                : html.tag('ul', trackListItems)),
            ]);
        }),
    ]);

    if (isAlbumPage) {
      return {
        // leftSidebarStickyMode: 'last',
        leftSidebarMultiple: [
          ...(
            relations.groupBoxes
              .map(groupBox => groupBox.slot('isAlbumPage', true))
              .map(content => ({content}))),
          {content: trackListPart},
        ],
      };
    } else {
      return {
        // leftSidebarStickyMode: 'column',
        leftSidebarMultiple: [
          {content: trackListPart},
          // ...relations.groupBoxes.map(content => ({content})),
          {
            content:
              relations.groupBoxes
                .flatMap((content, i, {length}) => [
                  content,
                  i < length - 1 &&
                    html.tag('hr', {
                      style: `border-color: var(--primary-color); border-style: none none dotted none`
                    }),
                ])
                .filter(Boolean),
          },
        ],
      };
    }
  },
};