@ngxs/store 3.7.6-dev.master-1bdb8c0 → 3.7.6-dev.master-dcdd391
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.
- package/bundles/ngxs-store-internals-testing.umd.js +409 -420
- package/bundles/ngxs-store-internals-testing.umd.js.map +1 -1
- package/bundles/ngxs-store-internals.umd.js +48 -117
- package/bundles/ngxs-store-internals.umd.js.map +1 -1
- package/bundles/ngxs-store-operators.umd.js +60 -402
- package/bundles/ngxs-store-operators.umd.js.map +1 -1
- package/bundles/ngxs-store.umd.js +1041 -3269
- package/bundles/ngxs-store.umd.js.map +1 -1
- package/esm2015/index.js +7 -7
- package/esm2015/internals/angular.js +1 -8
- package/esm2015/internals/index.js +2 -6
- package/esm2015/internals/initial-state.js +1 -21
- package/esm2015/internals/internal-tokens.js +4 -15
- package/esm2015/internals/memoize.js +8 -33
- package/esm2015/internals/ngxs-bootstrapper.js +7 -20
- package/esm2015/internals/ngxs-store-internals.js +2 -6
- package/esm2015/internals/src/symbols.js +2 -14
- package/esm2015/internals/symbols.js +2 -14
- package/esm2015/internals/testing/fresh-platform.js +13 -53
- package/esm2015/internals/testing/helpers/ngxs-test.component.js +11 -17
- package/esm2015/internals/testing/helpers/ngxs-test.module.js +13 -16
- package/esm2015/internals/testing/index.js +1 -5
- package/esm2015/internals/testing/ngxs-store-internals-testing.js +2 -6
- package/esm2015/internals/testing/ngxs.setup.js +1 -31
- package/esm2015/internals/testing/skip-console-logging.js +7 -42
- package/esm2015/internals/testing/symbol.js +2 -29
- package/esm2015/ngxs-store.js +2 -23
- package/esm2015/operators/append.js +7 -18
- package/esm2015/operators/compose.js +4 -22
- package/esm2015/operators/iif.js +12 -30
- package/esm2015/operators/index.js +1 -5
- package/esm2015/operators/insert-item.js +10 -22
- package/esm2015/operators/ngxs-store-operators.js +2 -6
- package/esm2015/operators/patch.js +5 -22
- package/esm2015/operators/remove-item.js +5 -17
- package/esm2015/operators/types.js +2 -5
- package/esm2015/operators/update-item.js +12 -26
- package/esm2015/operators/utils.js +1 -32
- package/esm2015/src/actions/actions.js +1 -18
- package/esm2015/src/actions/symbols.js +2 -39
- package/esm2015/src/actions-stream.js +24 -90
- package/esm2015/src/configs/messages.config.js +1 -44
- package/esm2015/src/decorators/action.js +3 -18
- package/esm2015/src/decorators/select/select-factory.js +10 -27
- package/esm2015/src/decorators/select/select.js +3 -22
- package/esm2015/src/decorators/select/symbols.js +4 -25
- package/esm2015/src/decorators/selector/selector.js +5 -29
- package/esm2015/src/decorators/selector/symbols.js +2 -5
- package/esm2015/src/decorators/selector-options.js +4 -18
- package/esm2015/src/decorators/state.js +5 -44
- package/esm2015/src/dev-features/ngxs-development.module.js +8 -12
- package/esm2015/src/dev-features/ngxs-unhandled-actions-logger.js +15 -38
- package/esm2015/src/dev-features/symbols.js +2 -20
- package/esm2015/src/execution/dispatch-outside-zone-ngxs-execution-strategy.js +10 -56
- package/esm2015/src/execution/internal-ngxs-execution-strategy.js +10 -32
- package/esm2015/src/execution/noop-ngxs-execution-strategy.js +7 -19
- package/esm2015/src/execution/symbols.js +3 -32
- package/esm2015/src/internal/dispatcher.js +26 -121
- package/esm2015/src/internal/error-handler.js +18 -72
- package/esm2015/src/internal/internals.js +24 -244
- package/esm2015/src/internal/lifecycle-state-manager.js +19 -117
- package/esm2015/src/internal/state-context-factory.js +9 -67
- package/esm2015/src/internal/state-factory.js +42 -225
- package/esm2015/src/internal/state-operations.js +19 -80
- package/esm2015/src/internal/state-operators.js +6 -20
- package/esm2015/src/internal/state-stream.js +7 -13
- package/esm2015/src/ivy/ivy-enabled-in-dev-mode.js +7 -17
- package/esm2015/src/module.js +12 -47
- package/esm2015/src/modules/ngxs-feature.module.js +18 -36
- package/esm2015/src/modules/ngxs-root.module.js +18 -26
- package/esm2015/src/operators/leave-ngxs.js +8 -43
- package/esm2015/src/operators/of-action.js +16 -111
- package/esm2015/src/plugin-manager.js +17 -50
- package/esm2015/src/plugin_api.js +1 -5
- package/esm2015/src/private_api.js +3 -0
- package/esm2015/src/public_api.js +1 -5
- package/esm2015/src/public_to_deprecate.js +1 -51
- package/esm2015/src/state-token/state-token.js +4 -32
- package/esm2015/src/state-token/symbols.js +2 -5
- package/esm2015/src/store.js +20 -104
- package/esm2015/src/symbols.js +7 -177
- package/esm2015/src/utils/compose.js +5 -23
- package/esm2015/src/utils/freeze.js +5 -20
- package/esm2015/src/utils/selector-utils.js +23 -136
- package/esm2015/src/utils/store-validators.js +3 -36
- package/esm2015/src/utils/utils.js +13 -64
- package/fesm2015/ngxs-store-internals-testing.js +38 -159
- package/fesm2015/ngxs-store-internals-testing.js.map +1 -1
- package/fesm2015/ngxs-store-internals.js +18 -100
- package/fesm2015/ngxs-store-internals.js.map +1 -1
- package/fesm2015/ngxs-store-operators.js +52 -185
- package/fesm2015/ngxs-store-operators.js.map +1 -1
- package/fesm2015/ngxs-store.js +403 -2476
- package/fesm2015/ngxs-store.js.map +1 -1
- package/index.d.ts +4 -0
- package/internals/index.d.ts +1 -1
- package/internals/internal-tokens.d.ts +2 -8
- package/internals/ngxs-bootstrapper.d.ts +4 -1
- package/internals/ngxs-store-internals.d.ts +1 -0
- package/internals/package.json +2 -5
- package/internals/testing/helpers/ngxs-test.component.d.ts +3 -0
- package/internals/testing/helpers/ngxs-test.module.d.ts +6 -0
- package/internals/testing/ngxs-store-internals-testing.d.ts +1 -0
- package/internals/testing/package.json +2 -5
- package/ngxs-store.d.ts +1 -18
- package/operators/ngxs-store-operators.d.ts +1 -0
- package/operators/package.json +2 -5
- package/package.json +3 -6
- package/src/actions/actions.d.ts +2 -2
- package/src/actions-stream.d.ts +5 -0
- package/src/decorators/select/select-factory.d.ts +3 -0
- package/src/decorators/state.d.ts +1 -1
- package/src/dev-features/ngxs-development.module.d.ts +4 -0
- package/src/dev-features/ngxs-unhandled-actions-logger.d.ts +3 -0
- package/src/dev-features/symbols.d.ts +1 -1
- package/src/execution/dispatch-outside-zone-ngxs-execution-strategy.d.ts +3 -0
- package/src/execution/internal-ngxs-execution-strategy.d.ts +3 -0
- package/src/execution/noop-ngxs-execution-strategy.d.ts +3 -0
- package/src/internal/dispatcher.d.ts +5 -0
- package/src/internal/error-handler.d.ts +4 -1
- package/src/internal/lifecycle-state-manager.d.ts +3 -0
- package/src/internal/state-context-factory.d.ts +3 -0
- package/src/internal/state-factory.d.ts +7 -4
- package/src/internal/state-operations.d.ts +3 -0
- package/src/internal/state-stream.d.ts +3 -0
- package/src/module.d.ts +4 -0
- package/src/modules/ngxs-feature.module.d.ts +4 -0
- package/src/modules/ngxs-root.module.d.ts +4 -0
- package/src/plugin-manager.d.ts +4 -1
- package/src/private_api.d.ts +2 -0
- package/src/store.d.ts +3 -0
- package/src/symbols.d.ts +4 -1
- package/src/utils/utils.d.ts +1 -1
- package/bundles/ngxs-store-internals-testing.umd.min.js +0 -16
- package/bundles/ngxs-store-internals-testing.umd.min.js.map +0 -1
- package/bundles/ngxs-store-internals.umd.min.js +0 -2
- package/bundles/ngxs-store-internals.umd.min.js.map +0 -1
- package/bundles/ngxs-store-operators.umd.min.js +0 -16
- package/bundles/ngxs-store-operators.umd.min.js.map +0 -1
- package/bundles/ngxs-store.umd.min.js +0 -16
- package/bundles/ngxs-store.umd.min.js.map +0 -1
- package/esm5/index.js +0 -13
- package/esm5/internals/angular.js +0 -20
- package/esm5/internals/index.js +0 -10
- package/esm5/internals/initial-state.js +0 -45
- package/esm5/internals/internal-tokens.js +0 -16
- package/esm5/internals/memoize.js +0 -71
- package/esm5/internals/ngxs-bootstrapper.js +0 -56
- package/esm5/internals/ngxs-store-internals.js +0 -9
- package/esm5/internals/src/symbols.js +0 -14
- package/esm5/internals/symbols.js +0 -14
- package/esm5/internals/testing/fresh-platform.js +0 -121
- package/esm5/internals/testing/helpers/ngxs-test.component.js +0 -32
- package/esm5/internals/testing/helpers/ngxs-test.module.js +0 -32
- package/esm5/internals/testing/index.js +0 -8
- package/esm5/internals/testing/ngxs-store-internals-testing.js +0 -9
- package/esm5/internals/testing/ngxs.setup.js +0 -98
- package/esm5/internals/testing/skip-console-logging.js +0 -62
- package/esm5/internals/testing/symbol.js +0 -29
- package/esm5/ngxs-store.js +0 -26
- package/esm5/operators/append.js +0 -31
- package/esm5/operators/compose.js +0 -28
- package/esm5/operators/iif.js +0 -56
- package/esm5/operators/index.js +0 -18
- package/esm5/operators/insert-item.js +0 -41
- package/esm5/operators/ngxs-store-operators.js +0 -9
- package/esm5/operators/patch.js +0 -39
- package/esm5/operators/remove-item.js +0 -34
- package/esm5/operators/types.js +0 -5
- package/esm5/operators/update-item.js +0 -54
- package/esm5/operators/utils.js +0 -50
- package/esm5/src/actions/actions.js +0 -62
- package/esm5/src/actions/symbols.js +0 -39
- package/esm5/src/actions-stream.js +0 -201
- package/esm5/src/configs/messages.config.js +0 -79
- package/esm5/src/decorators/action.js +0 -60
- package/esm5/src/decorators/select/select-factory.js +0 -46
- package/esm5/src/decorators/select/select.js +0 -50
- package/esm5/src/decorators/select/symbols.js +0 -51
- package/esm5/src/decorators/selector/selector.js +0 -59
- package/esm5/src/decorators/selector/symbols.js +0 -5
- package/esm5/src/decorators/selector-options.js +0 -34
- package/esm5/src/decorators/state.js +0 -78
- package/esm5/src/dev-features/ngxs-development.module.js +0 -34
- package/esm5/src/dev-features/ngxs-unhandled-actions-logger.js +0 -98
- package/esm5/src/dev-features/symbols.js +0 -24
- package/esm5/src/execution/dispatch-outside-zone-ngxs-execution-strategy.js +0 -123
- package/esm5/src/execution/internal-ngxs-execution-strategy.js +0 -54
- package/esm5/src/execution/noop-ngxs-execution-strategy.js +0 -43
- package/esm5/src/execution/symbols.js +0 -52
- package/esm5/src/internal/dispatcher.js +0 -231
- package/esm5/src/internal/error-handler.js +0 -125
- package/esm5/src/internal/internals.js +0 -470
- package/esm5/src/internal/lifecycle-state-manager.js +0 -224
- package/esm5/src/internal/state-context-factory.js +0 -135
- package/esm5/src/internal/state-factory.js +0 -599
- package/esm5/src/internal/state-operations.js +0 -134
- package/esm5/src/internal/state-operators.js +0 -34
- package/esm5/src/internal/state-stream.js +0 -37
- package/esm5/src/ivy/ivy-enabled-in-dev-mode.js +0 -28
- package/esm5/src/module.js +0 -202
- package/esm5/src/modules/ngxs-feature.module.js +0 -65
- package/esm5/src/modules/ngxs-root.module.js +0 -44
- package/esm5/src/operators/leave-ngxs.js +0 -58
- package/esm5/src/operators/of-action.js +0 -223
- package/esm5/src/plugin-manager.js +0 -82
- package/esm5/src/plugin_api.js +0 -10
- package/esm5/src/public_api.js +0 -31
- package/esm5/src/public_to_deprecate.js +0 -64
- package/esm5/src/state-token/state-token.js +0 -57
- package/esm5/src/state-token/symbols.js +0 -5
- package/esm5/src/store.js +0 -241
- package/esm5/src/symbols.js +0 -230
- package/esm5/src/utils/compose.js +0 -55
- package/esm5/src/utils/freeze.js +0 -35
- package/esm5/src/utils/selector-utils.js +0 -230
- package/esm5/src/utils/store-validators.js +0 -78
- package/esm5/src/utils/utils.js +0 -151
- package/fesm5/ngxs-store-internals-testing.js +0 -345
- package/fesm5/ngxs-store-internals-testing.js.map +0 -1
- package/fesm5/ngxs-store-internals.js +0 -217
- package/fesm5/ngxs-store-internals.js.map +0 -1
- package/fesm5/ngxs-store-operators.js +0 -341
- package/fesm5/ngxs-store-operators.js.map +0 -1
- package/fesm5/ngxs-store.js +0 -4783
- package/fesm5/ngxs-store.js.map +0 -1
- package/internals/ngxs-store-internals.metadata.json +0 -1
- package/internals/testing/ngxs-store-internals-testing.metadata.json +0 -1
- package/ngxs-store.metadata.json +0 -1
- package/operators/ngxs-store-operators.metadata.json +0 -1
- package/types/index.d.ts +0 -2
|
@@ -1,345 +0,0 @@
|
|
|
1
|
-
import { __spread, __awaiter, __generator } from 'tslib';
|
|
2
|
-
import { Component, NgModule, ApplicationRef, destroyPlatform, VERSION, createPlatform } from '@angular/core';
|
|
3
|
-
import { TestBed } from '@angular/core/testing';
|
|
4
|
-
import { DOCUMENT } from '@angular/common';
|
|
5
|
-
import { BrowserModule, ɵBrowserDomAdapter, ɵgetDOM } from '@angular/platform-browser';
|
|
6
|
-
import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
|
|
7
|
-
import { NgxsModule, Store } from '@ngxs/store';
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* @fileoverview added by tsickle
|
|
11
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
12
|
-
*/
|
|
13
|
-
var NgxsTestComponent = /** @class */ (function () {
|
|
14
|
-
function NgxsTestComponent() {
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @return {?}
|
|
18
|
-
*/
|
|
19
|
-
NgxsTestComponent.prototype.ngOnInit = /**
|
|
20
|
-
* @return {?}
|
|
21
|
-
*/
|
|
22
|
-
function () { };
|
|
23
|
-
/**
|
|
24
|
-
* @return {?}
|
|
25
|
-
*/
|
|
26
|
-
NgxsTestComponent.prototype.ngAfterViewInit = /**
|
|
27
|
-
* @return {?}
|
|
28
|
-
*/
|
|
29
|
-
function () { };
|
|
30
|
-
NgxsTestComponent.decorators = [
|
|
31
|
-
{ type: Component, args: [{
|
|
32
|
-
selector: 'app-root',
|
|
33
|
-
template: ''
|
|
34
|
-
}] }
|
|
35
|
-
];
|
|
36
|
-
return NgxsTestComponent;
|
|
37
|
-
}());
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* @fileoverview added by tsickle
|
|
41
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
42
|
-
*/
|
|
43
|
-
var NgxsTestModule = /** @class */ (function () {
|
|
44
|
-
function NgxsTestModule() {
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* @param {?} app
|
|
48
|
-
* @return {?}
|
|
49
|
-
*/
|
|
50
|
-
NgxsTestModule.ngDoBootstrap = /**
|
|
51
|
-
* @param {?} app
|
|
52
|
-
* @return {?}
|
|
53
|
-
*/
|
|
54
|
-
function (app) {
|
|
55
|
-
app.bootstrap(NgxsTestComponent);
|
|
56
|
-
};
|
|
57
|
-
NgxsTestModule.decorators = [
|
|
58
|
-
{ type: NgModule, args: [{
|
|
59
|
-
imports: [BrowserModule],
|
|
60
|
-
declarations: [NgxsTestComponent],
|
|
61
|
-
entryComponents: [NgxsTestComponent]
|
|
62
|
-
},] }
|
|
63
|
-
];
|
|
64
|
-
return NgxsTestModule;
|
|
65
|
-
}());
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* @fileoverview added by tsickle
|
|
69
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
70
|
-
*/
|
|
71
|
-
var NgxsTestBed = /** @class */ (function () {
|
|
72
|
-
function NgxsTestBed() {
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* @param {?} options
|
|
76
|
-
* @return {?}
|
|
77
|
-
*/
|
|
78
|
-
NgxsTestBed.configureTestingStates = /**
|
|
79
|
-
* @param {?} options
|
|
80
|
-
* @return {?}
|
|
81
|
-
*/
|
|
82
|
-
function (options) {
|
|
83
|
-
this.resetTestBed();
|
|
84
|
-
if (options.before) {
|
|
85
|
-
options.before();
|
|
86
|
-
}
|
|
87
|
-
TestBed.configureTestingModule({
|
|
88
|
-
imports: __spread([
|
|
89
|
-
NgxsTestModule,
|
|
90
|
-
NgxsModule.forRoot(options.states || [], options.ngxsOptions || {})
|
|
91
|
-
], (options.imports || []))
|
|
92
|
-
}).compileComponents();
|
|
93
|
-
NgxsTestBed.ngxsBootstrap();
|
|
94
|
-
return {
|
|
95
|
-
/**
|
|
96
|
-
* @return {?}
|
|
97
|
-
*/
|
|
98
|
-
get store() {
|
|
99
|
-
return TestBed.inject(Store);
|
|
100
|
-
},
|
|
101
|
-
/**
|
|
102
|
-
* @return {?}
|
|
103
|
-
*/
|
|
104
|
-
get getTestBed() {
|
|
105
|
-
return TestBed;
|
|
106
|
-
}
|
|
107
|
-
};
|
|
108
|
-
};
|
|
109
|
-
/**
|
|
110
|
-
* @private
|
|
111
|
-
* @return {?}
|
|
112
|
-
*/
|
|
113
|
-
NgxsTestBed.ngxsBootstrap = /**
|
|
114
|
-
* @private
|
|
115
|
-
* @return {?}
|
|
116
|
-
*/
|
|
117
|
-
function () {
|
|
118
|
-
NgxsTestBed.createRootNode();
|
|
119
|
-
NgxsTestModule.ngDoBootstrap(TestBed.inject(ApplicationRef));
|
|
120
|
-
};
|
|
121
|
-
/**
|
|
122
|
-
* @private
|
|
123
|
-
* @return {?}
|
|
124
|
-
*/
|
|
125
|
-
NgxsTestBed.resetTestBed = /**
|
|
126
|
-
* @private
|
|
127
|
-
* @return {?}
|
|
128
|
-
*/
|
|
129
|
-
function () {
|
|
130
|
-
TestBed.resetTestEnvironment();
|
|
131
|
-
TestBed.initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting());
|
|
132
|
-
};
|
|
133
|
-
/**
|
|
134
|
-
* @private
|
|
135
|
-
* @param {?=} selector
|
|
136
|
-
* @return {?}
|
|
137
|
-
*/
|
|
138
|
-
NgxsTestBed.createRootNode = /**
|
|
139
|
-
* @private
|
|
140
|
-
* @param {?=} selector
|
|
141
|
-
* @return {?}
|
|
142
|
-
*/
|
|
143
|
-
function (selector) {
|
|
144
|
-
if (selector === void 0) { selector = 'app-root'; }
|
|
145
|
-
/** @type {?} */
|
|
146
|
-
var document = TestBed.inject(DOCUMENT);
|
|
147
|
-
/** @type {?} */
|
|
148
|
-
var adapter = new ɵBrowserDomAdapter();
|
|
149
|
-
/** @type {?} */
|
|
150
|
-
var root = adapter.createElement(selector);
|
|
151
|
-
document.body.appendChild(root);
|
|
152
|
-
};
|
|
153
|
-
return NgxsTestBed;
|
|
154
|
-
}());
|
|
155
|
-
|
|
156
|
-
/**
|
|
157
|
-
* @fileoverview added by tsickle
|
|
158
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
159
|
-
*/
|
|
160
|
-
/**
|
|
161
|
-
* @return {?}
|
|
162
|
-
*/
|
|
163
|
-
function createRootElement() {
|
|
164
|
-
/** @type {?} */
|
|
165
|
-
var document = TestBed.inject(DOCUMENT);
|
|
166
|
-
/** @type {?} */
|
|
167
|
-
var root = ɵgetDOM().createElement('app-root', document);
|
|
168
|
-
document.body.appendChild(root);
|
|
169
|
-
}
|
|
170
|
-
/**
|
|
171
|
-
* @return {?}
|
|
172
|
-
*/
|
|
173
|
-
function removeRootElement() {
|
|
174
|
-
/** @type {?} */
|
|
175
|
-
var root = (/** @type {?} */ (document.getElementsByTagName('app-root').item(0)));
|
|
176
|
-
try {
|
|
177
|
-
document.body.removeChild(root);
|
|
178
|
-
}
|
|
179
|
-
catch (_a) { }
|
|
180
|
-
}
|
|
181
|
-
/**
|
|
182
|
-
* @return {?}
|
|
183
|
-
*/
|
|
184
|
-
function destroyPlatformBeforeBootstrappingTheNewOne() {
|
|
185
|
-
destroyPlatform();
|
|
186
|
-
createRootElement();
|
|
187
|
-
}
|
|
188
|
-
// As we create our custom platform via `bootstrapModule`
|
|
189
|
-
// we have to destroy it after assetions and revert
|
|
190
|
-
// the previous one
|
|
191
|
-
/**
|
|
192
|
-
* @return {?}
|
|
193
|
-
*/
|
|
194
|
-
function resetPlatformAfterBootstrapping() {
|
|
195
|
-
removeRootElement();
|
|
196
|
-
destroyPlatform();
|
|
197
|
-
/** @type {?} */
|
|
198
|
-
var version = +VERSION.major;
|
|
199
|
-
// https://github.com/angular/angular/commit/e250db4f261741b04ee4cbad4dec41a8908a12aa
|
|
200
|
-
if (version < 14) {
|
|
201
|
-
createPlatform(TestBed);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
/**
|
|
205
|
-
* @param {?} fn
|
|
206
|
-
* @return {?}
|
|
207
|
-
*/
|
|
208
|
-
function freshPlatform(fn) {
|
|
209
|
-
/** @type {?} */
|
|
210
|
-
var resolve = null;
|
|
211
|
-
/** @type {?} */
|
|
212
|
-
var reject = null;
|
|
213
|
-
/** @type {?} */
|
|
214
|
-
var whenDoneIsCalledPromise = null;
|
|
215
|
-
/** @type {?} */
|
|
216
|
-
var hasDoneArgument = fn.length === 1;
|
|
217
|
-
if (hasDoneArgument) {
|
|
218
|
-
whenDoneIsCalledPromise = new Promise((/**
|
|
219
|
-
* @param {?} _resolve
|
|
220
|
-
* @param {?} _reject
|
|
221
|
-
* @return {?}
|
|
222
|
-
*/
|
|
223
|
-
function (_resolve, _reject) {
|
|
224
|
-
resolve = _resolve;
|
|
225
|
-
reject = _reject;
|
|
226
|
-
}));
|
|
227
|
-
}
|
|
228
|
-
return (/**
|
|
229
|
-
* @return {?}
|
|
230
|
-
*/
|
|
231
|
-
function testWithAFreshPlatform() {
|
|
232
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
233
|
-
return __generator(this, function (_a) {
|
|
234
|
-
switch (_a.label) {
|
|
235
|
-
case 0:
|
|
236
|
-
_a.trys.push([0, , 6, 7]);
|
|
237
|
-
destroyPlatformBeforeBootstrappingTheNewOne();
|
|
238
|
-
if (!hasDoneArgument) return [3 /*break*/, 3];
|
|
239
|
-
return [4 /*yield*/, fn((/**
|
|
240
|
-
* @param {?=} error
|
|
241
|
-
* @return {?}
|
|
242
|
-
*/
|
|
243
|
-
function (error) {
|
|
244
|
-
if (error) {
|
|
245
|
-
(/** @type {?} */ (reject))(error);
|
|
246
|
-
}
|
|
247
|
-
else {
|
|
248
|
-
(/** @type {?} */ (resolve))();
|
|
249
|
-
}
|
|
250
|
-
}))];
|
|
251
|
-
case 1:
|
|
252
|
-
_a.sent();
|
|
253
|
-
return [4 /*yield*/, (/** @type {?} */ (whenDoneIsCalledPromise))];
|
|
254
|
-
case 2:
|
|
255
|
-
_a.sent();
|
|
256
|
-
return [3 /*break*/, 5];
|
|
257
|
-
case 3: return [4 /*yield*/, fn()];
|
|
258
|
-
case 4:
|
|
259
|
-
_a.sent();
|
|
260
|
-
_a.label = 5;
|
|
261
|
-
case 5: return [3 /*break*/, 7];
|
|
262
|
-
case 6:
|
|
263
|
-
resetPlatformAfterBootstrapping();
|
|
264
|
-
return [7 /*endfinally*/];
|
|
265
|
-
case 7: return [2 /*return*/];
|
|
266
|
-
}
|
|
267
|
-
});
|
|
268
|
-
});
|
|
269
|
-
});
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
/**
|
|
273
|
-
* @fileoverview added by tsickle
|
|
274
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
275
|
-
*/
|
|
276
|
-
/// <reference types="jest" />
|
|
277
|
-
/// <reference types="jest" />
|
|
278
|
-
/**
|
|
279
|
-
* @template T
|
|
280
|
-
* @param {?} fn
|
|
281
|
-
* @return {?}
|
|
282
|
-
*/
|
|
283
|
-
function skipConsoleLogging(fn) {
|
|
284
|
-
/** @type {?} */
|
|
285
|
-
var consoleSpies = [
|
|
286
|
-
jest.spyOn(console, 'log').mockImplementation((/**
|
|
287
|
-
* @return {?}
|
|
288
|
-
*/
|
|
289
|
-
function () { })),
|
|
290
|
-
jest.spyOn(console, 'warn').mockImplementation((/**
|
|
291
|
-
* @return {?}
|
|
292
|
-
*/
|
|
293
|
-
function () { })),
|
|
294
|
-
jest.spyOn(console, 'error').mockImplementation((/**
|
|
295
|
-
* @return {?}
|
|
296
|
-
*/
|
|
297
|
-
function () { })),
|
|
298
|
-
jest.spyOn(console, 'info').mockImplementation((/**
|
|
299
|
-
* @return {?}
|
|
300
|
-
*/
|
|
301
|
-
function () { }))
|
|
302
|
-
];
|
|
303
|
-
/**
|
|
304
|
-
* @return {?}
|
|
305
|
-
*/
|
|
306
|
-
function restoreSpies() {
|
|
307
|
-
consoleSpies.forEach((/**
|
|
308
|
-
* @param {?} spy
|
|
309
|
-
* @return {?}
|
|
310
|
-
*/
|
|
311
|
-
function (spy) { return spy.mockRestore(); }));
|
|
312
|
-
}
|
|
313
|
-
/** @type {?} */
|
|
314
|
-
var restoreSpyAsync = false;
|
|
315
|
-
try {
|
|
316
|
-
/** @type {?} */
|
|
317
|
-
var returnValue = fn();
|
|
318
|
-
if (returnValue instanceof Promise) {
|
|
319
|
-
restoreSpyAsync = true;
|
|
320
|
-
return (/** @type {?} */ (returnValue.finally((/**
|
|
321
|
-
* @return {?}
|
|
322
|
-
*/
|
|
323
|
-
function () { return restoreSpies(); }))));
|
|
324
|
-
}
|
|
325
|
-
return returnValue;
|
|
326
|
-
}
|
|
327
|
-
finally {
|
|
328
|
-
if (!restoreSpyAsync) {
|
|
329
|
-
restoreSpies();
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
/**
|
|
335
|
-
* @fileoverview added by tsickle
|
|
336
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
337
|
-
*/
|
|
338
|
-
|
|
339
|
-
/**
|
|
340
|
-
* @fileoverview added by tsickle
|
|
341
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
342
|
-
*/
|
|
343
|
-
|
|
344
|
-
export { NgxsTestBed, freshPlatform, skipConsoleLogging };
|
|
345
|
-
//# sourceMappingURL=ngxs-store-internals-testing.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ngxs-store-internals-testing.js","sources":["ng://@ngxs/store/internals/testing/helpers/ngxs-test.component.ts","ng://@ngxs/store/internals/testing/helpers/ngxs-test.module.ts","ng://@ngxs/store/internals/testing/ngxs.setup.ts","ng://@ngxs/store/internals/testing/fresh-platform.ts","ng://@ngxs/store/internals/testing/skip-console-logging.ts"],"sourcesContent":["import { AfterViewInit, Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-root',\n template: ''\n})\nexport class NgxsTestComponent implements OnInit, AfterViewInit {\n public ngOnInit(): void {}\n public ngAfterViewInit(): void {}\n}\n","import { ApplicationRef, NgModule } from '@angular/core';\nimport { BrowserModule } from '@angular/platform-browser';\n\nimport { NgxsTestComponent } from './ngxs-test.component';\n\n@NgModule({\n imports: [BrowserModule],\n declarations: [NgxsTestComponent],\n entryComponents: [NgxsTestComponent]\n})\nexport class NgxsTestModule {\n public static ngDoBootstrap(app: ApplicationRef): void {\n app.bootstrap(NgxsTestComponent);\n }\n}\n","import { ApplicationRef } from '@angular/core';\nimport { TestBed, TestBedStatic } from '@angular/core/testing';\nimport { DOCUMENT } from '@angular/common';\nimport { ɵBrowserDomAdapter as BrowserDomAdapter } from '@angular/platform-browser';\nimport {\n BrowserDynamicTestingModule,\n platformBrowserDynamicTesting\n} from '@angular/platform-browser-dynamic/testing';\nimport { NgxsModule, Store } from '@ngxs/store';\n\nimport { NgxsTestModule } from './helpers/ngxs-test.module';\nimport { NgxsOptionsTesting, NgxsTesting } from './symbol';\n\nexport class NgxsTestBed {\n public static configureTestingStates(options: NgxsOptionsTesting): NgxsTesting {\n this.resetTestBed();\n\n if (options.before) {\n options.before();\n }\n\n TestBed.configureTestingModule({\n imports: [\n NgxsTestModule,\n NgxsModule.forRoot(options.states || [], options.ngxsOptions || {}),\n ...(options.imports || [])\n ]\n }).compileComponents();\n\n NgxsTestBed.ngxsBootstrap();\n\n return {\n get store(): Store {\n return TestBed.inject(Store);\n },\n get getTestBed(): TestBedStatic {\n return TestBed;\n }\n };\n }\n\n private static ngxsBootstrap(): void {\n NgxsTestBed.createRootNode();\n NgxsTestModule.ngDoBootstrap(TestBed.inject(ApplicationRef));\n }\n\n private static resetTestBed(): void {\n TestBed.resetTestEnvironment();\n TestBed.initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting());\n }\n\n private static createRootNode(selector = 'app-root'): void {\n const document = TestBed.inject(DOCUMENT);\n const adapter = new BrowserDomAdapter();\n const root = adapter.createElement(selector);\n document.body.appendChild(root);\n }\n}\n","import { TestBed } from '@angular/core/testing';\nimport { DOCUMENT } from '@angular/common';\nimport { ɵgetDOM as getDOM } from '@angular/platform-browser';\nimport { VERSION, destroyPlatform, createPlatform } from '@angular/core';\n\nfunction createRootElement() {\n const document = TestBed.inject(DOCUMENT);\n const root = getDOM().createElement('app-root', document);\n document.body.appendChild(root);\n}\n\nfunction removeRootElement() {\n const root: Element = document.getElementsByTagName('app-root').item(0)!;\n try {\n document.body.removeChild(root);\n } catch {}\n}\n\nfunction destroyPlatformBeforeBootstrappingTheNewOne() {\n destroyPlatform();\n createRootElement();\n}\n\n// As we create our custom platform via `bootstrapModule`\n// we have to destroy it after assetions and revert\n// the previous one\nfunction resetPlatformAfterBootstrapping() {\n removeRootElement();\n destroyPlatform();\n const version = +VERSION.major;\n // https://github.com/angular/angular/commit/e250db4f261741b04ee4cbad4dec41a8908a12aa\n if (version < 14) {\n createPlatform(TestBed);\n }\n}\n\nexport function freshPlatform(fn: (done?: VoidFunction) => Promise<void>) {\n let resolve: VoidFunction | null = null;\n let reject: ((error: Error) => void) | null = null;\n let whenDoneIsCalledPromise: Promise<void> | null = null;\n\n const hasDoneArgument = fn.length === 1;\n\n if (hasDoneArgument) {\n whenDoneIsCalledPromise = new Promise<void>((_resolve, _reject) => {\n resolve = _resolve;\n reject = _reject;\n });\n }\n\n return async function testWithAFreshPlatform() {\n try {\n destroyPlatformBeforeBootstrappingTheNewOne();\n\n if (hasDoneArgument) {\n await fn((error?: Error) => {\n if (error) {\n reject!(error);\n } else {\n resolve!();\n }\n });\n await whenDoneIsCalledPromise!;\n } else {\n await fn();\n }\n } finally {\n resetPlatformAfterBootstrapping();\n }\n };\n}\n","/// <reference types=\"jest\" />\n\nexport function skipConsoleLogging<T extends (...args: any[]) => any>(fn: T): ReturnType<T> {\n const consoleSpies = [\n jest.spyOn(console, 'log').mockImplementation(() => {}),\n jest.spyOn(console, 'warn').mockImplementation(() => {}),\n jest.spyOn(console, 'error').mockImplementation(() => {}),\n jest.spyOn(console, 'info').mockImplementation(() => {})\n ];\n function restoreSpies() {\n consoleSpies.forEach(spy => spy.mockRestore());\n }\n let restoreSpyAsync = false;\n try {\n const returnValue = fn();\n if (returnValue instanceof Promise) {\n restoreSpyAsync = true;\n return returnValue.finally(() => restoreSpies()) as ReturnType<T>;\n }\n return returnValue;\n } finally {\n if (!restoreSpyAsync) {\n restoreSpies();\n }\n }\n}\n"],"names":["BrowserDomAdapter","getDOM"],"mappings":"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"}
|
|
@@ -1,217 +0,0 @@
|
|
|
1
|
-
import { Injectable, InjectionToken } from '@angular/core';
|
|
2
|
-
import { ReplaySubject } from 'rxjs';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* @fileoverview added by tsickle
|
|
6
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
7
|
-
*/
|
|
8
|
-
/**
|
|
9
|
-
* @return {?}
|
|
10
|
-
*/
|
|
11
|
-
function isAngularInTestMode() {
|
|
12
|
-
// This is safe to check for these properties in the following way since `typeof` does not
|
|
13
|
-
// throw an exception if the value does not exist in the scope.
|
|
14
|
-
// We should not try to read these values from the global scope (e.g. `ɵglobal` from the `@angular/core`).
|
|
15
|
-
// This is related to how these frameworks compile and execute modules. E.g. Jest wraps the module into
|
|
16
|
-
// its internal code where `jest` variable exists in the scope. It cannot be read from the global scope, e.g.
|
|
17
|
-
// this will return undefined `global.jest`, but `jest` will not equal undefined.
|
|
18
|
-
return (typeof __karma__ !== 'undefined' ||
|
|
19
|
-
typeof jasmine !== 'undefined' ||
|
|
20
|
-
typeof jest !== 'undefined' ||
|
|
21
|
-
typeof Mocha !== 'undefined');
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* @fileoverview added by tsickle
|
|
26
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
27
|
-
*/
|
|
28
|
-
var NgxsBootstrapper = /** @class */ (function () {
|
|
29
|
-
function NgxsBootstrapper() {
|
|
30
|
-
/**
|
|
31
|
-
* Use `ReplaySubject`, thus we can get cached value even if the stream is completed
|
|
32
|
-
*/
|
|
33
|
-
this.bootstrap$ = new ReplaySubject(1);
|
|
34
|
-
}
|
|
35
|
-
Object.defineProperty(NgxsBootstrapper.prototype, "appBootstrapped$", {
|
|
36
|
-
get: /**
|
|
37
|
-
* @return {?}
|
|
38
|
-
*/
|
|
39
|
-
function () {
|
|
40
|
-
return this.bootstrap$.asObservable();
|
|
41
|
-
},
|
|
42
|
-
enumerable: true,
|
|
43
|
-
configurable: true
|
|
44
|
-
});
|
|
45
|
-
/**
|
|
46
|
-
* This event will be emitted after attaching `ComponentRef` of the root component
|
|
47
|
-
* to the tree of views, that's a signal that application has been fully rendered
|
|
48
|
-
*/
|
|
49
|
-
/**
|
|
50
|
-
* This event will be emitted after attaching `ComponentRef` of the root component
|
|
51
|
-
* to the tree of views, that's a signal that application has been fully rendered
|
|
52
|
-
* @return {?}
|
|
53
|
-
*/
|
|
54
|
-
NgxsBootstrapper.prototype.bootstrap = /**
|
|
55
|
-
* This event will be emitted after attaching `ComponentRef` of the root component
|
|
56
|
-
* to the tree of views, that's a signal that application has been fully rendered
|
|
57
|
-
* @return {?}
|
|
58
|
-
*/
|
|
59
|
-
function () {
|
|
60
|
-
this.bootstrap$.next(true);
|
|
61
|
-
this.bootstrap$.complete();
|
|
62
|
-
};
|
|
63
|
-
NgxsBootstrapper.decorators = [
|
|
64
|
-
{ type: Injectable }
|
|
65
|
-
];
|
|
66
|
-
return NgxsBootstrapper;
|
|
67
|
-
}());
|
|
68
|
-
if (false) {
|
|
69
|
-
/**
|
|
70
|
-
* Use `ReplaySubject`, thus we can get cached value even if the stream is completed
|
|
71
|
-
* @type {?}
|
|
72
|
-
* @private
|
|
73
|
-
*/
|
|
74
|
-
NgxsBootstrapper.prototype.bootstrap$;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* @fileoverview added by tsickle
|
|
79
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
80
|
-
*/
|
|
81
|
-
/**
|
|
82
|
-
* @param {?} a
|
|
83
|
-
* @param {?} b
|
|
84
|
-
* @return {?}
|
|
85
|
-
*/
|
|
86
|
-
function defaultEqualityCheck(a, b) {
|
|
87
|
-
return a === b;
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* @param {?} equalityCheck
|
|
91
|
-
* @param {?} prev
|
|
92
|
-
* @param {?} next
|
|
93
|
-
* @return {?}
|
|
94
|
-
*/
|
|
95
|
-
function areArgumentsShallowlyEqual(equalityCheck, prev, next) {
|
|
96
|
-
if (prev === null || next === null || prev.length !== next.length) {
|
|
97
|
-
return false;
|
|
98
|
-
}
|
|
99
|
-
// Do this in a for loop (and not a `forEach` or an `every`) so we can determine equality as fast as possible.
|
|
100
|
-
/** @type {?} */
|
|
101
|
-
var length = prev.length;
|
|
102
|
-
for (var i = 0; i < length; i++) {
|
|
103
|
-
if (!equalityCheck(prev[i], next[i])) {
|
|
104
|
-
return false;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
return true;
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* Memoize a function on its last inputs only.
|
|
111
|
-
* Originally from: https://github.com/reduxjs/reselect/blob/master/src/index.js
|
|
112
|
-
*
|
|
113
|
-
* @ignore
|
|
114
|
-
* @template T
|
|
115
|
-
* @param {?} func
|
|
116
|
-
* @param {?=} equalityCheck
|
|
117
|
-
* @return {?}
|
|
118
|
-
*/
|
|
119
|
-
function memoize(func, equalityCheck) {
|
|
120
|
-
if (equalityCheck === void 0) { equalityCheck = defaultEqualityCheck; }
|
|
121
|
-
/** @type {?} */
|
|
122
|
-
var lastArgs = null;
|
|
123
|
-
/** @type {?} */
|
|
124
|
-
var lastResult = null;
|
|
125
|
-
// we reference arguments instead of spreading them for performance reasons
|
|
126
|
-
/**
|
|
127
|
-
* @return {?}
|
|
128
|
-
*/
|
|
129
|
-
function memoized() {
|
|
130
|
-
if (!areArgumentsShallowlyEqual(equalityCheck, lastArgs, arguments)) {
|
|
131
|
-
// apply arguments instead of spreading for performance.
|
|
132
|
-
lastResult = ((/** @type {?} */ (func))).apply(null, arguments);
|
|
133
|
-
}
|
|
134
|
-
lastArgs = arguments;
|
|
135
|
-
return lastResult;
|
|
136
|
-
}
|
|
137
|
-
((/** @type {?} */ (memoized))).reset = (/**
|
|
138
|
-
* @return {?}
|
|
139
|
-
*/
|
|
140
|
-
function () {
|
|
141
|
-
// The hidden (for now) ability to reset the memoization
|
|
142
|
-
lastArgs = null;
|
|
143
|
-
lastResult = null;
|
|
144
|
-
});
|
|
145
|
-
return (/** @type {?} */ (memoized));
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
/**
|
|
149
|
-
* @fileoverview added by tsickle
|
|
150
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
151
|
-
*/
|
|
152
|
-
/** @type {?} */
|
|
153
|
-
var INITIAL_STATE_TOKEN = new InjectionToken('INITIAL_STATE_TOKEN');
|
|
154
|
-
var InitialState = /** @class */ (function () {
|
|
155
|
-
function InitialState() {
|
|
156
|
-
}
|
|
157
|
-
/**
|
|
158
|
-
* @param {?} state
|
|
159
|
-
* @return {?}
|
|
160
|
-
*/
|
|
161
|
-
InitialState.set = /**
|
|
162
|
-
* @param {?} state
|
|
163
|
-
* @return {?}
|
|
164
|
-
*/
|
|
165
|
-
function (state) {
|
|
166
|
-
this.value = state;
|
|
167
|
-
};
|
|
168
|
-
/**
|
|
169
|
-
* @return {?}
|
|
170
|
-
*/
|
|
171
|
-
InitialState.pop = /**
|
|
172
|
-
* @return {?}
|
|
173
|
-
*/
|
|
174
|
-
function () {
|
|
175
|
-
/** @type {?} */
|
|
176
|
-
var state = this.value;
|
|
177
|
-
this.value = {};
|
|
178
|
-
return state;
|
|
179
|
-
};
|
|
180
|
-
InitialState.value = {};
|
|
181
|
-
return InitialState;
|
|
182
|
-
}());
|
|
183
|
-
if (false) {
|
|
184
|
-
/**
|
|
185
|
-
* @type {?}
|
|
186
|
-
* @private
|
|
187
|
-
*/
|
|
188
|
-
InitialState.value;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
/**
|
|
192
|
-
* @fileoverview added by tsickle
|
|
193
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
194
|
-
*/
|
|
195
|
-
/**
|
|
196
|
-
* @see StateContextFactory as it's referenced by this token to be accessed by plugins internally
|
|
197
|
-
* @type {?}
|
|
198
|
-
*/
|
|
199
|
-
var NGXS_STATE_CONTEXT_FACTORY = new InjectionToken('Internals.StateContextFactory');
|
|
200
|
-
/**
|
|
201
|
-
* @see StateFactory as it's referenced by this token to be accessed by plugins internally
|
|
202
|
-
* @type {?}
|
|
203
|
-
*/
|
|
204
|
-
var NGXS_STATE_FACTORY = new InjectionToken('Internals.StateFactory');
|
|
205
|
-
|
|
206
|
-
/**
|
|
207
|
-
* @fileoverview added by tsickle
|
|
208
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
209
|
-
*/
|
|
210
|
-
|
|
211
|
-
/**
|
|
212
|
-
* @fileoverview added by tsickle
|
|
213
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
214
|
-
*/
|
|
215
|
-
|
|
216
|
-
export { INITIAL_STATE_TOKEN, InitialState, NGXS_STATE_CONTEXT_FACTORY, NGXS_STATE_FACTORY, NgxsBootstrapper, isAngularInTestMode, memoize };
|
|
217
|
-
//# sourceMappingURL=ngxs-store-internals.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ngxs-store-internals.js","sources":["ng://@ngxs/store/internals/angular.ts","ng://@ngxs/store/internals/ngxs-bootstrapper.ts","ng://@ngxs/store/internals/memoize.ts","ng://@ngxs/store/internals/initial-state.ts","ng://@ngxs/store/internals/internal-tokens.ts"],"sourcesContent":["declare const __karma__: unknown;\ndeclare const jasmine: unknown;\ndeclare const jest: unknown;\ndeclare const Mocha: unknown;\n\nexport function isAngularInTestMode(): boolean {\n // This is safe to check for these properties in the following way since `typeof` does not\n // throw an exception if the value does not exist in the scope.\n // We should not try to read these values from the global scope (e.g. `ɵglobal` from the `@angular/core`).\n // This is related to how these frameworks compile and execute modules. E.g. Jest wraps the module into\n // its internal code where `jest` variable exists in the scope. It cannot be read from the global scope, e.g.\n // this will return undefined `global.jest`, but `jest` will not equal undefined.\n return (\n typeof __karma__ !== 'undefined' ||\n typeof jasmine !== 'undefined' ||\n typeof jest !== 'undefined' ||\n typeof Mocha !== 'undefined'\n );\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, ReplaySubject } from 'rxjs';\n\n@Injectable()\nexport class NgxsBootstrapper {\n /**\n * Use `ReplaySubject`, thus we can get cached value even if the stream is completed\n */\n private bootstrap$ = new ReplaySubject<boolean>(1);\n\n get appBootstrapped$(): Observable<boolean> {\n return this.bootstrap$.asObservable();\n }\n\n /**\n * This event will be emitted after attaching `ComponentRef` of the root component\n * to the tree of views, that's a signal that application has been fully rendered\n */\n bootstrap(): void {\n this.bootstrap$.next(true);\n this.bootstrap$.complete();\n }\n}\n","function defaultEqualityCheck(a: any, b: any) {\n return a === b;\n}\n\nfunction areArgumentsShallowlyEqual(\n equalityCheck: (a: any, b: any) => boolean,\n prev: IArguments | null,\n next: IArguments | null\n) {\n if (prev === null || next === null || prev.length !== next.length) {\n return false;\n }\n\n // Do this in a for loop (and not a `forEach` or an `every`) so we can determine equality as fast as possible.\n const length = prev.length;\n for (let i = 0; i < length; i++) {\n if (!equalityCheck(prev[i], next[i])) {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Memoize a function on its last inputs only.\n * Originally from: https://github.com/reduxjs/reselect/blob/master/src/index.js\n *\n * @ignore\n */\nexport function memoize<T extends (...args: any[]) => any>(\n func: T,\n equalityCheck = defaultEqualityCheck\n): T {\n let lastArgs: IArguments | null = null;\n let lastResult: any = null;\n // we reference arguments instead of spreading them for performance reasons\n function memoized() {\n if (!areArgumentsShallowlyEqual(equalityCheck, lastArgs, arguments)) {\n // apply arguments instead of spreading for performance.\n lastResult = (<Function>func).apply(null, arguments);\n }\n\n lastArgs = arguments;\n return lastResult;\n }\n (<any>memoized).reset = function() {\n // The hidden (for now) ability to reset the memoization\n lastArgs = null;\n lastResult = null;\n };\n return memoized as T;\n}\n","import { InjectionToken } from '@angular/core';\nimport { PlainObject } from './symbols';\n\nexport const INITIAL_STATE_TOKEN = new InjectionToken<any>('INITIAL_STATE_TOKEN');\n\nexport class InitialState {\n private static value: PlainObject = {};\n\n public static set(state: PlainObject) {\n this.value = state;\n }\n\n public static pop(): PlainObject {\n const state: PlainObject = this.value;\n this.value = {};\n return state;\n }\n}\n","import { InjectionToken } from '@angular/core';\n\n/**\n * @see StateContextFactory as it's referenced by this token to be accessed by plugins internally\n */\nexport const NGXS_STATE_CONTEXT_FACTORY: InjectionToken<any> = new InjectionToken(\n 'Internals.StateContextFactory'\n);\n\n/**\n * @see StateFactory as it's referenced by this token to be accessed by plugins internally\n */\nexport const NGXS_STATE_FACTORY: InjectionToken<any> = new InjectionToken(\n 'Internals.StateFactory'\n);\n"],"names":[],"mappings":";;;;;;;;;;AAKA,SAAgB,mBAAmB;;;;;;;IAOjC,QACE,OAAO,SAAS,KAAK,WAAW;QAChC,OAAO,OAAO,KAAK,WAAW;QAC9B,OAAO,IAAI,KAAK,WAAW;QAC3B,OAAO,KAAK,KAAK,WAAW,EAC5B;CACH;;;;;;AClBD;IAGA;;;;QAKU,eAAU,GAAG,IAAI,aAAa,CAAU,CAAC,CAAC,CAAC;KAcpD;IAZC,sBAAI,8CAAgB;;;;QAApB;YACE,OAAO,IAAI,CAAC,UAAU,CAAC,YAAY,EAAE,CAAC;SACvC;;;OAAA;;;;;;;;;;IAMD,oCAAS;;;;;IAAT;QACE,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC3B,IAAI,CAAC,UAAU,CAAC,QAAQ,EAAE,CAAC;KAC5B;;gBAlBF,UAAU;;IAmBX,uBAAC;CAnBD,IAmBC;;;;;;;IAdC,sCAAmD;;;;;;;;;;;;ACRrD,SAAS,oBAAoB,CAAC,CAAM,EAAE,CAAM;IAC1C,OAAO,CAAC,KAAK,CAAC,CAAC;CAChB;;;;;;;AAED,SAAS,0BAA0B,CACjC,aAA0C,EAC1C,IAAuB,EACvB,IAAuB;IAEvB,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,MAAM,EAAE;QACjE,OAAO,KAAK,CAAC;KACd;;;QAGK,MAAM,GAAG,IAAI,CAAC,MAAM;IAC1B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;QAC/B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE;YACpC,OAAO,KAAK,CAAC;SACd;KACF;IAED,OAAO,IAAI,CAAC;CACb;;;;;;;;;;;AAQD,SAAgB,OAAO,CACrB,IAAO,EACP,aAAoC;IAApC,8BAAA,EAAA,oCAAoC;;QAEhC,QAAQ,GAAsB,IAAI;;QAClC,UAAU,GAAQ,IAAI;;;;;IAE1B,SAAS,QAAQ;QACf,IAAI,CAAC,0BAA0B,CAAC,aAAa,EAAE,QAAQ,EAAE,SAAS,CAAC,EAAE;;YAEnE,UAAU,GAAG,oBAAW,IAAI,IAAE,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;SACtD;QAED,QAAQ,GAAG,SAAS,CAAC;QACrB,OAAO,UAAU,CAAC;KACnB;IACD,oBAAM,QAAQ,IAAE,KAAK;;;IAAG;;QAEtB,QAAQ,GAAG,IAAI,CAAC;QAChB,UAAU,GAAG,IAAI,CAAC;KACnB,CAAA,CAAC;IACF,0BAAO,QAAQ,GAAM;CACtB;;;;;;ACpDD;AAGA,IAAa,mBAAmB,GAAG,IAAI,cAAc,CAAM,qBAAqB,CAAC;AAEjF;IAAA;KAYC;;;;;IATe,gBAAG;;;;IAAjB,UAAkB,KAAkB;QAClC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;KACpB;;;;IAEa,gBAAG;;;IAAjB;;YACQ,KAAK,GAAgB,IAAI,CAAC,KAAK;QACrC,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;KACd;IAVc,kBAAK,GAAgB,EAAE,CAAC;IAWzC,mBAAC;CAZD,IAYC;;;;;;IAXC,mBAAuC;;;;;;;ACNzC;;;;AAKA,IAAa,0BAA0B,GAAwB,IAAI,cAAc,CAC/E,+BAA+B,CAChC;;;;;AAKD,IAAa,kBAAkB,GAAwB,IAAI,cAAc,CACvE,wBAAwB,CACzB;;;;;;;;;;;;;;"}
|