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
|
import {stitchArrays} from '#sugar';
export default {
contentDependencies: ['generateDotSwitcherTemplate'],
extraDependencies: ['html', 'language'],
relations: (relation) => ({
template:
relation('generateDotSwitcherTemplate'),
}),
slots: {
attributes: {
type: 'attributes',
mutable: false,
},
initialOptionIndex: {type: 'number'},
titles: {
validate: v => v.strictArrayOf(v.isHTML),
},
targetIDs: {
validate: v => v.strictArrayOf(v.isString),
},
},
generate: (relations, slots, {html, language}) =>
relations.template.slots({
attributes: [
{class: 'intrapage'},
slots.attributes,
],
initialOptionIndex: slots.initialOptionIndex,
options:
stitchArrays({
title: slots.titles,
targetID: slots.targetIDs,
}).map(({title, targetID}) =>
html.tag('a', {href: '#'},
{'data-target-id': targetID},
language.sanitize(title))),
}),
};
|