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
|
import {empty, stitchArrays} from '#sugar';
export default {
contentDependencies: [
'generateColorStyleAttribute',
'generateCoverGrid',
'generatePageLayout',
'image',
'linkFlash',
'linkFlashAct',
],
extraDependencies: ['html', 'language', 'wikiData'],
sprawl: ({flashActData}) => ({flashActData}),
query(sprawl) {
const flashActs =
sprawl.flashActData.slice();
const jumpActs =
flashActs
.filter(act => act.side.acts.indexOf(act) === 0);
return {flashActs, jumpActs};
},
relations: (relation, query) => ({
layout:
relation('generatePageLayout'),
jumpLinkColorStyles:
query.jumpActs
.map(act => relation('generateColorStyleAttribute', act.side.color)),
actColorStyles:
query.flashActs
.map(act => relation('generateColorStyleAttribute', act.color)),
actLinks:
query.flashActs
.map(act => relation('linkFlashAct', act)),
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.directory),
jumpLinkLabels:
query.jumpActs
.map(act => act.side.name),
actAnchors:
query.flashActs
.map(act => act.directory),
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: [
!empty(data.jumpLinkLabels) && [
html.tag('p', {class: 'quick-info'},
language.$('misc.jumpTo')),
html.tag('ul', {class: 'quick-info'},
stitchArrays({
colorStyle: relations.jumpLinkColorStyles,
anchor: data.jumpLinkAnchors,
label: data.jumpLinkLabels,
}).map(({colorStyle, anchor, label}) =>
html.tag('li',
html.tag('a',
{href: '#' + anchor},
colorStyle,
label)))),
],
stitchArrays({
colorStyle: relations.actColorStyles,
actLink: relations.actLinks,
anchor: data.actAnchors,
coverGrid: relations.actCoverGrids,
coverGridImages: relations.actCoverGridImages,
coverGridLinks: relations.actCoverGridLinks,
coverGridNames: data.actCoverGridNames,
coverGridPaths: data.actCoverGridPaths,
}).map(({
colorStyle,
actLink,
anchor,
coverGrid,
coverGridImages,
coverGridLinks,
coverGridNames,
coverGridPaths,
}, index) => [
html.tag('h2',
{id: anchor},
colorStyle,
actLink),
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'},
],
}),
};
|