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
  | 
import striptags from 'striptags';
export default {
  relations: (relation, act) => ({
    layout:
      relation('generatePageLayout'),
    flashIndexLink:
      relation('linkFlashIndex'),
    flashActNavLink:
      relation('linkFlashAct', 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,
    color: act.color,
    flashNames:
      act.flashes.map(flash => flash.name),
  }),
  generate: (data, relations, {language}) =>
    language.encapsulate('flashPage', pageCapsule =>
      relations.layout.slots({
        title:
          language.$(pageCapsule, 'title', {
            flash: striptags(data.name),
          }),
        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,
      })),
};
  |