-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathUI5ElementMetadata.ts
More file actions
353 lines (300 loc) · 8.92 KB
/
Copy pathUI5ElementMetadata.ts
File metadata and controls
353 lines (300 loc) · 8.92 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
import { camelToKebabCase, kebabToCamelCase } from "./util/StringHelper.js";
import { getSlottedNodes } from "./util/SlotsHelper.js";
import { getEffectiveScopingSuffixForTag } from "./CustomElementsScopeUtils.js";
import type UI5Element from "./UI5Element.js";
type SlotInvalidation = {
properties: boolean | Array<string>,
slots: boolean | Array<string>,
}
type Slot = {
type: typeof Node | typeof HTMLElement,
default?: boolean,
propertyName?: string,
individualSlots?: boolean,
invalidateOnChildChange?: boolean | SlotInvalidation,
};
type SlotValue = Node;
type Property = {
type?: BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor,
noAttribute?: boolean,
converter?: {
fromAttribute(value: string | null, type: unknown): PropertyValue,
toAttribute(value: unknown, type: unknown): string | null,
}
}
type PropertyValue = boolean | number | string | object | undefined | null;
type EventData = Record<string, { detail?: Record<string, object>, cancelable?: boolean, bubbles?: boolean }>;
type I18nBundleAccessorValue = {
bundleName: string,
target: typeof UI5Element
};
type I18nBundleAccessors = Record<string, I18nBundleAccessorValue>;
type Metadata = {
tag?: string,
managedSlots?: boolean,
properties?: Record<string, Property>,
slots?: Record<string, Slot>,
events?: EventData,
fastNavigation?: boolean,
themeAware?: boolean,
languageAware?: boolean,
cldr?: boolean,
formAssociated?: boolean,
shadowRootOptions?: Partial<ShadowRootInit>
features?: Array<string>
i18n?: I18nBundleAccessors
};
type State = Record<string, PropertyValue | Array<SlotValue>>;
/**
* @class
* @public
*/
class UI5ElementMetadata {
metadata: Metadata;
_initialState: State | undefined;
constructor(metadata: Metadata) {
this.metadata = metadata;
}
getInitialState() {
if (Object.prototype.hasOwnProperty.call(this, "_initialState")) {
return this._initialState!;
}
const initialState: State = {};
const slotsAreManaged = this.slotsAreManaged();
// Initialize slots
if (slotsAreManaged) {
const slots = this.getSlots();
for (const [slotName, slotData] of Object.entries<Slot>(slots)) { // eslint-disable-line
const propertyName = slotData.propertyName || slotName;
initialState[propertyName] = [];
initialState[kebabToCamelCase(propertyName)] = initialState[propertyName];
}
}
this._initialState = initialState;
return initialState;
}
/**
* Validates the slot's value and returns it if correct
* or throws an exception if not.
* **Note:** Only intended for use by UI5Element.js
* @public
*/
static validateSlotValue(value: Node, slotData: Slot): Node {
return validateSingleSlot(value, slotData);
}
/**
* Returns the tag of the UI5 Element without the scope
* @public
*/
getPureTag(): string {
return this.metadata.tag || "";
}
/**
* Returns the tag of the UI5 Element
* @public
*/
getTag(): string {
const pureTag = this.metadata.tag;
if (!pureTag) {
return "";
}
const suffix = getEffectiveScopingSuffixForTag(pureTag);
if (!suffix) {
return pureTag;
}
return `${pureTag}-${suffix}`;
}
/**
* Determines whether a property should have an attribute counterpart
* @public
* @param propName
*/
hasAttribute(propName: string): boolean {
const propData = this.getProperties()[propName];
return propData.type !== Object && !propData.noAttribute;
}
/**
* Returns an array with the properties of the UI5 Element (in camelCase)
* @public
*/
getPropertiesList(): Array<string> {
return Object.keys(this.getProperties());
}
/**
* Returns an array with the attributes of the UI5 Element (in kebab-case)
* @public
*/
getAttributesList(): Array<string> {
return this.getPropertiesList().filter(this.hasAttribute.bind(this)).map(camelToKebabCase);
}
/**
* Determines whether this UI5 Element has a default slot of type Node, therefore can slot text
*/
canSlotText() {
return (this.getSlots().default)?.type === Node;
}
/**
* Determines whether this UI5 Element supports any slots
* @public
*/
hasSlots(): boolean {
return !!Object.entries(this.getSlots()).length;
}
/**
* Determines whether this UI5 Element supports any slots with "individualSlots: true"
* @public
*/
hasIndividualSlots(): boolean {
return this.slotsAreManaged() && Object.values(this.getSlots()).some(slotData => slotData.individualSlots);
}
/**
* Determines whether this UI5 Element needs to invalidate if children are added/removed/changed
* @public
*/
slotsAreManaged(): boolean {
return !!this.metadata.managedSlots;
}
/**
* Determines whether this control supports F6 fast navigation
* @public
*/
supportsF6FastNavigation(): boolean {
return !!this.metadata.fastNavigation;
}
/**
* Returns an object with key-value pairs of properties and their metadata definitions
* @public
*/
getProperties(): Record<string, Property> {
if (!this.metadata.properties) {
this.metadata.properties = {};
}
return this.metadata.properties;
}
/**
* Returns an object with key-value pairs of events and their metadata definitions
* @public
*/
getEvents(): EventData {
if (!this.metadata.events) {
this.metadata.events = {};
}
return this.metadata.events;
}
/**
* Returns an object with key-value pairs of slots and their metadata definitions
* @public
*/
getSlots(): Record<string, Slot> {
if (!this.metadata.slots) {
this.metadata.slots = {};
}
return this.metadata.slots;
}
/**
* Determines whether this UI5 Element has any translatable texts (needs to be invalidated upon language change)
*/
isLanguageAware(): boolean {
return !!this.metadata.languageAware;
}
/**
* Determines whether this UI5 Element has any theme dependant carachteristics.
*/
isThemeAware(): boolean {
return !!this.metadata.themeAware;
}
/**
* Determines whether this UI5 Element needs CLDR assets to be fetched to work correctly
*/
needsCLDR(): boolean {
return !!this.metadata.cldr;
}
getShadowRootOptions(): Partial<ShadowRootInit> {
return this.metadata.shadowRootOptions || {};
}
/**
* Determines whether this UI5 Element has any theme dependant carachteristics.
*/
isFormAssociated(): boolean {
return !!this.metadata.formAssociated;
}
/**
* Matches a changed entity (property/slot) with the given name against the "invalidateOnChildChange" configuration
* and determines whether this should cause and invalidation
*
* @param slotName the name of the slot in which a child was changed
* @param type the type of change in the child: "property" or "slot"
* @param name the name of the property/slot that changed
*/
shouldInvalidateOnChildChange(slotName: string, type: "property" | "slot", name: string): boolean {
const config = this.getSlots()[slotName].invalidateOnChildChange;
// invalidateOnChildChange was not set in the slot metadata - by default child changes do not affect the component
if (config === undefined) {
return false;
}
// The simple format was used: invalidateOnChildChange: true/false;
if (typeof config === "boolean") {
return config;
}
// The complex format was used: invalidateOnChildChange: { properties, slots }
if (typeof config === "object") {
// A property was changed
if (type === "property") {
// The config object does not have a properties field
if (config.properties === undefined) {
return false;
}
// The config object has the short format: properties: true/false
if (typeof config.properties === "boolean") {
return config.properties;
}
// The config object has the complex format: properties: [...]
if (Array.isArray(config.properties)) {
return config.properties.includes(name);
}
throw new Error("Wrong format for invalidateOnChildChange.properties: boolean or array is expected");
}
// A slot was changed
if (type === "slot") {
// The config object does not have a slots field
if (config.slots === undefined) {
return false;
}
// The config object has the short format: slots: true/false
if (typeof config.slots === "boolean") {
return config.slots;
}
// The config object has the complex format: slots: [...]
if (Array.isArray(config.slots)) {
return config.slots.includes(name);
}
throw new Error("Wrong format for invalidateOnChildChange.slots: boolean or array is expected");
}
}
throw new Error("Wrong format for invalidateOnChildChange: boolean or object is expected");
}
getI18n(): I18nBundleAccessors {
if (!this.metadata.i18n) {
this.metadata.i18n = {};
}
return this.metadata.i18n;
}
}
const validateSingleSlot = (value: Node, slotData: Slot) => {
value && getSlottedNodes(value).forEach(el => {
if (!(el instanceof slotData.type)) {
throw new Error(`The element is not of type ${slotData.type.toString()}`);
}
});
return value;
};
export default UI5ElementMetadata;
export type {
Property,
PropertyValue,
Slot,
SlotValue,
EventData,
State,
Metadata,
};