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
|
export default {
contentDependencies: ['generateDotSwitcherTemplate'],
extraDependencies: ['html', 'language'],
relations: (relation) => ({
template:
relation('generateDotSwitcherTemplate'),
}),
slots: {
attributes: {
type: 'attributes',
mutable: false,
},
links: {
validate: v => v.strictArrayOf(v.isHTML),
},
},
generate: (relations, slots) =>
relations.template.slots({
attributes: [
{class: 'interpage'},
slots.attributes,
],
// TODO: Do something to set a class on a link to the current page??
options: slots.links,
}),
};
|