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
|
import {empty} from '#sugar';
export default {
contentDependencies: [
'generateCommentarySection',
'generateContentHeading',
'generateContributionList',
'generateFlashActSidebar',
'generateFlashCoverArtwork',
'generateFlashNavAccent',
'generatePageLayout',
'generateTrackList',
'linkExternal',
'linkFlashAct',
],
extraDependencies: ['html', 'language'],
query(flash) {
const query = {};
query.urls = [];
if (flash.page) {
query.urls.push(`https://homestuck.com/story/${flash.page}`);
}
if (!empty(flash.urls)) {
query.urls.push(...flash.urls);
}
return query;
},
relations: (relation, query, flash) => ({
layout:
relation('generatePageLayout'),
sidebar:
relation('generateFlashActSidebar', flash.act, flash),
externalLinks:
query.urls
.map(url => relation('linkExternal', url)),
cover:
relation('generateFlashCoverArtwork', flash),
contentHeading:
relation('generateContentHeading'),
flashActLink:
relation('linkFlashAct', flash.act),
flashNavAccent:
relation('generateFlashNavAccent', flash),
featuredTracksList:
relation('generateTrackList', flash.featuredTracks),
contributorContributionList:
relation('generateContributionList', flash.contributorContribs),
artistCommentarySection:
relation('generateCommentarySection', flash.commentary),
}),
data: (_query, flash) => ({
name:
flash.name,
color:
flash.color,
date:
flash.date,
}),
generate: (data, relations, {html, language}) =>
relations.layout.slots({
title:
language.$('flashPage.title', {
flash: data.name,
}),
color: data.color,
headingMode: 'sticky',
cover:
(relations.cover
? relations.cover.slots({
alt: language.$('misc.alt.flashArt'),
})
: null),
mainContent: [
html.tag('p',
language.$('releaseInfo.released', {
date: language.formatDate(data.date),
})),
html.tag('p',
{[html.onlyIfContent]: true},
language.$('releaseInfo.playOn', {
[language.onlyIfOptions]: ['links'],
links:
language.formatDisjunctionList(
relations.externalLinks
.map(link => link.slot('context', 'flash'))),
})),
html.tag('p',
{[html.onlyIfContent]: true},
{[html.joinChildren]: html.tag('br')},
[
!html.isBlank(relations.artistCommentarySection) &&
language.$('releaseInfo.readCommentary', {
link: html.tag('a',
{href: '#artist-commentary'},
language.$('releaseInfo.readCommentary.link')),
}),
]),
html.tags([
relations.contentHeading.clone()
.slots({
attributes: {id: 'features'},
title:
language.$('releaseInfo.tracksFeatured', {
flash: html.tag('i', data.name),
}),
}),
relations.featuredTracksList,
]),
html.tags([
relations.contentHeading.clone()
.slots({
attributes: {id: 'contributors'},
title: language.$('releaseInfo.contributors'),
}),
relations.contributorContributionList,
]),
relations.artistCommentarySection,
],
navLinkStyle: 'hierarchical',
navLinks: [
{auto: 'home'},
{html: relations.flashActLink.slot('color', false)},
{auto: 'current'},
],
navBottomRowContent: relations.flashNavAccent,
leftSidebar: relations.sidebar,
}),
};
|