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
|
import {sortChronologically} from '#wiki-data';
export default {
contentDependencies: [
'generatePageLayout',
'generatePreviousNextLinks',
'linkNewsEntry',
'linkNewsIndex',
'transformContent',
],
extraDependencies: ['html', 'language', 'wikiData'],
sprawl({newsData}) {
return {newsData};
},
query({newsData}, newsEntry) {
const entries = sortChronologically(newsData.slice());
const index = entries.indexOf(newsEntry);
const previousEntry =
(index > 0
? entries[index - 1]
: null);
const nextEntry =
(index < entries.length - 1
? entries[index + 1]
: null);
return {previousEntry, nextEntry};
},
relations(relation, query, sprawl, newsEntry) {
const relations = {};
relations.layout =
relation('generatePageLayout');
relations.content =
relation('transformContent', newsEntry.content);
relations.newsIndexLink =
relation('linkNewsIndex');
relations.currentEntryLink =
relation('linkNewsEntry', newsEntry);
if (query.previousEntry || query.nextEntry) {
relations.previousNextLinks =
relation('generatePreviousNextLinks');
if (query.previousEntry) {
relations.previousEntryLink =
relation('linkNewsEntry', query.previousEntry);
}
if (query.nextEntry) {
relations.nextEntryLink =
relation('linkNewsEntry', query.nextEntry);
}
}
return relations;
},
data(query, sprawl, newsEntry) {
return {
name: newsEntry.name,
date: newsEntry.date,
};
},
generate(data, relations, {html, language}) {
return relations.layout.slots({
title:
language.$('newsEntryPage.title', {
entry: data.name,
}),
headingMode: 'sticky',
mainClasses: ['long-content'],
mainContent: [
html.tag('p',
language.$('newsEntryPage.published', {
date: language.formatDate(data.date),
})),
relations.content,
],
navLinkStyle: 'hierarchical',
navLinks: [
{auto: 'home'},
{html: relations.newsIndexLink},
{
auto: 'current',
accent:
(relations.previousNextLinks
? `(${language.formatUnitList(relations.previousNextLinks.slots({
previousLink: relations.previousEntryLink ?? null,
nextLink: relations.nextEntryLink ?? null,
}).content)})`
: null),
},
],
});
},
};
|