« get me outta code hell

generateFlashIndexPage.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/generateFlashIndexPage.js
blob: 662a64a2183db7dff488dd03c73d6f0ac0fa66e1 (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
import {stitchArrays} from '../../util/sugar.js';

export default {
  contentDependencies: [
    'generateColorStyleVariables',
    'generateCoverGrid',
    'generatePageLayout',
    'image',
    'linkFlash',
  ],

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

  sprawl: ({flashActData}) => ({flashActData}),

  query(sprawl) {
    const flashActs =
      sprawl.flashActData.slice();

    const jumpActs =
      flashActs
        .filter(act => act.jump);

    return {flashActs, jumpActs};
  },

  relations: (relation, query) => ({
    layout:
      relation('generatePageLayout'),

    jumpLinkColorVariables:
      query.jumpActs
        .map(() => relation('generateColorStyleVariables')),

    actColorVariables:
      query.flashActs
        .map(() => relation('generateColorStyleVariables')),

    actFirstFlashLinks:
      query.flashActs
        .map(act => relation('linkFlash', act.flashes[0])),

    actCoverGrids:
      query.flashActs
        .map(() => relation('generateCoverGrid')),

    actCoverGridLinks:
      query.flashActs
        .map(act => act.flashes
          .map(flash => relation('linkFlash', flash))),

    actCoverGridImages:
      query.flashActs
        .map(act => act.flashes
          .map(() => relation('image'))),
  }),

  data: (query) => ({
    jumpLinkAnchors:
      query.jumpActs
        .map(act => act.anchor),

    jumpLinkColors:
      query.jumpActs
        .map(act => act.jumpColor),

    jumpLinkLabels:
      query.jumpActs
        .map(act => act.jump),

    actAnchors:
      query.flashActs
        .map(act => act.anchor),

    actColors:
      query.flashActs
        .map(act => act.color),

    actNames:
      query.flashActs
        .map(act => act.name),

    actCoverGridNames:
      query.flashActs
        .map(act => act.flashes
          .map(flash => flash.name)),

    actCoverGridPaths:
      query.flashActs
        .map(act => act.flashes
          .map(flash => ['media.flashArt', flash.directory, flash.coverArtFileExtension])),
  }),

  generate: (data, relations, {html, language}) =>
    relations.layout.slots({
      title: language.$('flashIndex.title'),
      headingMode: 'static',

      mainClasses: ['flash-index'],
      mainContent: [
        html.tag('p',
          {class: 'quick-info'},
          language.$('misc.jumpTo')),

        html.tag('ul',
          {class: 'quick-info'},
          stitchArrays({
            colorVariables: relations.jumpLinkColorVariables,
            anchor: data.jumpLinkAnchors,
            color: data.jumpLinkColors,
            label: data.jumpLinkLabels,
          }).map(({colorVariables, anchor, color, label}) =>
              html.tag('li',
                html.tag('a', {
                  href: '#' + anchor,
                  style: colorVariables.slot('color', color).content,
                }, label)))),

        stitchArrays({
          colorVariables: relations.actColorVariables,
          firstFlashLink: relations.actFirstFlashLinks,
          anchor: data.actAnchors,
          color: data.actColors,
          name: data.actNames,

          coverGrid: relations.actCoverGrids,
          coverGridImages: relations.actCoverGridImages,
          coverGridLinks: relations.actCoverGridLinks,
          coverGridNames: data.actCoverGridNames,
          coverGridPaths: data.actCoverGridPaths,
        }).map(({
            colorVariables,
            anchor,
            color,
            name,
            firstFlashLink,

            coverGrid,
            coverGridImages,
            coverGridLinks,
            coverGridNames,
            coverGridPaths,
          }, index) => [
            html.tag('h2',
              {
                id: anchor,
                style: colorVariables.slot('color', color).content,
              },
              firstFlashLink.slot('content', name)),

            coverGrid.slots({
              links: coverGridLinks,
              names: coverGridNames,
              lazy: index === 0 ? 4 : true,

              images:
                stitchArrays({
                  image: coverGridImages,
                  path: coverGridPaths,
                }).map(({image, path}) =>
                    image.slot('path', path)),
            }),
          ]),
      ],

      navLinkStyle: 'hierarchical',
      navLinks: [
        {auto: 'home'},
        {auto: 'current'},
      ],
    }),
};