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
|
import {V} from '#composite';
import Thing from '#thing';
import {isStringNonEmpty, validateArrayItems} from '#validators';
import {exposeConstant} from '#composite/control-flow';
import {contentString, thingList} from '#composite/wiki-properties';
export class HomepageLayout extends Thing {
static [Thing.friendlyName] = `Homepage Layout`;
static [Thing.wikiData] = 'homepageLayout';
static [Thing.oneInstancePerWiki] = true;
static [Thing.getPropertyDescriptors] = ({HomepageLayoutSection}) => ({
// Update & expose
sidebarContent: contentString(),
navbarLinks: {
flags: {update: true, expose: true},
update: {validate: validateArrayItems(isStringNonEmpty)},
expose: {transform: value => value ?? []},
},
sections: thingList(V(HomepageLayoutSection)),
// Expose only
isHomepageLayout: exposeConstant(V(true)),
});
static [Thing.yamlDocumentSpec] = {
fields: {
'Homepage': {ignore: true},
'Sidebar Content': {property: 'sidebarContent'},
'Navbar Links': {property: 'navbarLinks'},
},
};
}
|