« get me outta code hell

generateFlashActGalleryPage.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/generateFlashActGalleryPage.js
blob: 681a61b87a6c3bfdc3d849839e303677c451e661 (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
export default {
  relations: (relation, act) => ({
    layout:
      relation('generatePageLayout'),

    flashIndexLink:
      relation('linkFlashIndex'),

    flashActNavLink:
      relation('linkFlashActWithTitle', act),

    flashActNavAccent:
      relation('generateFlashActNavAccent', act),

    sidebar:
      relation('generateFlashActSidebar', act, null),

    coverGrid:
      relation('generateCoverGrid'),

    coverGridImages:
      act.flashes
        .map(flash => relation('image', flash.coverArtwork)),

    flashLinks:
      act.flashes
        .map(flash => relation('linkFlash', flash)),
  }),

  data: (act) => ({
    name: act.name,
    title: act.title,
    color: act.color,

    flashNames:
      act.flashes.map(flash => flash.name),
  }),

  generate: (data, relations, {html, language}) =>
    language.encapsulate('flashActPage', pageCapsule =>
      relations.layout.slots({
        title:
          language.encapsulate(pageCapsule, 'title', workingCapsule => {
            const workingOptions = {act: data.name};

            if (data.title) {
              workingCapsule += '.withTitle'; // sigh
              workingOptions.title =
                html.tag('span', {class: 'flash-act-title'},
                  data.title);
            }

            return language.$(workingCapsule, workingOptions);
          }),

        color: data.color,
        headingMode: 'static',

        mainClasses: ['flash-index'],
        mainContent: [
          relations.coverGrid.slots({
            links: relations.flashLinks,
            images: relations.coverGridImages,
            names: data.flashNames,
            lazy: 6,
          }),
        ],

        navLinkStyle: 'hierarchical',
        navLinks: [
          {auto: 'home'},
          {html: relations.flashIndexLink},
          {html: relations.flashActNavLink},
        ],

        navBottomRowContent: relations.flashActNavAccent,

        leftSidebar: relations.sidebar,
      })),
};