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
|
import {empty, stitchArrays} from '#sugar';
export default {
contentDependencies: [
'generateColorStyleAttribute',
'linkGroup',
'linkGroupGallery',
],
extraDependencies: ['html', 'language'],
relations(relation, category) {
return {
colorStyle:
relation('generateColorStyleAttribute', category.color),
groupInfoLinks:
category.groups.map(group =>
relation('linkGroup', group)),
groupGalleryLinks:
category.groups.map(group =>
(empty(group.albums)
? null
: relation('linkGroupGallery', group))),
};
},
data(category, group) {
const data = {};
data.name = category.name;
data.isCurrentCategory = category === group.category;
if (data.isCurrentCategory) {
data.currentGroupIndex = category.groups.indexOf(group);
}
return data;
},
slots: {
currentExtra: {
validate: v => v.is('gallery'),
},
},
generate: (data, relations, slots, {html, language}) =>
language.encapsulate('groupSidebar.groupList', capsule =>
html.tag('details',
data.isCurrentCategory &&
{class: 'current', open: true},
[
html.tag('summary',
relations.colorStyle,
html.tag('span',
language.$(capsule, 'category', {
category:
html.tag('span', {class: 'group-name'},
data.name),
}))),
html.tag('ul',
stitchArrays(({
infoLink: relations.groupInfoLinks,
galleryLink: relations.groupGalleryLinks,
})).map(({infoLink, galleryLink}, index) =>
html.tag('li',
index === data.currentGroupIndex &&
{class: 'current'},
language.$(capsule, 'item', {
group:
(slots.currentExtra === 'gallery'
? galleryLink ?? infoLink
: infoLink),
})))),
])),
};
|