blob: c10cbf9889b66712cde19ab7a06352e98f2b09d7 (
plain)
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
|
import Thing from '#thing';
export default ({
documentModes: {allInOne},
thingConstructors: {Group, GroupCategory},
}) => ({
title: `Process groups file`,
file: 'groups.yaml',
documentMode: allInOne,
documentThing: document =>
('Category' in document
? GroupCategory
: Group),
connect(results) {
let groupCategory;
let groupRefs = [];
if (results[0] && !(results[0] instanceof GroupCategory)) {
throw new Error(`Expected a category at top of group data file`);
}
for (const thing of results) {
if (thing instanceof GroupCategory) {
if (groupCategory) {
Object.assign(groupCategory, {groups: groupRefs});
}
groupCategory = thing;
groupRefs = [];
} else {
groupRefs.push(Thing.getReference(thing));
}
}
if (groupCategory) {
Object.assign(groupCategory, {groups: groupRefs});
}
},
// Groups aren't sorted at all, always preserving the order in the data
// file as-is.
sort: null,
});
|