@ui5/webcomponents-base 0.0.0-0742854fd → 0.0.0-11d529e8a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (278) hide show
  1. package/.eslintignore +2 -0
  2. package/CHANGELOG.md +109 -0
  3. package/README.md +26 -1
  4. package/bundle.esm.js +13 -10
  5. package/dist/AssetRegistry.js +8 -7
  6. package/dist/Boot.js +43 -0
  7. package/dist/DOMObserver.js +65 -0
  8. package/dist/Device.js +58 -779
  9. package/dist/EventProvider.js +30 -26
  10. package/dist/FontFace.js +52 -7
  11. package/dist/InitialConfiguration.js +26 -21
  12. package/dist/Keys.js +51 -0
  13. package/dist/MediaRange.js +109 -0
  14. package/{src/util/parseProperties.js → dist/PropertiesFileFormat.js} +6 -0
  15. package/dist/Render.js +173 -0
  16. package/dist/RenderScheduler.js +16 -138
  17. package/dist/StaticArea.js +1 -29
  18. package/dist/StaticAreaItem.js +64 -65
  19. package/dist/Theming.js +2 -1
  20. package/dist/UI5Element.js +305 -374
  21. package/dist/UI5ElementMetadata.js +115 -16
  22. package/dist/asset-registries/Icons.js +110 -14
  23. package/dist/asset-registries/Illustrations.js +30 -0
  24. package/dist/asset-registries/LocaleData.js +90 -66
  25. package/dist/asset-registries/Themes.js +23 -33
  26. package/dist/asset-registries/i18n.js +61 -50
  27. package/dist/config/Language.js +18 -20
  28. package/dist/delegate/ItemNavigation.js +233 -201
  29. package/dist/delegate/ResizeHandler.js +78 -37
  30. package/dist/delegate/ScrollEnablement.js +49 -20
  31. package/dist/features/OpenUI5Support.js +41 -6
  32. package/dist/generated/AssetParameters.js +1 -1
  33. package/dist/i18nBundle.js +6 -2
  34. package/dist/isLegacyBrowser.js +3 -0
  35. package/dist/locale/applyDirection.js +6 -4
  36. package/dist/locale/directionChange.js +32 -0
  37. package/dist/locale/getEffectiveDir.js +28 -0
  38. package/dist/locale/getLocale.js +12 -2
  39. package/dist/locale/languageChange.js +1 -1
  40. package/dist/renderer/LitRenderer.js +19 -18
  41. package/dist/resources/bundle.esm.js +17 -109
  42. package/dist/resources/bundle.esm.js.map +1 -1
  43. package/dist/sap/base/Log.js +241 -0
  44. package/dist/sap/base/assert.js +8 -0
  45. package/dist/sap/base/security/URLListValidator.js +148 -0
  46. package/dist/sap/base/security/sanitizeHTML.js +16 -0
  47. package/dist/sap/base/util/now.js +7 -0
  48. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +3585 -0
  49. package/dist/test-resources/assets/Themes.js +8 -8
  50. package/dist/test-resources/elements/Parent.js +6 -2
  51. package/dist/test-resources/elements/WithStaticArea.js +2 -1
  52. package/dist/test-resources/pages/AllTestElements.html +3 -3
  53. package/dist/test-resources/pages/Configuration.html +0 -2
  54. package/dist/test-resources/pages/ConfigurationScript.html +0 -2
  55. package/dist/test-resources/pages/i18n.html +1 -6
  56. package/dist/test-resources/specs/ConfigurationChange.spec.js +10 -8
  57. package/dist/test-resources/specs/ConfigurationScript.spec.js +25 -23
  58. package/dist/test-resources/specs/ConfigurationURL.spec.js +65 -17
  59. package/dist/test-resources/specs/CustomTheme.spec.js +7 -5
  60. package/dist/test-resources/specs/EventProvider.spec.js +63 -0
  61. package/dist/test-resources/specs/StaticArea.spec.js +56 -12
  62. package/dist/test-resources/specs/Theming.spec.js +9 -7
  63. package/dist/test-resources/specs/UI5ElementInvalidation.js +54 -70
  64. package/dist/test-resources/specs/UI5ElementLifecycle.js +17 -15
  65. package/dist/test-resources/specs/UI5ElementListenForChildPropChanges.spec.js +25 -51
  66. package/dist/test-resources/specs/UI5ElementMetadataExt.js +9 -7
  67. package/dist/test-resources/specs/UI5ElementPropertyValidation.js +7 -5
  68. package/dist/test-resources/specs/UI5ElementPropsAndAttrs.spec.js +37 -35
  69. package/dist/test-resources/specs/UI5ElementShadowDOM.js +10 -8
  70. package/dist/test-resources/specs/UI5ElementSlots.js +10 -8
  71. package/dist/theming/CustomStyle.js +2 -2
  72. package/dist/theming/ThemeLoaded.js +22 -0
  73. package/dist/theming/applyTheme.js +2 -5
  74. package/dist/theming/getConstructableStyle.js +7 -6
  75. package/dist/theming/getEffectiveStyle.js +15 -8
  76. package/dist/theming/getStylesString.js +1 -1
  77. package/dist/types/CSSColor.js +9 -0
  78. package/dist/types/CalendarType.js +1 -1
  79. package/dist/types/DataType.js +13 -1
  80. package/dist/types/Float.js +4 -0
  81. package/dist/types/Integer.js +4 -0
  82. package/dist/types/InvisibleMessageMode.js +30 -0
  83. package/dist/types/ItemNavigationBehavior.js +2 -7
  84. package/dist/types/PopupState.js +1 -1
  85. package/dist/types/ValueState.js +1 -1
  86. package/dist/updateShadowRoot.js +26 -0
  87. package/dist/util/AriaLabelHelper.js +4 -4
  88. package/dist/util/Caret.js +45 -0
  89. package/dist/util/ColorConversion.js +370 -0
  90. package/dist/util/FocusableElements.js +17 -6
  91. package/dist/util/HTMLSanitizer.js +7 -0
  92. package/dist/util/InvisibleMessage.js +58 -0
  93. package/dist/util/PopupUtils.js +93 -0
  94. package/dist/util/SlotsHelper.js +43 -0
  95. package/dist/util/TabbableElements.js +1 -1
  96. package/dist/util/arraysAreEqual.js +15 -0
  97. package/dist/util/clamp.js +12 -0
  98. package/dist/util/debounce.js +17 -0
  99. package/dist/util/encodeCSS.js +24 -0
  100. package/dist/util/getActiveElement.js +11 -0
  101. package/dist/util/getClassCopy.js +10 -0
  102. package/dist/util/getEffectiveContentDensity.js +5 -0
  103. package/dist/util/isElementInView.js +15 -0
  104. package/dist/util/isNodeTabbable.js +4 -4
  105. package/hash.txt +1 -0
  106. package/index.js +1 -1
  107. package/package-scripts.js +33 -18
  108. package/package.json +20 -12
  109. package/src/AssetRegistry.js +8 -7
  110. package/src/Boot.js +43 -0
  111. package/src/DOMObserver.js +65 -0
  112. package/src/Device.js +58 -779
  113. package/src/EventProvider.js +30 -26
  114. package/src/FontFace.js +52 -7
  115. package/src/InitialConfiguration.js +26 -21
  116. package/src/Keys.js +51 -0
  117. package/src/MediaRange.js +109 -0
  118. package/{dist/util/parseProperties.js → src/PropertiesFileFormat.js} +6 -0
  119. package/src/Render.js +173 -0
  120. package/src/RenderScheduler.js +16 -138
  121. package/src/StaticArea.js +1 -29
  122. package/src/StaticAreaItem.js +64 -65
  123. package/src/Theming.js +2 -1
  124. package/src/UI5Element.js +305 -374
  125. package/src/UI5ElementMetadata.js +115 -16
  126. package/src/asset-registries/Icons.js +110 -14
  127. package/src/asset-registries/Illustrations.js +30 -0
  128. package/src/asset-registries/LocaleData.js +90 -66
  129. package/src/asset-registries/Themes.js +23 -33
  130. package/src/asset-registries/i18n.js +61 -50
  131. package/src/config/Language.js +18 -20
  132. package/src/delegate/ItemNavigation.js +233 -201
  133. package/src/delegate/ResizeHandler.js +78 -37
  134. package/src/delegate/ScrollEnablement.js +49 -20
  135. package/src/features/OpenUI5Support.js +41 -6
  136. package/src/i18nBundle.js +6 -2
  137. package/src/isLegacyBrowser.js +3 -0
  138. package/src/locale/applyDirection.js +6 -4
  139. package/src/locale/directionChange.js +32 -0
  140. package/src/locale/getEffectiveDir.js +28 -0
  141. package/src/locale/getLocale.js +12 -2
  142. package/src/locale/languageChange.js +1 -1
  143. package/src/renderer/LitRenderer.js +19 -18
  144. package/src/theming/CustomStyle.js +2 -2
  145. package/src/theming/ThemeLoaded.js +22 -0
  146. package/src/theming/applyTheme.js +2 -5
  147. package/src/theming/getConstructableStyle.js +7 -6
  148. package/src/theming/getEffectiveStyle.js +15 -8
  149. package/src/theming/getStylesString.js +1 -1
  150. package/src/types/CSSColor.js +9 -0
  151. package/src/types/CalendarType.js +1 -1
  152. package/src/types/DataType.js +13 -1
  153. package/src/types/Float.js +4 -0
  154. package/src/types/Integer.js +4 -0
  155. package/src/types/InvisibleMessageMode.js +30 -0
  156. package/src/types/ItemNavigationBehavior.js +2 -7
  157. package/src/types/PopupState.js +1 -1
  158. package/src/types/ValueState.js +1 -1
  159. package/src/updateShadowRoot.js +26 -0
  160. package/src/util/AriaLabelHelper.js +4 -4
  161. package/src/util/Caret.js +45 -0
  162. package/src/util/ColorConversion.js +370 -0
  163. package/src/util/FocusableElements.js +17 -6
  164. package/src/util/HTMLSanitizer.js +7 -0
  165. package/src/util/InvisibleMessage.js +58 -0
  166. package/src/util/PopupUtils.js +93 -0
  167. package/src/util/SlotsHelper.js +43 -0
  168. package/src/util/TabbableElements.js +1 -1
  169. package/src/util/arraysAreEqual.js +15 -0
  170. package/src/util/clamp.js +12 -0
  171. package/src/util/debounce.js +17 -0
  172. package/src/util/encodeCSS.js +24 -0
  173. package/src/util/getActiveElement.js +11 -0
  174. package/src/util/getClassCopy.js +10 -0
  175. package/src/util/getEffectiveContentDensity.js +5 -0
  176. package/src/util/isElementInView.js +15 -0
  177. package/src/util/isNodeTabbable.js +4 -4
  178. package/used-modules.txt +7 -0
  179. package/bundle.es5.js +0 -28
  180. package/dist/SVGIconRegistry.js +0 -62
  181. package/dist/boot.js +0 -34
  182. package/dist/compatibility/DOMObserver.js +0 -62
  183. package/dist/compatibility/patchNodeValue.js +0 -24
  184. package/dist/compatibility/whenPolyfillLoaded.js +0 -26
  185. package/dist/config/AssetsPath.js +0 -17
  186. package/dist/delegate/CustomResize.js +0 -78
  187. package/dist/delegate/NativeResize.js +0 -44
  188. package/dist/features/PropertiesFormatSupport.js +0 -8
  189. package/dist/features/browsersupport/Edge.js +0 -6
  190. package/dist/features/browsersupport/IE11.js +0 -41
  191. package/dist/features/browsersupport/IE11WithWebComponentsPolyfill.js +0 -5
  192. package/dist/renderer/ifDefined.js +0 -21
  193. package/dist/renderer/scopeHTML.js +0 -32
  194. package/dist/resources/bundle.es5.js +0 -212
  195. package/dist/resources/bundle.es5.js.map +0 -1
  196. package/dist/theming/CSSVarsPonyfill.js +0 -48
  197. package/dist/theming/adaptCSSForIE.js +0 -95
  198. package/dist/theming/createComponentStyleTag.js +0 -54
  199. package/dist/thirdparty/Array.from.js +0 -16
  200. package/dist/thirdparty/Array.prototype.fill.js +0 -44
  201. package/dist/thirdparty/Array.prototype.find.js +0 -46
  202. package/dist/thirdparty/Array.prototype.includes.js +0 -51
  203. package/dist/thirdparty/Element.prototype.closest.js +0 -11
  204. package/dist/thirdparty/Element.prototype.matches.js +0 -6
  205. package/dist/thirdparty/Map.prototype.keys.js +0 -9
  206. package/dist/thirdparty/Number.isInteger.js +0 -5
  207. package/dist/thirdparty/Number.isNaN.js +0 -1
  208. package/dist/thirdparty/Number.parseInt.js +0 -1
  209. package/dist/thirdparty/Object.assign.js +0 -31
  210. package/dist/thirdparty/Object.entries.js +0 -11
  211. package/dist/thirdparty/Symbol.js +0 -2
  212. package/dist/thirdparty/WeakSet.js +0 -27
  213. package/dist/thirdparty/es6-string-methods.js +0 -182
  214. package/dist/thirdparty/events-polyfills.js +0 -89
  215. package/dist/thirdparty/fetch.js +0 -1
  216. package/dist/thirdparty/template.js +0 -600
  217. package/dist/thirdparty/webcomponents-sd-ce-pf.js +0 -318
  218. package/dist/util/getEffectiveAssetPath.js +0 -12
  219. package/dist/util/isSlot.js +0 -3
  220. package/dist/webcomponentsjs/LICENSE.md +0 -19
  221. package/dist/webcomponentsjs/README.md +0 -229
  222. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  223. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  224. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  225. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  226. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  227. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  228. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  229. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  230. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  231. package/dist/webcomponentsjs/package.json +0 -46
  232. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  233. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  234. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  235. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  236. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  237. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  238. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  239. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  240. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  241. package/src/SVGIconRegistry.js +0 -62
  242. package/src/boot.js +0 -34
  243. package/src/compatibility/DOMObserver.js +0 -62
  244. package/src/compatibility/patchNodeValue.js +0 -24
  245. package/src/compatibility/whenPolyfillLoaded.js +0 -26
  246. package/src/config/AssetsPath.js +0 -17
  247. package/src/delegate/CustomResize.js +0 -78
  248. package/src/delegate/NativeResize.js +0 -44
  249. package/src/features/PropertiesFormatSupport.js +0 -8
  250. package/src/features/browsersupport/Edge.js +0 -6
  251. package/src/features/browsersupport/IE11.js +0 -41
  252. package/src/features/browsersupport/IE11WithWebComponentsPolyfill.js +0 -5
  253. package/src/renderer/ifDefined.js +0 -21
  254. package/src/renderer/scopeHTML.js +0 -32
  255. package/src/theming/CSSVarsPonyfill.js +0 -48
  256. package/src/theming/adaptCSSForIE.js +0 -95
  257. package/src/theming/createComponentStyleTag.js +0 -54
  258. package/src/thirdparty/Array.from.js +0 -16
  259. package/src/thirdparty/Array.prototype.fill.js +0 -44
  260. package/src/thirdparty/Array.prototype.find.js +0 -46
  261. package/src/thirdparty/Array.prototype.includes.js +0 -51
  262. package/src/thirdparty/Element.prototype.closest.js +0 -11
  263. package/src/thirdparty/Element.prototype.matches.js +0 -6
  264. package/src/thirdparty/Map.prototype.keys.js +0 -9
  265. package/src/thirdparty/Number.isInteger.js +0 -5
  266. package/src/thirdparty/Number.isNaN.js +0 -1
  267. package/src/thirdparty/Number.parseInt.js +0 -1
  268. package/src/thirdparty/Object.assign.js +0 -31
  269. package/src/thirdparty/Object.entries.js +0 -11
  270. package/src/thirdparty/Symbol.js +0 -2
  271. package/src/thirdparty/WeakSet.js +0 -27
  272. package/src/thirdparty/es6-string-methods.js +0 -182
  273. package/src/thirdparty/events-polyfills.js +0 -89
  274. package/src/thirdparty/fetch.js +0 -1
  275. package/src/thirdparty/template.js +0 -600
  276. package/src/thirdparty/webcomponents-sd-ce-pf.js +0 -318
  277. package/src/util/getEffectiveAssetPath.js +0 -12
  278. package/src/util/isSlot.js +0 -3
package/src/UI5Element.js CHANGED
@@ -1,36 +1,50 @@
1
1
  import merge from "./thirdparty/merge.js";
2
- import boot from "./boot.js";
2
+ import { boot } from "./Boot.js";
3
3
  import UI5ElementMetadata from "./UI5ElementMetadata.js";
4
- import executeTemplate from "./renderer/executeTemplate.js";
4
+ import EventProvider from "./EventProvider.js";
5
+ import getSingletonElementInstance from "./util/getSingletonElementInstance.js";
5
6
  import StaticAreaItem from "./StaticAreaItem.js";
6
- import RenderScheduler from "./RenderScheduler.js";
7
+ import updateShadowRoot from "./updateShadowRoot.js";
8
+ import { renderDeferred, renderImmediately, cancelRender } from "./Render.js";
7
9
  import { registerTag, isTagRegistered, recordTagRegistrationFailure } from "./CustomElementsRegistry.js";
8
- import DOMObserver from "./compatibility/DOMObserver.js";
10
+ import { observeDOMNode, unobserveDOMNode } from "./DOMObserver.js";
9
11
  import { skipOriginalEvent } from "./config/NoConflict.js";
10
- import { getRTL } from "./config/RTL.js";
11
- import getConstructableStyle from "./theming/getConstructableStyle.js";
12
- import createComponentStyleTag from "./theming/createComponentStyleTag.js";
13
- import getEffectiveStyle from "./theming/getEffectiveStyle.js";
14
- import Integer from "./types/Integer.js";
15
- import Float from "./types/Float.js";
12
+ import getEffectiveDir from "./locale/getEffectiveDir.js";
13
+ import DataType from "./types/DataType.js";
16
14
  import { kebabToCamelCase, camelToKebabCase } from "./util/StringHelper.js";
17
15
  import isValidPropertyName from "./util/isValidPropertyName.js";
18
- import isSlot from "./util/isSlot.js";
16
+ import isDescendantOf from "./util/isDescendantOf.js";
17
+ import { isSlot, getSlotName, getSlottedElementsList } from "./util/SlotsHelper.js";
18
+ import arraysAreEqual from "./util/arraysAreEqual.js";
19
+ import getClassCopy from "./util/getClassCopy.js";
19
20
  import { markAsRtlAware } from "./locale/RTLAwareRegistry.js";
20
-
21
- const metadata = {
22
- events: {
23
- "_property-change": {},
24
- },
25
- };
21
+ import isLegacyBrowser from "./isLegacyBrowser.js";
26
22
 
27
23
  let autoId = 0;
28
24
 
29
25
  const elementTimeouts = new Map();
30
26
  const uniqueDependenciesCache = new Map();
31
27
 
32
- const GLOBAL_CONTENT_DENSITY_CSS_VAR = "--_ui5_content_density";
33
- const GLOBAL_DIR_CSS_VAR = "--_ui5_dir";
28
+ /**
29
+ * Triggers re-rendering of a UI5Element instance due to state change.
30
+ *
31
+ * @param changeInfo An object with information about the change that caused invalidation.
32
+ * @private
33
+ */
34
+ function _invalidate(changeInfo) {
35
+ // Invalidation should be suppressed: 1) before the component is rendered for the first time 2) and during the execution of onBeforeRendering
36
+ // This is necessary not only as an optimization, but also to avoid infinite loops on invalidation between children and parents (when invalidateOnChildChange is used)
37
+ if (this._suppressInvalidation) {
38
+ return;
39
+ }
40
+
41
+ // Call the onInvalidation hook
42
+ this.onInvalidation(changeInfo);
43
+
44
+ this._changedState.push(changeInfo);
45
+ renderDeferred(this);
46
+ this._eventProvider.fireEvent("invalidate", { ...changeInfo, target: this });
47
+ }
34
48
 
35
49
  /**
36
50
  * Base class for all UI5 Web Components
@@ -45,40 +59,26 @@ const GLOBAL_DIR_CSS_VAR = "--_ui5_dir";
45
59
  class UI5Element extends HTMLElement {
46
60
  constructor() {
47
61
  super();
48
- this._propertyChangeListeners = new Set();
49
- this._initializeState();
50
- this._upgradeAllProperties();
51
- this._initializeContainers();
52
- this._upToDate = false;
53
- this._inDOM = false;
54
- this._fullyConnected = false;
55
62
 
63
+ this._changedState = []; // Filled on each invalidation, cleared on re-render (used for debugging)
64
+ this._suppressInvalidation = true; // A flag telling whether all invalidations should be ignored. Initialized with "true" because a UI5Element can not be invalidated until it is rendered for the first time
65
+ this._inDOM = false; // A flag telling whether the UI5Element is currently in the DOM tree of the document or not
66
+ this._fullyConnected = false; // A flag telling whether the UI5Element's onEnterDOM hook was called (since it's possible to have the element removed from DOM before that)
67
+ this._childChangeListeners = new Map(); // used to store lazy listeners per slot for the child change event of every child inside that slot
68
+ this._slotChangeListeners = new Map(); // used to store lazy listeners per slot for the slotchange event of all slot children inside that slot
69
+ this._eventProvider = new EventProvider(); // used by parent components for listening to changes to child components
56
70
  let deferredResolve;
57
71
  this._domRefReadyPromise = new Promise(resolve => {
58
72
  deferredResolve = resolve;
59
73
  });
60
74
  this._domRefReadyPromise._deferredResolve = deferredResolve;
61
75
 
62
- this._monitoredChildProps = new Map();
63
- this._shouldInvalidateParent = false;
64
- }
65
-
66
- addEventListener(type, listener, options) {
67
- if (type === "_property-change") {
68
- this._propertyChangeListeners.add(listener);
69
- }
70
- return super.addEventListener(type, listener, options);
71
- }
76
+ this._initializeState();
77
+ this._upgradeAllProperties();
72
78
 
73
- removeEventListener(type, listener, options) {
74
- if (type === "_property-change") {
75
- this._propertyChangeListeners.delete(listener);
79
+ if (this.constructor._needsShadowDOM()) {
80
+ this.attachShadow({ mode: "open" });
76
81
  }
77
- return super.removeEventListener(type, listener, options);
78
- }
79
-
80
- _hasPropertyChangeListeners() {
81
- return !!this._propertyChangeListeners.size;
82
82
  }
83
83
 
84
84
  /**
@@ -95,24 +95,6 @@ class UI5Element extends HTMLElement {
95
95
  return this.__id;
96
96
  }
97
97
 
98
- /**
99
- * @private
100
- */
101
- _initializeContainers() {
102
- const needsShadowDOM = this.constructor._needsShadowDOM();
103
- const needsStaticArea = this.constructor._needsStaticArea();
104
-
105
- // Init Shadow Root
106
- if (needsShadowDOM) {
107
- this.attachShadow({ mode: "open" });
108
- }
109
-
110
- // Init StaticAreaItem only if needed
111
- if (needsStaticArea) {
112
- this.staticAreaItem = new StaticAreaItem(this);
113
- }
114
- }
115
-
116
98
  /**
117
99
  * Do not call this method from derivatives of UI5Element, use "onEnterDOM" only
118
100
  * @private
@@ -120,7 +102,6 @@ class UI5Element extends HTMLElement {
120
102
  async connectedCallback() {
121
103
  this.setAttribute(this.constructor.getMetadata().getPureTag(), "");
122
104
 
123
- const needsShadowDOM = this.constructor._needsShadowDOM();
124
105
  const slotsAreManaged = this.constructor.getMetadata().slotsAreManaged();
125
106
 
126
107
  this._inDOM = true;
@@ -131,23 +112,15 @@ class UI5Element extends HTMLElement {
131
112
  await this._processChildren();
132
113
  }
133
114
 
134
- // Render the Shadow DOM
135
- if (needsShadowDOM) {
136
- if (!this.shadowRoot) { // Workaround for Firefox74 bug
137
- await Promise.resolve();
138
- }
139
-
140
- if (!this._inDOM) { // Component removed from DOM while _processChildren was running
141
- return;
142
- }
115
+ if (!this._inDOM) { // Component removed from DOM while _processChildren was running
116
+ return;
117
+ }
143
118
 
144
- RenderScheduler.register(this);
145
- RenderScheduler.renderImmediately(this);
146
- this._domRefReadyPromise._deferredResolve();
147
- this._fullyConnected = true;
148
- if (typeof this.onEnterDOM === "function") {
149
- this.onEnterDOM();
150
- }
119
+ renderImmediately(this);
120
+ this._domRefReadyPromise._deferredResolve();
121
+ this._fullyConnected = true;
122
+ if (typeof this.onEnterDOM === "function") {
123
+ this.onEnterDOM();
151
124
  }
152
125
  }
153
126
 
@@ -156,8 +129,6 @@ class UI5Element extends HTMLElement {
156
129
  * @private
157
130
  */
158
131
  disconnectedCallback() {
159
- const needsShadowDOM = this.constructor._needsShadowDOM();
160
- const needsStaticArea = this.constructor._needsStaticArea();
161
132
  const slotsAreManaged = this.constructor.getMetadata().slotsAreManaged();
162
133
 
163
134
  this._inDOM = false;
@@ -166,21 +137,18 @@ class UI5Element extends HTMLElement {
166
137
  this._stopObservingDOMChildren();
167
138
  }
168
139
 
169
- if (needsShadowDOM) {
170
- RenderScheduler.deregister(this);
171
- if (this._fullyConnected) {
172
- if (typeof this.onExitDOM === "function") {
173
- this.onExitDOM();
174
- }
175
- this._fullyConnected = false;
140
+ if (this._fullyConnected) {
141
+ if (typeof this.onExitDOM === "function") {
142
+ this.onExitDOM();
176
143
  }
144
+ this._fullyConnected = false;
177
145
  }
178
146
 
179
- if (needsStaticArea) {
180
- this.staticAreaItem._removeFragmentFromStaticArea();
147
+ if (this.staticAreaItem && this.staticAreaItem.parentElement) {
148
+ this.staticAreaItem.parentElement.removeChild(this.staticAreaItem);
181
149
  }
182
150
 
183
- RenderScheduler.cancelRender(this);
151
+ cancelRender(this);
184
152
  }
185
153
 
186
154
  /**
@@ -196,16 +164,16 @@ class UI5Element extends HTMLElement {
196
164
  const mutationObserverOptions = {
197
165
  childList: true,
198
166
  subtree: canSlotText,
199
- characterData: true,
167
+ characterData: canSlotText,
200
168
  };
201
- DOMObserver.observeDOMNode(this, this._processChildren.bind(this), mutationObserverOptions);
169
+ observeDOMNode(this, this._processChildren.bind(this), mutationObserverOptions);
202
170
  }
203
171
 
204
172
  /**
205
173
  * @private
206
174
  */
207
175
  _stopObservingDOMChildren() {
208
- DOMObserver.unobserveDOMNode(this);
176
+ unobserveDOMNode(this);
209
177
  }
210
178
 
211
179
  /**
@@ -227,8 +195,14 @@ class UI5Element extends HTMLElement {
227
195
  const canSlotText = this.constructor.getMetadata().canSlotText();
228
196
  const domChildren = Array.from(canSlotText ? this.childNodes : this.children);
229
197
 
230
- // Init the _state object based on the supported slots
198
+ const slotsCachedContentMap = new Map(); // Store here the content of each slot before the mutation occurred
199
+ const propertyNameToSlotMap = new Map(); // Used for reverse lookup to determine to which slot the property name corresponds
200
+
201
+ // Init the _state object based on the supported slots and store the previous values
231
202
  for (const [slotName, slotData] of Object.entries(slotsMap)) { // eslint-disable-line
203
+ const propertyName = slotData.propertyName || slotName;
204
+ propertyNameToSlotMap.set(propertyName, slotName);
205
+ slotsCachedContentMap.set(propertyName, [...this._state[propertyName]]);
232
206
  this._clearSlot(slotName, slotData);
233
207
  }
234
208
 
@@ -237,7 +211,7 @@ class UI5Element extends HTMLElement {
237
211
 
238
212
  const allChildrenUpgraded = domChildren.map(async (child, idx) => {
239
213
  // Determine the type of the child (mainly by the slot attribute)
240
- const slotName = this.constructor._getSlotName(child);
214
+ const slotName = getSlotName(child);
241
215
  const slotData = slotsMap[slotName];
242
216
 
243
217
  // Check if the slotName is supported
@@ -275,16 +249,14 @@ class UI5Element extends HTMLElement {
275
249
 
276
250
  child = this.constructor.getMetadata().constructor.validateSlotValue(child, slotData);
277
251
 
278
- if (child.isUI5Element && slotData.listenFor) {
279
- this._attachChildPropertyUpdated(child, slotData.listenFor);
280
- }
281
-
282
- if (child.isUI5Element && slotData.invalidateParent) {
283
- child._shouldInvalidateParent = true;
252
+ // Listen for any invalidation on the child if invalidateOnChildChange is true or an object (ignore when false or not set)
253
+ if (child.isUI5Element && slotData.invalidateOnChildChange) {
254
+ child.attachInvalidate(this._getChildChangeListener(slotName));
284
255
  }
285
256
 
257
+ // Listen for the slotchange event if the child is a slot itself
286
258
  if (isSlot(child)) {
287
- this._attachSlotChange(child);
259
+ this._attachSlotChange(child, slotName);
288
260
  }
289
261
 
290
262
  const propertyName = slotData.propertyName || slotName;
@@ -300,10 +272,33 @@ class UI5Element extends HTMLElement {
300
272
 
301
273
  // Distribute the child in the _state object, keeping the Light DOM order,
302
274
  // not the order elements are defined.
303
- slottedChildrenMap.forEach((children, slot) => {
304
- this._state[slot] = children.sort((a, b) => a.idx - b.idx).map(_ => _.child);
275
+ slottedChildrenMap.forEach((children, propertyName) => {
276
+ this._state[propertyName] = children.sort((a, b) => a.idx - b.idx).map(_ => _.child);
305
277
  });
306
- this._invalidate("slots");
278
+
279
+ // Compare the content of each slot with the cached values and invalidate for the ones that changed
280
+ let invalidated = false;
281
+ for (const [slotName, slotData] of Object.entries(slotsMap)) { // eslint-disable-line
282
+ const propertyName = slotData.propertyName || slotName;
283
+ if (!arraysAreEqual(slotsCachedContentMap.get(propertyName), this._state[propertyName])) {
284
+ _invalidate.call(this, {
285
+ type: "slot",
286
+ name: propertyNameToSlotMap.get(propertyName),
287
+ reason: "children",
288
+ });
289
+ invalidated = true;
290
+ }
291
+ }
292
+
293
+ // If none of the slots had an invalidation due to changes to immediate children,
294
+ // the change is considered to be text content of the default slot
295
+ if (!invalidated) {
296
+ _invalidate.call(this, {
297
+ type: "slot",
298
+ name: "default",
299
+ reason: "textcontent",
300
+ });
301
+ }
307
302
  }
308
303
 
309
304
  /**
@@ -312,25 +307,61 @@ class UI5Element extends HTMLElement {
312
307
  */
313
308
  _clearSlot(slotName, slotData) {
314
309
  const propertyName = slotData.propertyName || slotName;
315
-
316
- let children = this._state[propertyName];
317
- if (!Array.isArray(children)) {
318
- children = [children];
319
- }
310
+ const children = this._state[propertyName];
320
311
 
321
312
  children.forEach(child => {
322
313
  if (child && child.isUI5Element) {
323
- this._detachChildPropertyUpdated(child);
324
- child._shouldInvalidateParent = false;
314
+ child.detachInvalidate(this._getChildChangeListener(slotName));
325
315
  }
326
316
 
327
317
  if (isSlot(child)) {
328
- this._detachSlotChange(child);
318
+ this._detachSlotChange(child, slotName);
329
319
  }
330
320
  });
331
321
 
332
322
  this._state[propertyName] = [];
333
- this._invalidate(propertyName, []);
323
+ }
324
+
325
+ /**
326
+ * Attach a callback that will be executed whenever the component is invalidated
327
+ *
328
+ * @param callback
329
+ * @public
330
+ */
331
+ attachInvalidate(callback) {
332
+ this._eventProvider.attachEvent("invalidate", callback);
333
+ }
334
+
335
+ /**
336
+ * Detach the callback that is executed whenever the component is invalidated
337
+ *
338
+ * @param callback
339
+ * @public
340
+ */
341
+ detachInvalidate(callback) {
342
+ this._eventProvider.detachEvent("invalidate", callback);
343
+ }
344
+
345
+ /**
346
+ * Callback that is executed whenever a monitored child changes its state
347
+ *
348
+ * @param slotName the slot in which a child was invalidated
349
+ * @param childChangeInfo the changeInfo object for the child in the given slot
350
+ * @private
351
+ */
352
+ _onChildChange(slotName, childChangeInfo) {
353
+ if (!this.constructor.getMetadata().shouldInvalidateOnChildChange(slotName, childChangeInfo.type, childChangeInfo.name)) {
354
+ return;
355
+ }
356
+
357
+ // The component should be invalidated as this type of change on the child is listened for
358
+ // However, no matter what changed on the child (property/slot), the invalidation is registered as "type=slot" for the component itself
359
+ _invalidate.call(this, {
360
+ type: "slot",
361
+ name: slotName,
362
+ reason: "childchange",
363
+ child: childChangeInfo.target,
364
+ });
334
365
  }
335
366
 
336
367
  /**
@@ -345,12 +376,8 @@ class UI5Element extends HTMLElement {
345
376
  const propertyTypeClass = properties[nameInCamelCase].type;
346
377
  if (propertyTypeClass === Boolean) {
347
378
  newValue = newValue !== null;
348
- }
349
- if (propertyTypeClass === Integer) {
350
- newValue = parseInt(newValue);
351
- }
352
- if (propertyTypeClass === Float) {
353
- newValue = parseFloat(newValue);
379
+ } else if (isDescendantOf(propertyTypeClass, DataType)) {
380
+ newValue = propertyTypeClass.attributeToProperty(newValue);
354
381
  }
355
382
  this[nameInCamelCase] = newValue;
356
383
  }
@@ -363,22 +390,24 @@ class UI5Element extends HTMLElement {
363
390
  if (!this.constructor.getMetadata().hasAttribute(name)) {
364
391
  return;
365
392
  }
366
-
367
- if (typeof newValue === "object") {
368
- return;
369
- }
370
-
393
+ const properties = this.constructor.getMetadata().getProperties();
394
+ const propertyTypeClass = properties[name].type;
371
395
  const attrName = camelToKebabCase(name);
372
396
  const attrValue = this.getAttribute(attrName);
373
- if (typeof newValue === "boolean") {
397
+
398
+ if (propertyTypeClass === Boolean) {
374
399
  if (newValue === true && attrValue === null) {
375
400
  this.setAttribute(attrName, "");
376
401
  } else if (newValue === false && attrValue !== null) {
377
402
  this.removeAttribute(attrName);
378
403
  }
379
- } else if (attrValue !== newValue) {
380
- this.setAttribute(attrName, newValue);
381
- }
404
+ } else if (isDescendantOf(propertyTypeClass, DataType)) {
405
+ this.setAttribute(attrName, propertyTypeClass.propertyToAttribute(newValue));
406
+ } else if (typeof newValue !== "object") {
407
+ if (attrValue !== newValue) {
408
+ this.setAttribute(attrName, newValue);
409
+ }
410
+ } // else { return; } // old object handling
382
411
  }
383
412
 
384
413
  /**
@@ -404,123 +433,96 @@ class UI5Element extends HTMLElement {
404
433
  * @private
405
434
  */
406
435
  _initializeState() {
407
- const defaultState = this.constructor._getDefaultState();
408
- this._state = Object.assign({}, defaultState);
436
+ this._state = { ...this.constructor.getMetadata().getInitialState() };
409
437
  }
410
438
 
411
439
  /**
440
+ * Returns a singleton event listener for the "change" event of a child in a given slot
441
+ *
442
+ * @param slotName the name of the slot, where the child is
443
+ * @returns {any}
412
444
  * @private
413
445
  */
414
- _attachChildPropertyUpdated(child, listenFor) {
415
- const slotName = this.constructor._getSlotName(child); // all slotted children have the same configuration
416
-
417
- let observedProps = [],
418
- notObservedProps = [];
419
-
420
- if (Array.isArray(listenFor)) {
421
- observedProps = listenFor;
422
- } else {
423
- observedProps = Array.isArray(listenFor.include) ? listenFor.include : [];
424
- notObservedProps = Array.isArray(listenFor.exclude) ? listenFor.exclude : [];
446
+ _getChildChangeListener(slotName) {
447
+ if (!this._childChangeListeners.has(slotName)) {
448
+ this._childChangeListeners.set(slotName, this._onChildChange.bind(this, slotName));
425
449
  }
426
-
427
- if (!this._monitoredChildProps.has(slotName)) {
428
- this._monitoredChildProps.set(slotName, { observedProps, notObservedProps });
429
- }
430
-
431
- child.addEventListener("_property-change", this._invalidateParentOnPropertyUpdate);
450
+ return this._childChangeListeners.get(slotName);
432
451
  }
433
452
 
434
453
  /**
454
+ * Returns a singleton slotchange event listener that invalidates the component due to changes in the given slot
455
+ *
456
+ * @param slotName the name of the slot, where the slot element (whose slotchange event we're listening to) is
457
+ * @returns {any}
435
458
  * @private
436
459
  */
437
- _detachChildPropertyUpdated(child) {
438
- child.removeEventListener("_property-change", this._invalidateParentOnPropertyUpdate);
439
- }
440
-
441
- /**
442
- * @private
443
- */
444
- _propertyChange(name, value) {
445
- this._updateAttribute(name, value);
446
-
447
- if (this._hasPropertyChangeListeners()) {
448
- this.dispatchEvent(new CustomEvent("_property-change", {
449
- detail: { name, newValue: value },
450
- composed: false,
451
- bubbles: false,
452
- }));
460
+ _getSlotChangeListener(slotName) {
461
+ if (!this._slotChangeListeners.has(slotName)) {
462
+ this._slotChangeListeners.set(slotName, this._onSlotChange.bind(this, slotName));
453
463
  }
464
+ return this._slotChangeListeners.get(slotName);
454
465
  }
455
466
 
456
467
  /**
457
468
  * @private
458
469
  */
459
- _invalidateParentOnPropertyUpdate(prop) {
460
- // The web component to be invalidated
461
- const parentNode = this.parentNode;
462
- if (!parentNode) {
463
- return;
464
- }
465
-
466
- const slotName = parentNode.constructor._getSlotName(this);
467
- const propsMetadata = parentNode._monitoredChildProps.get(slotName);
468
-
469
- if (!propsMetadata) {
470
- return;
471
- }
472
- const { observedProps, notObservedProps } = propsMetadata;
473
-
474
- const allPropertiesAreObserved = observedProps.length === 1 && observedProps[0] === "*";
475
- const shouldObserve = allPropertiesAreObserved || observedProps.includes(prop.detail.name);
476
- const shouldSkip = notObservedProps.includes(prop.detail.name);
477
- if (shouldObserve && !shouldSkip) {
478
- parentNode._invalidate("_parent_", this);
479
- }
470
+ _attachSlotChange(child, slotName) {
471
+ child.addEventListener("slotchange", this._getSlotChangeListener(slotName));
480
472
  }
481
473
 
482
474
  /**
483
475
  * @private
484
476
  */
485
- _attachSlotChange(child) {
486
- if (!this._invalidateOnSlotChange) {
487
- this._invalidateOnSlotChange = () => {
488
- this._invalidate("slotchange");
489
- };
490
- }
491
- child.addEventListener("slotchange", this._invalidateOnSlotChange);
477
+ _detachSlotChange(child, slotName) {
478
+ child.removeEventListener("slotchange", this._getSlotChangeListener(slotName));
492
479
  }
493
480
 
494
481
  /**
482
+ * Whenever a slot element is slotted inside a UI5 Web Component, its slotchange event invalidates the component
483
+ *
484
+ * @param slotName the name of the slot, where the slot element (whose slotchange event we're listening to) is
495
485
  * @private
496
486
  */
497
- _detachSlotChange(child) {
498
- child.removeEventListener("slotchange", this._invalidateOnSlotChange);
487
+ _onSlotChange(slotName) {
488
+ _invalidate.call(this, {
489
+ type: "slot",
490
+ name: slotName,
491
+ reason: "slotchange",
492
+ });
499
493
  }
500
494
 
501
495
  /**
502
- * Asynchronously re-renders an already rendered web component
503
- * @private
496
+ * A callback that is executed each time an already rendered component is invalidated (scheduled for re-rendering)
497
+ *
498
+ * @param changeInfo An object with information about the change that caused invalidation.
499
+ * The object can have the following properties:
500
+ * - type: (property|slot) tells what caused the invalidation
501
+ * 1) property: a property value was changed either directly or as a result of changing the corresponding attribute
502
+ * 2) slot: a slotted node(nodes) changed in one of several ways (see "reason")
503
+ *
504
+ * - name: the name of the property or slot that caused the invalidation
505
+ *
506
+ * - reason: (children|textcontent|childchange|slotchange) relevant only for type="slot" only and tells exactly what changed in the slot
507
+ * 1) children: immediate children (HTML elements or text nodes) were added, removed or reordered in the slot
508
+ * 2) textcontent: text nodes in the slot changed value (or nested text nodes were added or changed value). Can only trigger for slots of "type: Node"
509
+ * 3) slotchange: a slot element, slotted inside that slot had its "slotchange" event listener called. This practically means that transitively slotted children changed.
510
+ * Can only trigger if the child of a slot is a slot element itself.
511
+ * 4) childchange: indicates that a UI5Element child in that slot was invalidated and in turn invalidated the component.
512
+ * Can only trigger for slots with "invalidateOnChildChange" metadata descriptor
513
+ *
514
+ * - newValue: the new value of the property (for type="property" only)
515
+ *
516
+ * - oldValue: the old value of the property (for type="property" only)
517
+ *
518
+ * - child the child that was changed (for type="slot" and reason="childchange" only)
519
+ *
520
+ * @public
504
521
  */
505
- _invalidate() {
506
- if (this._shouldInvalidateParent) {
507
- this.parentNode._invalidate();
508
- }
509
-
510
- if (!this._upToDate) {
511
- // console.log("already invalidated", this, ...arguments);
512
- return;
513
- }
514
-
515
- if (this.getDomRef() && !this._suppressInvalidation) {
516
- this._upToDate = false;
517
- // console.log("INVAL", this, ...arguments);
518
- RenderScheduler.renderDeferred(this);
519
- }
520
- }
522
+ onInvalidation(changeInfo) {}
521
523
 
522
524
  /**
523
- * Do not call this method directly, only intended to be called by RenderScheduler.js
525
+ * Do not call this method directly, only intended to be called by js
524
526
  * @protected
525
527
  */
526
528
  _render() {
@@ -539,15 +541,37 @@ class UI5Element extends HTMLElement {
539
541
  }
540
542
 
541
543
  // resume normal invalidation handling
542
- delete this._suppressInvalidation;
544
+ this._suppressInvalidation = false;
543
545
 
544
546
  // Update the shadow root with the render result
545
- // console.log(this.getDomRef() ? "RE-RENDER" : "FIRST RENDER", this);
546
- this._upToDate = true;
547
- this._updateShadowRoot();
547
+ /*
548
+ if (this._changedState.length) {
549
+ let element = this.localName;
550
+ if (this.id) {
551
+ element = `${element}#${this.id}`;
552
+ }
553
+ console.log("Re-rendering:", element, this._changedState.map(x => { // eslint-disable-line
554
+ let res = `${x.type}`;
555
+ if (x.reason) {
556
+ res = `${res}(${x.reason})`;
557
+ }
558
+ res = `${res}: ${x.name}`;
559
+ if (x.type === "property") {
560
+ res = `${res} ${x.oldValue} => ${x.newValue}`;
561
+ }
562
+
563
+ return res;
564
+ }));
565
+ }
566
+ */
567
+ this._changedState = [];
548
568
 
549
- if (this._shouldUpdateFragment()) {
550
- this.staticAreaItem._updateFragment(this);
569
+ // Update shadow root and static area item
570
+ if (this.constructor._needsShadowDOM()) {
571
+ updateShadowRoot(this);
572
+ }
573
+ if (this.staticAreaItem) {
574
+ this.staticAreaItem.update();
551
575
  }
552
576
 
553
577
  // Safari requires that children get the slot attribute only after the slot tags have been rendered in the shadow DOM
@@ -561,35 +585,6 @@ class UI5Element extends HTMLElement {
561
585
  }
562
586
  }
563
587
 
564
- /**
565
- * @private
566
- */
567
- _updateShadowRoot() {
568
- if (!this.constructor._needsShadowDOM()) {
569
- return;
570
- }
571
-
572
- let styleToPrepend;
573
- const renderResult = executeTemplate(this.constructor.template, this);
574
-
575
- // IE11, Edge
576
- if (window.ShadyDOM) {
577
- createComponentStyleTag(this.constructor);
578
- }
579
-
580
- // Chrome
581
- if (document.adoptedStyleSheets) {
582
- this.shadowRoot.adoptedStyleSheets = getConstructableStyle(this.constructor);
583
- }
584
-
585
- // FF, Safari
586
- if (!document.adoptedStyleSheets && !window.ShadyDOM) {
587
- styleToPrepend = getEffectiveStyle(this.constructor);
588
- }
589
-
590
- this.constructor.render(renderResult, this.shadowRoot, styleToPrepend, { eventContext: this });
591
- }
592
-
593
588
  /**
594
589
  * @private
595
590
  */
@@ -620,10 +615,19 @@ class UI5Element extends HTMLElement {
620
615
  return;
621
616
  }
622
617
 
618
+ this._assertShadowRootStructure();
619
+
623
620
  return this.shadowRoot.children.length === 1
624
621
  ? this.shadowRoot.children[0] : this.shadowRoot.children[1];
625
622
  }
626
623
 
624
+ _assertShadowRootStructure() {
625
+ const expectedChildrenCount = document.adoptedStyleSheets || isLegacyBrowser() ? 1 : 2;
626
+ if (this.shadowRoot.children.length !== expectedChildrenCount) {
627
+ console.warn(`The shadow DOM for ${this.constructor.getMetadata().getTag()} does not have a top level element, the getDomRef() method might not work as expected`); // eslint-disable-line
628
+ }
629
+ }
630
+
627
631
  /**
628
632
  * Returns the DOM Element marked with "data-sap-focus-ref" inside the template.
629
633
  * This is the element that will receive the focus by default.
@@ -638,12 +642,24 @@ class UI5Element extends HTMLElement {
638
642
  }
639
643
 
640
644
  /**
641
- * Use this method in order to get a reference to element in the shadow root of a web component
645
+ * Waits for dom ref and then returns the DOM Element marked with "data-sap-focus-ref" inside the template.
646
+ * This is the element that will receive the focus by default.
642
647
  * @public
648
+ */
649
+ async getFocusDomRefAsync() {
650
+ await this._waitForDomRef();
651
+ return this.getFocusDomRef();
652
+ }
653
+
654
+ /**
655
+ * Use this method in order to get a reference to an element in the shadow root of the web component or the static area item of the component
656
+ * @public
657
+ * @method
643
658
  * @param {String} refName Defines the name of the stable DOM ref
644
659
  */
645
660
  getStableDomRef(refName) {
646
- return this.getDomRef().querySelector(`[data-ui5-stable=${refName}]`);
661
+ const staticAreaResult = this.staticAreaItem && this.staticAreaItem.getStableDomRef(refName);
662
+ return staticAreaResult || this.getDomRef().querySelector(`[data-ui5-stable=${refName}]`);
647
663
  }
648
664
 
649
665
  /**
@@ -681,8 +697,6 @@ class UI5Element extends HTMLElement {
681
697
  }
682
698
 
683
699
  _fireEvent(name, data, cancelable = false, bubbles = true) {
684
- let compatEventResult = true; // Initialized to true, because if the event is not fired at all, it should be considered "not-prevented"
685
-
686
700
  const noConflictEvent = new CustomEvent(`ui5-${name}`, {
687
701
  detail: data,
688
702
  composed: false,
@@ -690,14 +704,14 @@ class UI5Element extends HTMLElement {
690
704
  cancelable,
691
705
  });
692
706
 
693
- // This will be false if the compat event is prevented
694
- compatEventResult = this.dispatchEvent(noConflictEvent);
707
+ // This will be false if the no-conflict event is prevented
708
+ const noConflictEventResult = this.dispatchEvent(noConflictEvent);
695
709
 
696
710
  if (skipOriginalEvent(name)) {
697
- return compatEventResult;
711
+ return noConflictEventResult;
698
712
  }
699
713
 
700
- const customEvent = new CustomEvent(name, {
714
+ const normalEvent = new CustomEvent(name, {
701
715
  detail: data,
702
716
  composed: false,
703
717
  bubbles,
@@ -705,10 +719,10 @@ class UI5Element extends HTMLElement {
705
719
  });
706
720
 
707
721
  // This will be false if the normal event is prevented
708
- const normalEventResult = this.dispatchEvent(customEvent);
722
+ const normalEventResult = this.dispatchEvent(normalEvent);
709
723
 
710
724
  // Return false if any of the two events was prevented (its result was false).
711
- return normalEventResult && compatEventResult;
725
+ return normalEventResult && noConflictEventResult;
712
726
  }
713
727
 
714
728
  /**
@@ -717,18 +731,7 @@ class UI5Element extends HTMLElement {
717
731
  * @public
718
732
  */
719
733
  getSlottedNodes(slotName) {
720
- const reducer = (acc, curr) => {
721
- if (!isSlot(curr)) {
722
- return acc.concat([curr]);
723
- }
724
- return acc.concat(curr.assignedNodes({ flatten: true }).filter(item => item instanceof HTMLElement));
725
- };
726
-
727
- return this[slotName].reduce(reducer, []);
728
- }
729
-
730
- get isCompact() {
731
- return getComputedStyle(this).getPropertyValue(GLOBAL_CONTENT_DENSITY_CSS_VAR) === "compact";
734
+ return getSlottedElementsList(this[slotName]);
732
735
  }
733
736
 
734
737
  /**
@@ -740,33 +743,7 @@ class UI5Element extends HTMLElement {
740
743
  */
741
744
  get effectiveDir() {
742
745
  markAsRtlAware(this.constructor); // if a UI5 Element calls this method, it's considered to be rtl-aware
743
-
744
- const doc = window.document;
745
- const dirValues = ["ltr", "rtl"]; // exclude "auto" and "" from all calculations
746
- const locallyAppliedDir = getComputedStyle(this).getPropertyValue(GLOBAL_DIR_CSS_VAR);
747
-
748
- // In that order, inspect the CSS Var (for modern browsers), the element itself, html and body (for IE fallback)
749
- if (dirValues.includes(locallyAppliedDir)) {
750
- return locallyAppliedDir;
751
- }
752
- if (dirValues.includes(this.dir)) {
753
- return this.dir;
754
- }
755
- if (dirValues.includes(doc.documentElement.dir)) {
756
- return doc.documentElement.dir;
757
- }
758
- if (dirValues.includes(doc.body.dir)) {
759
- return doc.body.dir;
760
- }
761
-
762
- // Finally, check the configuration for explicitly set RTL or language-implied RTL
763
- return getRTL() ? "rtl" : undefined;
764
- }
765
-
766
- updateStaticAreaItemContentDensity() {
767
- if (this.staticAreaItem) {
768
- this.staticAreaItem._updateContentDensity(this.isCompact);
769
- }
746
+ return getEffectiveDir(this);
770
747
  }
771
748
 
772
749
  /**
@@ -786,26 +763,6 @@ class UI5Element extends HTMLElement {
786
763
  return this.getMetadata().getAttributesList();
787
764
  }
788
765
 
789
- /**
790
- * @private
791
- */
792
- static _getSlotName(child) {
793
- // Text nodes can only go to the default slot
794
- if (!(child instanceof HTMLElement)) {
795
- return "default";
796
- }
797
-
798
- // Discover the slot based on the real slot name (f.e. footer => footer, or content-32 => content)
799
- const slot = child.getAttribute("slot");
800
- if (slot) {
801
- const match = slot.match(/^(.+?)-\d+$/);
802
- return match ? match[1] : slot;
803
- }
804
-
805
- // Use default slot as a fallback
806
- return "default";
807
- }
808
-
809
766
  /**
810
767
  * @private
811
768
  */
@@ -813,70 +770,30 @@ class UI5Element extends HTMLElement {
813
770
  return !!this.template;
814
771
  }
815
772
 
816
- _shouldUpdateFragment() {
817
- return this.constructor._needsStaticArea() && this.staticAreaItem.isRendered();
818
- }
819
-
820
773
  /**
821
774
  * @private
822
775
  */
823
776
  static _needsStaticArea() {
824
- return typeof this.staticAreaTemplate === "function";
777
+ return !!this.staticAreaTemplate;
825
778
  }
826
779
 
827
780
  /**
828
781
  * @public
829
782
  */
830
783
  getStaticAreaItemDomRef() {
831
- return this.staticAreaItem.getDomRef();
832
- }
833
-
834
- /**
835
- * @private
836
- */
837
- static _getDefaultState() {
838
- if (this._defaultState) {
839
- return this._defaultState;
784
+ if (!this.constructor._needsStaticArea()) {
785
+ throw new Error("This component does not use the static area");
840
786
  }
841
787
 
842
- const MetadataClass = this.getMetadata();
843
- const defaultState = {};
844
- const slotsAreManaged = MetadataClass.slotsAreManaged();
845
-
846
- // Initialize properties
847
- const props = MetadataClass.getProperties();
848
- for (const propName in props) { // eslint-disable-line
849
- const propType = props[propName].type;
850
- const propDefaultValue = props[propName].defaultValue;
851
-
852
- if (propType === Boolean) {
853
- defaultState[propName] = false;
854
-
855
- if (propDefaultValue !== undefined) {
856
- console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default"); // eslint-disable-line
857
- }
858
- } else if (props[propName].multiple) {
859
- defaultState[propName] = [];
860
- } else if (propType === Object) {
861
- defaultState[propName] = "defaultValue" in props[propName] ? props[propName].defaultValue : {};
862
- } else if (propType === String) {
863
- defaultState[propName] = "defaultValue" in props[propName] ? props[propName].defaultValue : "";
864
- } else {
865
- defaultState[propName] = propDefaultValue;
866
- }
788
+ if (!this.staticAreaItem) {
789
+ this.staticAreaItem = StaticAreaItem.createInstance();
790
+ this.staticAreaItem.setOwnerElement(this);
867
791
  }
868
-
869
- // Initialize slots
870
- if (slotsAreManaged) {
871
- const slots = MetadataClass.getSlots();
872
- for (const [slotName, slotData] of Object.entries(slots)) { // eslint-disable-line
873
- const propertyName = slotData.propertyName || slotName;
874
- defaultState[propertyName] = [];
875
- }
792
+ if (!this.staticAreaItem.parentElement) {
793
+ getSingletonElementInstance("ui5-static-area").appendChild(this.staticAreaItem);
876
794
  }
877
795
 
878
- this._defaultState = defaultState;
879
- return defaultState;
796
+ return this.staticAreaItem.getDomRef();
880
797
  }
881
798
 
882
799
  /**
@@ -928,14 +845,27 @@ class UI5Element extends HTMLElement {
928
845
  }
929
846
  },
930
847
  set(value) {
848
+ let isDifferent;
931
849
  value = this.constructor.getMetadata().constructor.validatePropertyValue(value, propData);
932
850
 
933
851
  const oldState = this._state[prop];
852
+ if (propData.multiple && propData.compareValues) {
853
+ isDifferent = !arraysAreEqual(oldState, value);
854
+ } else if (isDescendantOf(propData.type, DataType)) {
855
+ isDifferent = !propData.type.valuesAreEqual(oldState, value);
856
+ } else {
857
+ isDifferent = oldState !== value;
858
+ }
934
859
 
935
- if (oldState !== value) {
860
+ if (isDifferent) {
936
861
  this._state[prop] = value;
937
- this._invalidate(prop, value);
938
- this._propertyChange(prop, value);
862
+ _invalidate.call(this, {
863
+ type: "property",
864
+ name: prop,
865
+ newValue: value,
866
+ oldValue: oldState,
867
+ });
868
+ this._updateAttribute(prop, value);
939
869
  }
940
870
  },
941
871
  });
@@ -958,7 +888,7 @@ class UI5Element extends HTMLElement {
958
888
  return [];
959
889
  },
960
890
  set() {
961
- throw new Error("Cannot set slots directly, use the DOM APIs");
891
+ throw new Error("Cannot set slot content directly, use the DOM APIs (appendChild, removeChild, etc...)");
962
892
  },
963
893
  });
964
894
  }
@@ -970,7 +900,7 @@ class UI5Element extends HTMLElement {
970
900
  * @protected
971
901
  */
972
902
  static get metadata() {
973
- return metadata;
903
+ return {};
974
904
  }
975
905
 
976
906
  /**
@@ -1060,9 +990,10 @@ class UI5Element extends HTMLElement {
1060
990
  window.customElements.define(tag, this);
1061
991
 
1062
992
  if (altTag && !customElements.get(altTag)) {
1063
- class oldClassName extends this {}
1064
993
  registerTag(altTag);
1065
- window.customElements.define(altTag, oldClassName);
994
+ window.customElements.define(altTag, getClassCopy(this, () => {
995
+ console.log(`The ${altTag} tag is deprecated and will be removed in the next release, please use ${tag} instead.`); // eslint-disable-line
996
+ }));
1066
997
  }
1067
998
  }
1068
999
  return this;