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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
import CacheableObject from './cacheable-object.js';
import {
isColor,
isCountingNumber,
isName,
isString,
oneOf,
validateArrayItems,
validateInstanceOf,
validateReference,
validateReferenceList,
} from './validators.js';
export class HomepageLayoutRow extends CacheableObject {
static propertyDescriptors = {
// Update & expose
name: {
flags: {update: true, expose: true},
update: {validate: isName}
},
type: {
flags: {update: true, expose: true},
update: {
validate(value) {
throw new Error(`'type' property validator must be overridden`);
}
}
},
color: {
flags: {update: true, expose: true},
update: {validate: isColor}
},
};
}
export class HomepageLayoutAlbumsRow extends HomepageLayoutRow {
static propertyDescriptors = {
...HomepageLayoutRow.propertyDescriptors,
// Update & expose
type: {
flags: {update: true, expose: true},
update: {
validate(value) {
if (value !== 'albums') {
throw new TypeError(`Expected 'albums'`);
}
return true;
}
}
},
sourceGroupByRef: {
flags: {update: true, expose: true},
update: {validate: validateReference('group')}
},
sourceAlbumsByRef: {
flags: {update: true, expose: true},
update: {validate: validateReferenceList('album')}
},
countAlbumsFromGroup: {
flags: {update: true, expose: true},
update: {validate: isCountingNumber}
},
actionLinks: {
flags: {update: true, expose: true},
update: {validate: validateArrayItems(isString)}
},
}
}
export default class HomepageLayout extends CacheableObject {
static propertyDescriptors = {
// Update & expose
sidebarContent: {
flags: {update: true, expose: true},
update: {validate: isString}
},
rows: {
flags: {update: true, expose: true},
update: {
validate: validateArrayItems(validateInstanceOf(HomepageLayoutRow))
}
},
};
}
|