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
|
import {empty} from '#sugar';
export default {
contentDependencies: [
'generateInterpageDotSwitcher',
'linkGroup',
'linkGroupGallery',
],
extraDependencies: ['html', 'language'],
relations: (relation, group) => ({
switcher:
relation('generateInterpageDotSwitcher'),
infoLink:
relation('linkGroup', group),
galleryLink:
(empty(group.albums)
? null
: relation('linkGroupGallery', group)),
}),
slots: {
currentExtra: {
validate: v => v.is('gallery'),
},
},
generate: (relations, slots, {language}) =>
relations.switcher.slots({
links: [
relations.infoLink.slots({
attributes: [
slots.currentExtra === null &&
{class: 'current'},
],
content: language.$('misc.nav.info'),
}),
relations.galleryLink?.slots({
attributes: [
slots.currentExtra === 'gallery' &&
{class: 'current'},
],
content: language.$('misc.nav.gallery'),
}),
],
}),
};
|