@ngxs/store 3.7.3 → 3.7.4-dev.master-43177a9

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 (270) hide show
  1. package/README.md +16 -16
  2. package/bundles/ngxs-store-internals-testing.umd.js +318 -215
  3. package/bundles/ngxs-store-internals-testing.umd.js.map +1 -1
  4. package/bundles/ngxs-store-internals-testing.umd.min.js +1 -1
  5. package/bundles/ngxs-store-internals-testing.umd.min.js.map +1 -1
  6. package/bundles/ngxs-store-internals.umd.js +398 -211
  7. package/bundles/ngxs-store-internals.umd.js.map +1 -1
  8. package/bundles/ngxs-store-internals.umd.min.js +1 -1
  9. package/bundles/ngxs-store-internals.umd.min.js.map +1 -1
  10. package/bundles/ngxs-store-operators.umd.js +311 -310
  11. package/bundles/ngxs-store-operators.umd.js.map +1 -1
  12. package/bundles/ngxs-store-operators.umd.min.js +1 -1
  13. package/bundles/ngxs-store-operators.umd.min.js.map +1 -1
  14. package/bundles/ngxs-store.umd.js +4496 -4519
  15. package/bundles/ngxs-store.umd.js.map +1 -1
  16. package/bundles/ngxs-store.umd.min.js +1 -1
  17. package/bundles/ngxs-store.umd.min.js.map +1 -1
  18. package/esm2015/index.js +13 -13
  19. package/esm2015/internals/angular.js +20 -40
  20. package/esm2015/internals/decorator-injector-adapter.js +204 -0
  21. package/esm2015/internals/index.js +11 -10
  22. package/esm2015/internals/initial-state.js +34 -34
  23. package/esm2015/internals/internal-tokens.js +16 -16
  24. package/esm2015/internals/memoize.js +70 -70
  25. package/esm2015/internals/ngxs-bootstrapper.js +41 -41
  26. package/esm2015/internals/ngxs-store-internals.js +9 -9
  27. package/esm2015/internals/src/symbols.js +14 -14
  28. package/esm2015/internals/symbols.js +14 -14
  29. package/esm2015/internals/testing/fresh-platform.js +110 -71
  30. package/esm2015/internals/testing/helpers/ngxs-test.component.js +22 -22
  31. package/esm2015/internals/testing/helpers/ngxs-test.module.js +24 -24
  32. package/esm2015/internals/testing/index.js +8 -7
  33. package/esm2015/internals/testing/ngxs-store-internals-testing.js +9 -9
  34. package/esm2015/internals/testing/ngxs.setup.js +76 -76
  35. package/esm2015/internals/testing/skip-console-logging.js +62 -0
  36. package/esm2015/internals/testing/symbol.js +29 -29
  37. package/esm2015/ngxs-store.js +23 -27
  38. package/esm2015/operators/append.js +31 -31
  39. package/esm2015/operators/compose.js +24 -24
  40. package/esm2015/operators/iif.js +56 -56
  41. package/esm2015/operators/index.js +18 -18
  42. package/esm2015/operators/insert-item.js +41 -41
  43. package/esm2015/operators/internals.js +5 -5
  44. package/esm2015/operators/ngxs-store-operators.js +8 -8
  45. package/esm2015/operators/patch.js +38 -39
  46. package/esm2015/operators/remove-item.js +34 -34
  47. package/esm2015/operators/update-item.js +54 -52
  48. package/esm2015/operators/utils.js +50 -50
  49. package/esm2015/src/actions/actions.js +39 -39
  50. package/esm2015/src/actions/symbols.js +39 -39
  51. package/esm2015/src/actions-stream.js +138 -140
  52. package/esm2015/src/configs/messages.config.js +79 -87
  53. package/esm2015/src/decorators/action.js +48 -44
  54. package/esm2015/src/decorators/select/select-factory.js +49 -46
  55. package/esm2015/src/decorators/select/select.js +81 -45
  56. package/esm2015/src/decorators/select/symbols.js +94 -50
  57. package/esm2015/src/decorators/selector/selector.js +59 -55
  58. package/esm2015/src/decorators/selector/symbols.js +5 -5
  59. package/esm2015/src/decorators/selector-options.js +34 -34
  60. package/esm2015/src/decorators/state.js +83 -75
  61. package/esm2015/src/execution/dispatch-outside-zone-ngxs-execution-strategy.js +103 -96
  62. package/esm2015/src/execution/internal-ngxs-execution-strategy.js +45 -45
  63. package/esm2015/src/execution/noop-ngxs-execution-strategy.js +29 -27
  64. package/esm2015/src/execution/symbols.js +52 -29
  65. package/esm2015/src/internal/dispatcher.js +217 -217
  66. package/esm2015/src/internal/internals.js +493 -489
  67. package/esm2015/src/internal/lifecycle-state-manager.js +129 -129
  68. package/esm2015/src/internal/state-context-factory.js +138 -138
  69. package/esm2015/src/internal/state-factory.js +449 -429
  70. package/esm2015/src/internal/state-operations.js +133 -125
  71. package/esm2015/src/internal/state-operators.js +33 -33
  72. package/esm2015/src/internal/state-stream.js +30 -21
  73. package/esm2015/src/ivy/ivy-enabled-in-dev-mode.js +28 -40
  74. package/esm2015/src/module.js +157 -172
  75. package/esm2015/src/modules/ngxs-feature.module.js +63 -63
  76. package/esm2015/src/modules/ngxs-root.module.js +52 -52
  77. package/esm2015/src/operators/leave-ngxs.js +58 -58
  78. package/esm2015/src/operators/of-action.js +197 -191
  79. package/esm2015/src/plugin-manager.js +70 -70
  80. package/esm2015/src/plugin_api.js +10 -10
  81. package/esm2015/src/public_api.js +29 -29
  82. package/esm2015/src/public_to_deprecate.js +64 -64
  83. package/esm2015/src/state-token/state-token.js +45 -45
  84. package/esm2015/src/state-token/symbols.js +5 -5
  85. package/esm2015/src/store.js +190 -174
  86. package/esm2015/src/symbols.js +220 -221
  87. package/esm2015/src/utils/compose.js +44 -44
  88. package/esm2015/src/utils/freeze.js +35 -35
  89. package/esm2015/src/utils/selector-utils.js +221 -221
  90. package/esm2015/src/utils/store-validators.js +60 -65
  91. package/esm2015/src/utils/utils.js +143 -143
  92. package/esm5/index.js +13 -13
  93. package/esm5/internals/angular.js +20 -40
  94. package/esm5/internals/decorator-injector-adapter.js +204 -0
  95. package/esm5/internals/index.js +11 -10
  96. package/esm5/internals/initial-state.js +45 -45
  97. package/esm5/internals/internal-tokens.js +16 -16
  98. package/esm5/internals/memoize.js +71 -71
  99. package/esm5/internals/ngxs-bootstrapper.js +56 -56
  100. package/esm5/internals/ngxs-store-internals.js +9 -9
  101. package/esm5/internals/src/symbols.js +14 -14
  102. package/esm5/internals/symbols.js +14 -14
  103. package/esm5/internals/testing/fresh-platform.js +121 -81
  104. package/esm5/internals/testing/helpers/ngxs-test.component.js +32 -32
  105. package/esm5/internals/testing/helpers/ngxs-test.module.js +32 -32
  106. package/esm5/internals/testing/index.js +8 -7
  107. package/esm5/internals/testing/ngxs-store-internals-testing.js +9 -9
  108. package/esm5/internals/testing/ngxs.setup.js +98 -98
  109. package/esm5/internals/testing/skip-console-logging.js +62 -0
  110. package/esm5/internals/testing/symbol.js +29 -29
  111. package/esm5/ngxs-store.js +23 -27
  112. package/esm5/operators/append.js +31 -31
  113. package/esm5/operators/compose.js +28 -28
  114. package/esm5/operators/iif.js +56 -56
  115. package/esm5/operators/index.js +18 -18
  116. package/esm5/operators/insert-item.js +41 -41
  117. package/esm5/operators/internals.js +5 -5
  118. package/esm5/operators/ngxs-store-operators.js +8 -8
  119. package/esm5/operators/patch.js +39 -40
  120. package/esm5/operators/remove-item.js +34 -34
  121. package/esm5/operators/update-item.js +54 -52
  122. package/esm5/operators/utils.js +50 -50
  123. package/esm5/src/actions/actions.js +62 -62
  124. package/esm5/src/actions/symbols.js +39 -39
  125. package/esm5/src/actions-stream.js +184 -186
  126. package/esm5/src/configs/messages.config.js +79 -104
  127. package/esm5/src/decorators/action.js +60 -56
  128. package/esm5/src/decorators/select/select-factory.js +50 -47
  129. package/esm5/src/decorators/select/select.js +87 -50
  130. package/esm5/src/decorators/select/symbols.js +95 -51
  131. package/esm5/src/decorators/selector/selector.js +59 -55
  132. package/esm5/src/decorators/selector/symbols.js +5 -5
  133. package/esm5/src/decorators/selector-options.js +34 -34
  134. package/esm5/src/decorators/state.js +84 -76
  135. package/esm5/src/execution/dispatch-outside-zone-ngxs-execution-strategy.js +123 -121
  136. package/esm5/src/execution/internal-ngxs-execution-strategy.js +54 -54
  137. package/esm5/src/execution/noop-ngxs-execution-strategy.js +43 -41
  138. package/esm5/src/execution/symbols.js +52 -29
  139. package/esm5/src/internal/dispatcher.js +253 -253
  140. package/esm5/src/internal/internals.js +495 -491
  141. package/esm5/src/internal/lifecycle-state-manager.js +177 -177
  142. package/esm5/src/internal/state-context-factory.js +146 -146
  143. package/esm5/src/internal/state-factory.js +575 -563
  144. package/esm5/src/internal/state-operations.js +143 -139
  145. package/esm5/src/internal/state-operators.js +34 -34
  146. package/esm5/src/internal/state-stream.js +37 -25
  147. package/esm5/src/ivy/ivy-enabled-in-dev-mode.js +28 -40
  148. package/esm5/src/module.js +200 -215
  149. package/esm5/src/modules/ngxs-feature.module.js +65 -65
  150. package/esm5/src/modules/ngxs-root.module.js +47 -47
  151. package/esm5/src/operators/leave-ngxs.js +58 -58
  152. package/esm5/src/operators/of-action.js +223 -217
  153. package/esm5/src/plugin-manager.js +82 -82
  154. package/esm5/src/plugin_api.js +10 -10
  155. package/esm5/src/public_api.js +29 -29
  156. package/esm5/src/public_to_deprecate.js +64 -64
  157. package/esm5/src/state-token/state-token.js +57 -57
  158. package/esm5/src/state-token/symbols.js +5 -5
  159. package/esm5/src/store.js +241 -225
  160. package/esm5/src/symbols.js +229 -230
  161. package/esm5/src/utils/compose.js +55 -55
  162. package/esm5/src/utils/freeze.js +35 -35
  163. package/esm5/src/utils/selector-utils.js +230 -230
  164. package/esm5/src/utils/store-validators.js +78 -86
  165. package/esm5/src/utils/utils.js +151 -151
  166. package/fesm2015/ngxs-store-internals-testing.js +278 -177
  167. package/fesm2015/ngxs-store-internals-testing.js.map +1 -1
  168. package/fesm2015/ngxs-store-internals.js +378 -194
  169. package/fesm2015/ngxs-store-internals.js.map +1 -1
  170. package/fesm2015/ngxs-store-operators.js +313 -312
  171. package/fesm2015/ngxs-store-operators.js.map +1 -1
  172. package/fesm2015/ngxs-store.js +3999 -3979
  173. package/fesm2015/ngxs-store.js.map +1 -1
  174. package/fesm5/ngxs-store-internals-testing.js +325 -223
  175. package/fesm5/ngxs-store-internals-testing.js.map +1 -1
  176. package/fesm5/ngxs-store-internals.js +403 -219
  177. package/fesm5/ngxs-store-internals.js.map +1 -1
  178. package/fesm5/ngxs-store-operators.js +317 -316
  179. package/fesm5/ngxs-store-operators.js.map +1 -1
  180. package/fesm5/ngxs-store.js +4494 -4512
  181. package/fesm5/ngxs-store.js.map +1 -1
  182. package/index.d.ts +8 -8
  183. package/internals/angular.d.ts +1 -3
  184. package/internals/decorator-injector-adapter.d.ts +15 -0
  185. package/internals/index.d.ts +7 -6
  186. package/internals/initial-state.d.ts +8 -8
  187. package/internals/internal-tokens.d.ts +9 -9
  188. package/internals/memoize.d.ts +9 -9
  189. package/internals/ngxs-bootstrapper.d.ts +13 -13
  190. package/internals/ngxs-store-internals.d.ts +4 -4
  191. package/internals/ngxs-store-internals.metadata.json +1 -1
  192. package/internals/src/symbols.d.ts +7 -7
  193. package/internals/symbols.d.ts +7 -7
  194. package/internals/testing/fresh-platform.d.ts +1 -1
  195. package/internals/testing/helpers/ngxs-test.component.d.ts +5 -5
  196. package/internals/testing/helpers/ngxs-test.module.d.ts +4 -4
  197. package/internals/testing/index.d.ts +4 -3
  198. package/internals/testing/ngxs-store-internals-testing.d.ts +4 -4
  199. package/internals/testing/ngxs-store-internals-testing.metadata.json +1 -1
  200. package/internals/testing/ngxs.setup.d.ts +7 -7
  201. package/internals/testing/skip-console-logging.d.ts +1 -0
  202. package/internals/testing/symbol.d.ts +14 -14
  203. package/ngxs-store.d.ts +19 -23
  204. package/ngxs-store.metadata.json +1 -1
  205. package/operators/append.d.ts +6 -6
  206. package/operators/compose.d.ts +3 -2
  207. package/operators/iif.d.ts +11 -11
  208. package/operators/index.d.ts +13 -13
  209. package/operators/insert-item.d.ts +7 -7
  210. package/operators/internals.d.ts +2 -2
  211. package/operators/ngxs-store-operators.d.ts +4 -4
  212. package/operators/ngxs-store-operators.metadata.json +1 -1
  213. package/operators/patch.d.ts +6 -10
  214. package/operators/remove-item.d.ts +7 -7
  215. package/operators/update-item.d.ts +10 -10
  216. package/operators/utils.d.ts +10 -9
  217. package/package.json +3 -3
  218. package/src/actions/actions.d.ts +15 -15
  219. package/src/actions/symbols.d.ts +21 -21
  220. package/src/actions-stream.d.ts +49 -49
  221. package/src/configs/messages.config.d.ts +11 -30
  222. package/src/decorators/action.d.ts +5 -5
  223. package/src/decorators/select/select-factory.d.ts +13 -14
  224. package/src/decorators/select/select.d.ts +4 -4
  225. package/src/decorators/select/symbols.d.ts +14 -10
  226. package/src/decorators/selector/selector.d.ts +5 -5
  227. package/src/decorators/selector/symbols.d.ts +4 -4
  228. package/src/decorators/selector-options.d.ts +5 -5
  229. package/src/decorators/state.d.ts +6 -6
  230. package/src/execution/dispatch-outside-zone-ngxs-execution-strategy.d.ts +11 -12
  231. package/src/execution/internal-ngxs-execution-strategy.d.ts +7 -7
  232. package/src/execution/noop-ngxs-execution-strategy.d.ts +5 -5
  233. package/src/execution/symbols.d.ts +10 -6
  234. package/src/internal/dispatcher.d.ts +32 -32
  235. package/src/internal/internals.d.ts +166 -167
  236. package/src/internal/lifecycle-state-manager.d.ts +20 -20
  237. package/src/internal/state-context-factory.d.ts +15 -15
  238. package/src/internal/state-factory.d.ts +57 -58
  239. package/src/internal/state-operations.d.ts +19 -21
  240. package/src/internal/state-operators.d.ts +2 -2
  241. package/src/internal/state-stream.d.ts +11 -9
  242. package/src/ivy/ivy-enabled-in-dev-mode.d.ts +6 -14
  243. package/src/module.d.ts +23 -23
  244. package/src/modules/ngxs-feature.module.d.ts +13 -13
  245. package/src/modules/ngxs-root.module.d.ts +13 -13
  246. package/src/operators/leave-ngxs.d.ts +7 -7
  247. package/src/operators/of-action.d.ts +56 -43
  248. package/src/plugin-manager.d.ts +10 -10
  249. package/src/plugin_api.d.ts +5 -5
  250. package/src/public_api.d.ts +17 -17
  251. package/src/public_to_deprecate.d.ts +21 -21
  252. package/src/state-token/state-token.d.ts +7 -7
  253. package/src/state-token/symbols.d.ts +5 -5
  254. package/src/store.d.ts +59 -53
  255. package/src/symbols.d.ts +138 -137
  256. package/src/utils/compose.d.ts +23 -23
  257. package/src/utils/freeze.d.ts +5 -5
  258. package/src/utils/selector-utils.d.ts +23 -23
  259. package/src/utils/store-validators.d.ts +7 -8
  260. package/src/utils/utils.d.ts +46 -46
  261. package/types/index.d.ts +2 -2
  262. package/esm2015/src/host-environment/host-environment.js +0 -31
  263. package/esm2015/src/internal/config-validator.js +0 -67
  264. package/esm2015/src/ivy/ensure-state-class-is-injectable.js +0 -34
  265. package/esm5/src/host-environment/host-environment.js +0 -29
  266. package/esm5/src/internal/config-validator.js +0 -76
  267. package/esm5/src/ivy/ensure-state-class-is-injectable.js +0 -34
  268. package/src/host-environment/host-environment.d.ts +0 -6
  269. package/src/internal/config-validator.d.ts +0 -10
  270. package/src/ivy/ensure-state-class-is-injectable.d.ts +0 -6
@@ -4,232 +4,419 @@
4
4
  (global = global || self, factory((global.ngxs = global.ngxs || {}, global.ngxs.store = global.ngxs.store || {}, global.ngxs.store.internals = {}), global.ng.core, global.rxjs));
5
5
  }(this, function (exports, core, rxjs) { 'use strict';
6
6
 
7
- /**
8
- * @fileoverview added by tsickle
9
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
- */
11
- /**
12
- * @param {?} a
13
- * @param {?} b
14
- * @return {?}
15
- */
16
- function defaultEqualityCheck(a, b) {
17
- return a === b;
18
- }
19
- /**
20
- * @param {?} equalityCheck
21
- * @param {?} prev
22
- * @param {?} next
23
- * @return {?}
24
- */
25
- function areArgumentsShallowlyEqual(equalityCheck, prev, next) {
26
- if (prev === null || next === null || prev.length !== next.length) {
27
- return false;
28
- }
29
- // Do this in a for loop (and not a `forEach` or an `every`) so we can determine equality as fast as possible.
30
- /** @type {?} */
31
- var length = prev.length;
32
- for (var i = 0; i < length; i++) {
33
- if (!equalityCheck(prev[i], next[i])) {
34
- return false;
35
- }
36
- }
37
- return true;
38
- }
39
- /**
40
- * Memoize a function on its last inputs only.
41
- * Originally from: https://github.com/reduxjs/reselect/blob/master/src/index.js
42
- *
43
- * @ignore
44
- * @template T
45
- * @param {?} func
46
- * @param {?=} equalityCheck
47
- * @return {?}
48
- */
49
- function memoize(func, equalityCheck) {
50
- if (equalityCheck === void 0) { equalityCheck = defaultEqualityCheck; }
51
- /** @type {?} */
52
- var lastArgs = null;
53
- /** @type {?} */
54
- var lastResult = null;
55
- // we reference arguments instead of spreading them for performance reasons
56
- /**
57
- * @return {?}
58
- */
59
- function memoized() {
60
- if (!areArgumentsShallowlyEqual(equalityCheck, lastArgs, arguments)) {
61
- // apply arguments instead of spreading for performance.
62
- lastResult = ((/** @type {?} */ (func))).apply(null, arguments);
63
- }
64
- lastArgs = arguments;
65
- return lastResult;
66
- }
67
- ((/** @type {?} */ (memoized))).reset = (/**
68
- * @return {?}
69
- */
70
- function () {
71
- // The hidden (for now) ability to reset the memoization
72
- lastArgs = null;
73
- lastResult = null;
74
- });
75
- return (/** @type {?} */ (memoized));
7
+ /**
8
+ * @fileoverview added by tsickle
9
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
+ */
11
+ /**
12
+ * @return {?}
13
+ */
14
+ function isAngularInTestMode() {
15
+ // This is safe to check for these properties in the following way since `typeof` does not
16
+ // throw an exception if the value does not exist in the scope.
17
+ // We should not try to read these values from the global scope (e.g. `ɵglobal` from the `@angular/core`).
18
+ // This is related to how these frameworks compile and execute modules. E.g. Jest wraps the module into
19
+ // its internal code where `jest` variable exists in the scope. It cannot be read from the global scope, e.g.
20
+ // this will return undefined `global.jest`, but `jest` will not equal undefined.
21
+ return (typeof __karma__ !== 'undefined' ||
22
+ typeof jasmine !== 'undefined' ||
23
+ typeof jest !== 'undefined' ||
24
+ typeof Mocha !== 'undefined');
76
25
  }
77
26
 
78
- /**
79
- * @fileoverview added by tsickle
80
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
81
- */
82
- /**
83
- * @return {?}
84
- */
85
- function _isAngularInTestMode() {
86
- /** @type {?} */
87
- var platformRef = core.getPlatform();
88
- if (!platformRef)
89
- return false;
90
- /** @type {?} */
91
- var compilerOptions = platformRef.injector.get(core.COMPILER_OPTIONS, null);
92
- if (!compilerOptions)
93
- return false;
94
- /** @type {?} */
95
- var isInTestMode = compilerOptions.some((/**
96
- * @param {?} item
97
- * @return {?}
98
- */
99
- function (item) {
100
- /** @type {?} */
101
- var providers = (item && item.providers) || [];
102
- return providers.some((/**
103
- * @param {?} provider
104
- * @return {?}
105
- */
106
- function (provider) {
107
- return ((provider && provider.provide && provider.provide.name === 'MockNgModuleResolver') ||
108
- false);
109
- }));
110
- }));
111
- return isInTestMode;
112
- }
113
- /** @type {?} */
114
- var isAngularInTestMode = memoize(_isAngularInTestMode);
27
+ /**
28
+ * @fileoverview added by tsickle
29
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
30
+ */
31
+ var NgxsBootstrapper = /** @class */ (function () {
32
+ function NgxsBootstrapper() {
33
+ /**
34
+ * Use `ReplaySubject`, thus we can get cached value even if the stream is completed
35
+ */
36
+ this.bootstrap$ = new rxjs.ReplaySubject(1);
37
+ }
38
+ Object.defineProperty(NgxsBootstrapper.prototype, "appBootstrapped$", {
39
+ get: /**
40
+ * @return {?}
41
+ */
42
+ function () {
43
+ return this.bootstrap$.asObservable();
44
+ },
45
+ enumerable: true,
46
+ configurable: true
47
+ });
48
+ /**
49
+ * This event will be emitted after attaching `ComponentRef` of the root component
50
+ * to the tree of views, that's a signal that application has been fully rendered
51
+ */
52
+ /**
53
+ * This event will be emitted after attaching `ComponentRef` of the root component
54
+ * to the tree of views, that's a signal that application has been fully rendered
55
+ * @return {?}
56
+ */
57
+ NgxsBootstrapper.prototype.bootstrap = /**
58
+ * This event will be emitted after attaching `ComponentRef` of the root component
59
+ * to the tree of views, that's a signal that application has been fully rendered
60
+ * @return {?}
61
+ */
62
+ function () {
63
+ this.bootstrap$.next(true);
64
+ this.bootstrap$.complete();
65
+ };
66
+ NgxsBootstrapper.decorators = [
67
+ { type: core.Injectable }
68
+ ];
69
+ return NgxsBootstrapper;
70
+ }());
71
+ if (false) {
72
+ /**
73
+ * Use `ReplaySubject`, thus we can get cached value even if the stream is completed
74
+ * @type {?}
75
+ * @private
76
+ */
77
+ NgxsBootstrapper.prototype.bootstrap$;
78
+ }
115
79
 
116
- /**
117
- * @fileoverview added by tsickle
118
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
119
- */
120
- var NgxsBootstrapper = /** @class */ (function () {
121
- function NgxsBootstrapper() {
122
- /**
123
- * Use `ReplaySubject`, thus we can get cached value even if the stream is completed
124
- */
125
- this.bootstrap$ = new rxjs.ReplaySubject(1);
126
- }
127
- Object.defineProperty(NgxsBootstrapper.prototype, "appBootstrapped$", {
128
- get: /**
129
- * @return {?}
130
- */
131
- function () {
132
- return this.bootstrap$.asObservable();
133
- },
134
- enumerable: true,
135
- configurable: true
136
- });
137
- /**
138
- * This event will be emitted after attaching `ComponentRef` of the root component
139
- * to the tree of views, that's a signal that application has been fully rendered
140
- */
141
- /**
142
- * This event will be emitted after attaching `ComponentRef` of the root component
143
- * to the tree of views, that's a signal that application has been fully rendered
144
- * @return {?}
145
- */
146
- NgxsBootstrapper.prototype.bootstrap = /**
147
- * This event will be emitted after attaching `ComponentRef` of the root component
148
- * to the tree of views, that's a signal that application has been fully rendered
149
- * @return {?}
150
- */
151
- function () {
152
- this.bootstrap$.next(true);
153
- this.bootstrap$.complete();
154
- };
155
- NgxsBootstrapper.decorators = [
156
- { type: core.Injectable }
157
- ];
158
- return NgxsBootstrapper;
159
- }());
160
- if (false) {
161
- /**
162
- * Use `ReplaySubject`, thus we can get cached value even if the stream is completed
163
- * @type {?}
164
- * @private
165
- */
166
- NgxsBootstrapper.prototype.bootstrap$;
80
+ /**
81
+ * @fileoverview added by tsickle
82
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
83
+ */
84
+ /**
85
+ * @param {?} a
86
+ * @param {?} b
87
+ * @return {?}
88
+ */
89
+ function defaultEqualityCheck(a, b) {
90
+ return a === b;
91
+ }
92
+ /**
93
+ * @param {?} equalityCheck
94
+ * @param {?} prev
95
+ * @param {?} next
96
+ * @return {?}
97
+ */
98
+ function areArgumentsShallowlyEqual(equalityCheck, prev, next) {
99
+ if (prev === null || next === null || prev.length !== next.length) {
100
+ return false;
101
+ }
102
+ // Do this in a for loop (and not a `forEach` or an `every`) so we can determine equality as fast as possible.
103
+ /** @type {?} */
104
+ var length = prev.length;
105
+ for (var i = 0; i < length; i++) {
106
+ if (!equalityCheck(prev[i], next[i])) {
107
+ return false;
108
+ }
109
+ }
110
+ return true;
111
+ }
112
+ /**
113
+ * Memoize a function on its last inputs only.
114
+ * Originally from: https://github.com/reduxjs/reselect/blob/master/src/index.js
115
+ *
116
+ * @ignore
117
+ * @template T
118
+ * @param {?} func
119
+ * @param {?=} equalityCheck
120
+ * @return {?}
121
+ */
122
+ function memoize(func, equalityCheck) {
123
+ if (equalityCheck === void 0) { equalityCheck = defaultEqualityCheck; }
124
+ /** @type {?} */
125
+ var lastArgs = null;
126
+ /** @type {?} */
127
+ var lastResult = null;
128
+ // we reference arguments instead of spreading them for performance reasons
129
+ /**
130
+ * @return {?}
131
+ */
132
+ function memoized() {
133
+ if (!areArgumentsShallowlyEqual(equalityCheck, lastArgs, arguments)) {
134
+ // apply arguments instead of spreading for performance.
135
+ lastResult = ((/** @type {?} */ (func))).apply(null, arguments);
136
+ }
137
+ lastArgs = arguments;
138
+ return lastResult;
139
+ }
140
+ ((/** @type {?} */ (memoized))).reset = (/**
141
+ * @return {?}
142
+ */
143
+ function () {
144
+ // The hidden (for now) ability to reset the memoization
145
+ lastArgs = null;
146
+ lastResult = null;
147
+ });
148
+ return (/** @type {?} */ (memoized));
167
149
  }
168
150
 
169
- /**
170
- * @fileoverview added by tsickle
171
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
172
- */
173
- /** @type {?} */
174
- var INITIAL_STATE_TOKEN = new core.InjectionToken('INITIAL_STATE_TOKEN');
175
- var InitialState = /** @class */ (function () {
176
- function InitialState() {
177
- }
178
- /**
179
- * @param {?} state
180
- * @return {?}
181
- */
182
- InitialState.set = /**
183
- * @param {?} state
184
- * @return {?}
185
- */
186
- function (state) {
187
- this.value = state;
188
- };
189
- /**
190
- * @return {?}
191
- */
192
- InitialState.pop = /**
193
- * @return {?}
194
- */
195
- function () {
196
- /** @type {?} */
197
- var state = this.value;
198
- this.value = {};
199
- return state;
200
- };
201
- InitialState.value = {};
202
- return InitialState;
203
- }());
204
- if (false) {
205
- /**
206
- * @type {?}
207
- * @private
208
- */
209
- InitialState.value;
151
+ /**
152
+ * @fileoverview added by tsickle
153
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
154
+ */
155
+ /** @type {?} */
156
+ var INITIAL_STATE_TOKEN = new core.InjectionToken('INITIAL_STATE_TOKEN');
157
+ var InitialState = /** @class */ (function () {
158
+ function InitialState() {
159
+ }
160
+ /**
161
+ * @param {?} state
162
+ * @return {?}
163
+ */
164
+ InitialState.set = /**
165
+ * @param {?} state
166
+ * @return {?}
167
+ */
168
+ function (state) {
169
+ this.value = state;
170
+ };
171
+ /**
172
+ * @return {?}
173
+ */
174
+ InitialState.pop = /**
175
+ * @return {?}
176
+ */
177
+ function () {
178
+ /** @type {?} */
179
+ var state = this.value;
180
+ this.value = {};
181
+ return state;
182
+ };
183
+ InitialState.value = {};
184
+ return InitialState;
185
+ }());
186
+ if (false) {
187
+ /**
188
+ * @type {?}
189
+ * @private
190
+ */
191
+ InitialState.value;
210
192
  }
211
193
 
212
- /**
213
- * @fileoverview added by tsickle
214
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
215
- */
216
- /**
217
- * @see StateContextFactory as it's referenced by this token to be accessed by plugins internally
218
- * @type {?}
219
- */
220
- var NGXS_STATE_CONTEXT_FACTORY = new core.InjectionToken('Internals.StateContextFactory');
221
- /**
222
- * @see StateFactory as it's referenced by this token to be accessed by plugins internally
223
- * @type {?}
224
- */
194
+ /**
195
+ * @fileoverview added by tsickle
196
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
197
+ */
198
+ /**
199
+ * @see StateContextFactory as it's referenced by this token to be accessed by plugins internally
200
+ * @type {?}
201
+ */
202
+ var NGXS_STATE_CONTEXT_FACTORY = new core.InjectionToken('Internals.StateContextFactory');
203
+ /**
204
+ * @see StateFactory as it's referenced by this token to be accessed by plugins internally
205
+ * @type {?}
206
+ */
225
207
  var NGXS_STATE_FACTORY = new core.InjectionToken('Internals.StateFactory');
226
208
 
209
+ /**
210
+ * @fileoverview added by tsickle
211
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
212
+ */
213
+ // Angular doesn't export `NG_FACTORY_DEF`.
214
+ /** @type {?} */
215
+ var NG_FACTORY_DEF = 'ɵfac';
216
+ // A `Symbol` which is used to save the `Injector` onto the class instance.
217
+ /** @type {?} */
218
+ var InjectorInstance = Symbol('InjectorInstance');
219
+ // A `Symbol` which is used to determine if factory has been decorated previously or not.
220
+ /** @type {?} */
221
+ var FactoryHasBeenDecorated = Symbol('FactoryHasBeenDecorated');
222
+ // A `Symbol` which is used to save the notifier on the class instance. The `InjectorInstance` cannot
223
+ // be retrieved within the `constructor` since it's set after the `factory()` is called.
224
+ /** @type {?} */
225
+ var InjectorNotifier = Symbol('InjectorNotifier');
226
+ /**
227
+ * @record
228
+ */
229
+ function PrototypeWithInjectorNotifier() { }
230
+ if (false) {
231
+ /* Skipping unnamed member:
232
+ [InjectorNotifier]?: ReplaySubject<boolean>;*/
233
+ }
234
+ /**
235
+ * @param {?} target
236
+ * @return {?}
237
+ */
238
+ function ensureInjectorNotifierIsCaptured(target) {
239
+ if (target[InjectorNotifier]) {
240
+ return (/** @type {?} */ (target[InjectorNotifier]));
241
+ }
242
+ else {
243
+ /** @type {?} */
244
+ var injectorNotifier$_1 = new rxjs.ReplaySubject(1);
245
+ Object.defineProperty(target, InjectorNotifier, {
246
+ get: (/**
247
+ * @return {?}
248
+ */
249
+ function () { return injectorNotifier$_1; })
250
+ });
251
+ return injectorNotifier$_1;
252
+ }
253
+ }
254
+ // eslint-disable-next-line @typescript-eslint/ban-types
255
+ /**
256
+ * @param {?} target
257
+ * @return {?}
258
+ */
259
+ function ensureLocalInjectorCaptured(target) {
260
+ if (FactoryHasBeenDecorated in target.constructor.prototype) {
261
+ return;
262
+ }
263
+ /** @type {?} */
264
+ var constructor = target.constructor;
265
+ // Means we're in AOT mode.
266
+ if (typeof constructor[NG_FACTORY_DEF] === 'function') {
267
+ decorateFactory(constructor);
268
+ }
269
+ else if (ngDevMode) {
270
+ // We're running in JIT mode and that means we're not able to get the compiled definition
271
+ // on the class inside the property decorator during the current message loop tick. We have
272
+ // to wait for the next message loop tick. Note that this is safe since this Promise will be
273
+ // resolved even before the `APP_INITIALIZER` is resolved.
274
+ // The below code also will be executed only in development mode, since it's never recommended
275
+ // to use the JIT compiler in production mode (by setting "aot: false").
276
+ decorateFactoryLater(constructor);
277
+ }
278
+ target.constructor.prototype[FactoryHasBeenDecorated] = true;
279
+ }
280
+ /**
281
+ * @template T
282
+ * @param {?} instance
283
+ * @param {?} token
284
+ * @return {?}
285
+ */
286
+ function localInject(instance, token) {
287
+ /** @type {?} */
288
+ var injector = instance[InjectorInstance];
289
+ return injector ? injector.get(token) : null;
290
+ }
291
+ /**
292
+ * @param {?} constructor
293
+ * @return {?}
294
+ */
295
+ function decorateFactory(constructor) {
296
+ /** @type {?} */
297
+ var factory = constructor[NG_FACTORY_DEF];
298
+ if (typeof factory !== 'function') {
299
+ return;
300
+ }
301
+ // Let's try to get any definition.
302
+ // Caretaker note: this will be compatible only with Angular 9+, since Angular 9 is the first
303
+ // Ivy-stable version. Previously definition properties were named differently (e.g. `ngComponentDef`).
304
+ /** @type {?} */
305
+ var def = constructor.ɵprov || constructor.ɵpipe || constructor.ɵcmp || constructor.ɵdir;
306
+ /** @type {?} */
307
+ var decoratedFactory = (/**
308
+ * @return {?}
309
+ */
310
+ function () {
311
+ /** @type {?} */
312
+ var instance = factory();
313
+ // Caretaker note: `inject()` won't work here.
314
+ // We can use the `directiveInject` only during the component
315
+ // construction, since Angular captures the currently active injector.
316
+ // We're not able to use this function inside the getter (when the `selectorId` property is
317
+ // requested for the first time), since the currently active injector will be null.
318
+ instance[InjectorInstance] = core.ɵɵdirectiveInject(
319
+ // We're using `INJECTOR` token except of the `Injector` class since the compiler
320
+ // throws: `Cannot assign an abstract constructor type to a non-abstract constructor type.`.
321
+ // Caretaker note: that this is the same way of getting the injector.
322
+ core.INJECTOR);
323
+ // Caretaker note: the notifier will be available only if consumers call the `ensureInjectorNotifierIsCaptured()`.
324
+ /** @type {?} */
325
+ var injectorNotifier$ = instance[InjectorNotifier];
326
+ if (injectorNotifier$) {
327
+ injectorNotifier$.next(true);
328
+ injectorNotifier$.complete();
329
+ }
330
+ return instance;
331
+ });
332
+ // If we've found any definition then it's enough to override the `def.factory` since Angular
333
+ // code uses the `def.factory` and then fallbacks to `ɵfac`.
334
+ if (def) {
335
+ def.factory = decoratedFactory;
336
+ }
337
+ // `@NgModule()` doesn't doesn't have definition factory, also providers have definitions but Angular
338
+ // still uses the `ɵfac`.
339
+ Object.defineProperty(constructor, NG_FACTORY_DEF, {
340
+ get: (/**
341
+ * @return {?}
342
+ */
343
+ function () { return decoratedFactory; })
344
+ });
345
+ }
346
+ /**
347
+ * @param {?} constructor
348
+ * @return {?}
349
+ */
350
+ function decorateFactoryLater(constructor) {
351
+ // This function actually will be tree-shaken away when building for production since it's guarded with `ngDevMode`.
352
+ // We're having the `try-catch` here because of the `SyncTestZoneSpec`, which throws
353
+ // an error when micro or macrotask is used within a synchronous test. E.g. `Cannot call
354
+ // Promise.then from within a sync test`.
355
+ try {
356
+ Promise.resolve().then((/**
357
+ * @return {?}
358
+ */
359
+ function () {
360
+ decorateFactory(constructor);
361
+ }));
362
+ }
363
+ catch (_a) {
364
+ // This is kind of a "hack", but we try to be backwards-compatible,
365
+ // tho this `catch` block will only be executed when tests are run with Jasmine or Jest.
366
+ core.ɵglobal.process &&
367
+ core.ɵglobal.process.nextTick &&
368
+ core.ɵglobal.process.nextTick((/**
369
+ * @return {?}
370
+ */
371
+ function () {
372
+ decorateFactory(constructor);
373
+ }));
374
+ }
375
+ }
376
+ /**
377
+ * @record
378
+ */
379
+ function Definition() { }
380
+ if (false) {
381
+ /** @type {?} */
382
+ Definition.prototype.factory;
383
+ }
384
+ /**
385
+ * @record
386
+ */
387
+ function ConstructorWithDefinitionAndFactory() { }
388
+ if (false) {
389
+ /** @type {?|undefined} */
390
+ ConstructorWithDefinitionAndFactory.prototype.ɵprov;
391
+ /** @type {?|undefined} */
392
+ ConstructorWithDefinitionAndFactory.prototype.ɵpipe;
393
+ /** @type {?|undefined} */
394
+ ConstructorWithDefinitionAndFactory.prototype.ɵcmp;
395
+ /** @type {?|undefined} */
396
+ ConstructorWithDefinitionAndFactory.prototype.ɵdir;
397
+ /* Skipping unnamed member:
398
+ [NG_FACTORY_DEF]?: Factory;*/
399
+ }
400
+ /**
401
+ * @record
402
+ */
403
+ function PrivateInstance() { }
404
+ if (false) {
405
+ /* Skipping unnamed member:
406
+ [InjectorInstance]?: Injector;*/
407
+ /* Skipping unnamed member:
408
+ [InjectorNotifier]?: ReplaySubject<boolean>;*/
409
+ }
410
+
227
411
  exports.INITIAL_STATE_TOKEN = INITIAL_STATE_TOKEN;
228
412
  exports.InitialState = InitialState;
229
413
  exports.NGXS_STATE_CONTEXT_FACTORY = NGXS_STATE_CONTEXT_FACTORY;
230
414
  exports.NGXS_STATE_FACTORY = NGXS_STATE_FACTORY;
231
415
  exports.NgxsBootstrapper = NgxsBootstrapper;
416
+ exports.ensureInjectorNotifierIsCaptured = ensureInjectorNotifierIsCaptured;
417
+ exports.ensureLocalInjectorCaptured = ensureLocalInjectorCaptured;
232
418
  exports.isAngularInTestMode = isAngularInTestMode;
419
+ exports.localInject = localInject;
233
420
  exports.memoize = memoize;
234
421
 
235
422
  Object.defineProperty(exports, '__esModule', { value: true });