|
|
@ -21,10 +21,29 @@ class PageBuilder extends ScriptAndStyleContext { |
|
|
|
super(); |
|
|
|
this.#autoRegisteredComponents = []; |
|
|
|
this.#registeredComponents = []; |
|
|
|
this._groups = new Map(); |
|
|
|
} |
|
|
|
|
|
|
|
useCssCalc() { |
|
|
|
this._useCssCalc = true; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* @param {*|Array<*>} groups |
|
|
|
* @param {*} component |
|
|
|
*/ |
|
|
|
subscribeComponentToGroup(groups, component) { |
|
|
|
if (groups instanceof Array && !(groups instanceof String)) { |
|
|
|
for (let i = 0; i < groups.length; i++) { |
|
|
|
this.subscribeComponentToGroup(groups[i], component); |
|
|
|
} |
|
|
|
} else { |
|
|
|
if (!this._groups.has(groups)) { |
|
|
|
this._groups.set(groups, []); |
|
|
|
} |
|
|
|
this._groups.get(groups).push(component); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
autoRegisterComponent() { |
|
|
@ -159,6 +178,13 @@ class PageBuilder extends ScriptAndStyleContext { |
|
|
|
head.insertAdjacentElement("beforeend", meta); |
|
|
|
} |
|
|
|
|
|
|
|
generate() { |
|
|
|
super.generate(); |
|
|
|
compelgroups = this._groups; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|