@configura/web-api 1.4.0-alpha.4 → 1.4.0

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 (57) hide show
  1. package/LICENSE +201 -201
  2. package/README.md +1 -1
  3. package/dist/CatalogueAPI.d.ts +504 -504
  4. package/dist/CatalogueAPI.js +248 -248
  5. package/dist/CfgMeasure.d.ts +32 -32
  6. package/dist/CfgMeasure.js +30 -30
  7. package/dist/CfgProduct.d.ts +217 -217
  8. package/dist/CfgProduct.js +636 -636
  9. package/dist/index.d.ts +16 -16
  10. package/dist/index.js +16 -16
  11. package/dist/material/CfgMaterialMapping.d.ts +7 -7
  12. package/dist/material/CfgMaterialMapping.js +181 -181
  13. package/dist/material/CfgMtrlApplication.d.ts +18 -18
  14. package/dist/material/CfgMtrlApplication.js +43 -43
  15. package/dist/material/CfgMtrlApplicationSource.d.ts +7 -7
  16. package/dist/material/CfgMtrlApplicationSource.js +8 -8
  17. package/dist/material/CfgMtrlSource.d.ts +19 -19
  18. package/dist/material/CfgMtrlSource.js +40 -40
  19. package/dist/material/CfgMtrlSourceWithMetaData.d.ts +7 -7
  20. package/dist/material/CfgMtrlSourceWithMetaData.js +1 -1
  21. package/dist/productConfiguration/CfgFeature.d.ts +160 -160
  22. package/dist/productConfiguration/CfgFeature.js +593 -593
  23. package/dist/productConfiguration/CfgOption.d.ts +128 -128
  24. package/dist/productConfiguration/CfgOption.js +394 -394
  25. package/dist/productConfiguration/CfgProductConfiguration.d.ts +120 -120
  26. package/dist/productConfiguration/CfgProductConfiguration.js +307 -307
  27. package/dist/productConfiguration/filters.d.ts +15 -15
  28. package/dist/productConfiguration/filters.js +67 -67
  29. package/dist/productConfiguration/productParamsGenerator.d.ts +15 -15
  30. package/dist/productConfiguration/productParamsGenerator.js +51 -51
  31. package/dist/productConfiguration/utilitiesProductConfiguration.d.ts +17 -17
  32. package/dist/productConfiguration/utilitiesProductConfiguration.js +80 -80
  33. package/dist/productLoader.d.ts +33 -33
  34. package/dist/productLoader.js +49 -49
  35. package/dist/tests/testData/collectorForTest.d.ts +73 -73
  36. package/dist/tests/testData/collectorForTest.js +195 -195
  37. package/dist/tests/testData/dummyProductForTest.d.ts +4 -4
  38. package/dist/tests/testData/dummyProductForTest.js +36 -36
  39. package/dist/tests/testData/testDataAdditionalProductInAdditionalProductInProductForTest.d.ts +32 -32
  40. package/dist/tests/testData/testDataAdditionalProductInAdditionalProductInProductForTest.js +348 -348
  41. package/dist/tests/testData/testDataCachedGetProduct.d.ts +5 -5
  42. package/dist/tests/testData/testDataCachedGetProduct.js +196 -196
  43. package/dist/tests/testData/testDataCachedPostValidate.d.ts +7 -7
  44. package/dist/tests/testData/testDataCachedPostValidate.js +183 -183
  45. package/dist/tests/testData/testDataNoAdditionalProductNoPropagateForTest.d.ts +3 -3
  46. package/dist/tests/testData/testDataNoAdditionalProductNoPropagateForTest.js +1099 -1099
  47. package/dist/tests/testData/testDataProductAggregatedPrice.d.ts +6 -6
  48. package/dist/tests/testData/testDataProductAggregatedPrice.js +198 -198
  49. package/dist/tests/testData/testDataUpcharge.d.ts +29 -29
  50. package/dist/tests/testData/testDataUpcharge.js +151 -151
  51. package/dist/utilitiesCatalogueData.d.ts +25 -25
  52. package/dist/utilitiesCatalogueData.js +64 -64
  53. package/dist/utilitiesCataloguePermission.d.ts +39 -39
  54. package/dist/utilitiesCataloguePermission.js +84 -84
  55. package/dist/utilitiesNumericValues.d.ts +24 -24
  56. package/dist/utilitiesNumericValues.js +109 -109
  57. package/package.json +3 -3
@@ -1,49 +1,49 @@
1
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
- return new (P || (P = Promise))(function (resolve, reject) {
4
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
- step((generator = generator.apply(thisArg, _arguments || [])).next());
8
- });
9
- };
10
- import { PromiseCache } from "@configura/web-utilities";
11
- import { makeProductKey, makeSelOptionsKey, } from "./utilitiesCatalogueData.js";
12
- /**
13
- * Wraps a getProduct function so that it caches for the time it lives.
14
- *
15
- * It has no cache invalidation or timeouts, so whatever ends up in the cache stays there
16
- * indefinitely. For this reason we recommend using this with caution.
17
- *
18
- * In our Example App we use it to cache the internal calls in additional products as in such a
19
- * product you tend to frequently get calls to same sub-product. Such as loading the same table leg
20
- * four times.
21
- */
22
- export function wrapWithGetProductCache(getProduct) {
23
- const cache = new PromiseCache();
24
- return (params) => __awaiter(this, void 0, void 0, function* () { return cache.get(makeProductKey(params, params.partNumber), () => getProduct(params)); });
25
- }
26
- /**
27
- * Wraps a postValidate function so that it caches for the time it lives.
28
- *
29
- * It has no cache invalidation or timeouts, so whatever ends up in the cache stays there
30
- * indefinitely. We recommend you do not use this unless you are really, really sure what you are
31
- * doing.
32
- *
33
- * The SDK uses it for additional products to avoid validating for example the same table legs four
34
- * times at the same time. There we make sure the this cache only stays in scope for one user
35
- * interaction. No longer than the actions caused by a user clicking an option.
36
- */
37
- export function wrapWithPostValidateCache(postValidate) {
38
- const cache = new PromiseCache();
39
- return (params, body) => __awaiter(this, void 0, void 0, function* () {
40
- return cache.get(`${makeProductKey(params, params.partNumber)}-${makeSelOptionsKey(body.selOptions)}`, () => postValidate(params, body));
41
- });
42
- }
43
- /** Does both wrapWithGetProductCache and wrapWithPostValidateCache. */
44
- export function wrapWithCache(loader) {
45
- return {
46
- getProduct: wrapWithGetProductCache(loader.getProduct.bind(loader)),
47
- postValidate: wrapWithPostValidateCache(loader.postValidate.bind(loader)),
48
- };
49
- }
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { PromiseCache } from "@configura/web-utilities";
11
+ import { makeProductKey, makeSelOptionsKey, } from "./utilitiesCatalogueData.js";
12
+ /**
13
+ * Wraps a getProduct function so that it caches for the time it lives.
14
+ *
15
+ * It has no cache invalidation or timeouts, so whatever ends up in the cache stays there
16
+ * indefinitely. For this reason we recommend using this with caution.
17
+ *
18
+ * In our Example App we use it to cache the internal calls in additional products as in such a
19
+ * product you tend to frequently get calls to same sub-product. Such as loading the same table leg
20
+ * four times.
21
+ */
22
+ export function wrapWithGetProductCache(getProduct) {
23
+ const cache = new PromiseCache();
24
+ return (params) => __awaiter(this, void 0, void 0, function* () { return cache.get(makeProductKey(params, params.partNumber), () => getProduct(params)); });
25
+ }
26
+ /**
27
+ * Wraps a postValidate function so that it caches for the time it lives.
28
+ *
29
+ * It has no cache invalidation or timeouts, so whatever ends up in the cache stays there
30
+ * indefinitely. We recommend you do not use this unless you are really, really sure what you are
31
+ * doing.
32
+ *
33
+ * The SDK uses it for additional products to avoid validating for example the same table legs four
34
+ * times at the same time. There we make sure the this cache only stays in scope for one user
35
+ * interaction. No longer than the actions caused by a user clicking an option.
36
+ */
37
+ export function wrapWithPostValidateCache(postValidate) {
38
+ const cache = new PromiseCache();
39
+ return (params, body) => __awaiter(this, void 0, void 0, function* () {
40
+ return cache.get(`${makeProductKey(params, params.partNumber)}-${makeSelOptionsKey(body.selOptions)}`, () => postValidate(params, body));
41
+ });
42
+ }
43
+ /** Does both wrapWithGetProductCache and wrapWithPostValidateCache. */
44
+ export function wrapWithCache(loader) {
45
+ return {
46
+ getProduct: wrapWithGetProductCache(loader.getProduct.bind(loader)),
47
+ postValidate: wrapWithPostValidateCache(loader.postValidate.bind(loader)),
48
+ };
49
+ }
@@ -1,74 +1,74 @@
1
- import { CfgProduct } from "../../CfgProduct";
2
- import { CfgFeature } from "../../productConfiguration/CfgFeature";
3
- import { CfgOption } from "../../productConfiguration/CfgOption";
4
- import { CfgProductConfiguration } from "../../productConfiguration/CfgProductConfiguration";
5
- declare type SnapShotForWrapper = {
6
- path: string;
7
- selected: boolean;
8
- };
9
- declare type SnapShotForWrapperWithoutRef = SnapShotForWrapper & {
10
- productConfiguration: SnapShotForConfiguration;
11
- additionalProducts: SnapShotForWrapper[];
12
- };
13
- declare type SnapShotForWrapperWithRef = SnapShotForWrapper & {
14
- ref: CfgProduct;
15
- productConfiguration: SnapShotForConfigurationWithRef;
16
- additionalProducts: SnapShotForWrapperWithRef[];
17
- };
18
- declare type SnapShotForConfiguration = {
19
- path: string;
20
- };
21
- declare type SnapShotForConfigurationWithoutRef = SnapShotForConfiguration & {
22
- features: SnapShotForFeature[];
23
- };
24
- declare type SnapShotForConfigurationWithRef = SnapShotForConfiguration & {
25
- ref: CfgProductConfiguration;
26
- features: SnapShotForFeatureWithRef[];
27
- };
28
- declare type SnapShotForFeature = {
29
- path: string;
30
- };
31
- declare type SnapShotForFeatureWithoutRef = SnapShotForFeature & {
32
- options: SnapShotForOption[];
33
- };
34
- declare type SnapShotForFeatureWithRef = SnapShotForFeature & {
35
- ref: CfgFeature;
36
- options: SnapShotForOptionWithRef[];
37
- };
38
- declare type SnapShotForOption = {
39
- path: string;
40
- selected: boolean;
41
- };
42
- declare type SnapShotForOptionWithoutRef = SnapShotForOption & {
43
- features: SnapShotForFeature[];
44
- };
45
- declare type SnapShotForOptionWithRef = SnapShotForOption & {
46
- ref: CfgOption;
47
- features: SnapShotForFeatureWithRef[];
48
- };
49
- export declare class Collector {
50
- product: CfgProduct;
51
- static stripRefsForWrapper: (w: SnapShotForWrapperWithRef) => SnapShotForWrapperWithoutRef;
52
- static stripRefsForConf: (c: SnapShotForConfigurationWithRef) => SnapShotForConfigurationWithoutRef;
53
- static stripRefsForFeature: (f: SnapShotForFeatureWithRef) => SnapShotForFeatureWithoutRef;
54
- static stripRefsForOption: (o: SnapShotForOptionWithRef) => SnapShotForOptionWithoutRef;
55
- constructor(product: CfgProduct);
56
- notifications: string[];
57
- pushNotification: (message: string) => void;
58
- takeSnapshot: () => SnapShotForWrapperWithRef;
59
- compareSnapshot: (o: SnapShotForWrapperWithRef, n: SnapShotForWrapperWithRef) => string[];
60
- takeRefSnapshotForWrapper: (path: string, product: CfgProduct) => SnapShotForWrapperWithRef;
61
- compareSnapshotForWrapper: (result: string[], o: SnapShotForWrapperWithRef, n: SnapShotForWrapperWithRef) => void;
62
- takeRefSnapshopForConf: (path: string, productConfiguration: CfgProductConfiguration) => SnapShotForConfigurationWithRef;
63
- compareSnapshopForConf: (result: string[], o: SnapShotForConfigurationWithRef, n: SnapShotForConfigurationWithRef) => void;
64
- takeRefSnapshotForFeature: (path: string, feature: CfgFeature) => SnapShotForFeatureWithRef;
65
- compareSnapshopForFeature: (result: string[], o: SnapShotForFeatureWithRef, n: SnapShotForFeatureWithRef) => void;
66
- takeRefSnapshotForOption: (path: string, option: CfgOption) => SnapShotForOptionWithRef;
67
- compareSnapshopForOption: (result: string[], o: SnapShotForOptionWithRef, n: SnapShotForOptionWithRef) => void;
68
- addListenersForProduct: (path: string, product: CfgProduct) => void;
69
- addListenersForProductConfiguration: (path: string, productConfiguration: CfgProductConfiguration) => void;
70
- addListenersForFeature: (path: string, feature: CfgFeature) => void;
71
- addListenersForOption: (path: string, option: CfgOption) => void;
72
- }
73
- export {};
1
+ import { CfgProduct } from "../../CfgProduct";
2
+ import { CfgFeature } from "../../productConfiguration/CfgFeature";
3
+ import { CfgOption } from "../../productConfiguration/CfgOption";
4
+ import { CfgProductConfiguration } from "../../productConfiguration/CfgProductConfiguration";
5
+ declare type SnapShotForWrapper = {
6
+ path: string;
7
+ selected: boolean;
8
+ };
9
+ declare type SnapShotForWrapperWithoutRef = SnapShotForWrapper & {
10
+ productConfiguration: SnapShotForConfiguration;
11
+ additionalProducts: SnapShotForWrapper[];
12
+ };
13
+ declare type SnapShotForWrapperWithRef = SnapShotForWrapper & {
14
+ ref: CfgProduct;
15
+ productConfiguration: SnapShotForConfigurationWithRef;
16
+ additionalProducts: SnapShotForWrapperWithRef[];
17
+ };
18
+ declare type SnapShotForConfiguration = {
19
+ path: string;
20
+ };
21
+ declare type SnapShotForConfigurationWithoutRef = SnapShotForConfiguration & {
22
+ features: SnapShotForFeature[];
23
+ };
24
+ declare type SnapShotForConfigurationWithRef = SnapShotForConfiguration & {
25
+ ref: CfgProductConfiguration;
26
+ features: SnapShotForFeatureWithRef[];
27
+ };
28
+ declare type SnapShotForFeature = {
29
+ path: string;
30
+ };
31
+ declare type SnapShotForFeatureWithoutRef = SnapShotForFeature & {
32
+ options: SnapShotForOption[];
33
+ };
34
+ declare type SnapShotForFeatureWithRef = SnapShotForFeature & {
35
+ ref: CfgFeature;
36
+ options: SnapShotForOptionWithRef[];
37
+ };
38
+ declare type SnapShotForOption = {
39
+ path: string;
40
+ selected: boolean;
41
+ };
42
+ declare type SnapShotForOptionWithoutRef = SnapShotForOption & {
43
+ features: SnapShotForFeature[];
44
+ };
45
+ declare type SnapShotForOptionWithRef = SnapShotForOption & {
46
+ ref: CfgOption;
47
+ features: SnapShotForFeatureWithRef[];
48
+ };
49
+ export declare class Collector {
50
+ product: CfgProduct;
51
+ static stripRefsForWrapper: (w: SnapShotForWrapperWithRef) => SnapShotForWrapperWithoutRef;
52
+ static stripRefsForConf: (c: SnapShotForConfigurationWithRef) => SnapShotForConfigurationWithoutRef;
53
+ static stripRefsForFeature: (f: SnapShotForFeatureWithRef) => SnapShotForFeatureWithoutRef;
54
+ static stripRefsForOption: (o: SnapShotForOptionWithRef) => SnapShotForOptionWithoutRef;
55
+ constructor(product: CfgProduct);
56
+ notifications: string[];
57
+ pushNotification: (message: string) => void;
58
+ takeSnapshot: () => SnapShotForWrapperWithRef;
59
+ compareSnapshot: (o: SnapShotForWrapperWithRef, n: SnapShotForWrapperWithRef) => string[];
60
+ takeRefSnapshotForWrapper: (path: string, product: CfgProduct) => SnapShotForWrapperWithRef;
61
+ compareSnapshotForWrapper: (result: string[], o: SnapShotForWrapperWithRef, n: SnapShotForWrapperWithRef) => void;
62
+ takeRefSnapshopForConf: (path: string, productConfiguration: CfgProductConfiguration) => SnapShotForConfigurationWithRef;
63
+ compareSnapshopForConf: (result: string[], o: SnapShotForConfigurationWithRef, n: SnapShotForConfigurationWithRef) => void;
64
+ takeRefSnapshotForFeature: (path: string, feature: CfgFeature) => SnapShotForFeatureWithRef;
65
+ compareSnapshopForFeature: (result: string[], o: SnapShotForFeatureWithRef, n: SnapShotForFeatureWithRef) => void;
66
+ takeRefSnapshotForOption: (path: string, option: CfgOption) => SnapShotForOptionWithRef;
67
+ compareSnapshopForOption: (result: string[], o: SnapShotForOptionWithRef, n: SnapShotForOptionWithRef) => void;
68
+ addListenersForProduct: (path: string, product: CfgProduct) => void;
69
+ addListenersForProductConfiguration: (path: string, productConfiguration: CfgProductConfiguration) => void;
70
+ addListenersForFeature: (path: string, feature: CfgFeature) => void;
71
+ addListenersForOption: (path: string, option: CfgOption) => void;
72
+ }
73
+ export {};
74
74
  //# sourceMappingURL=collectorForTest.d.ts.map
@@ -1,195 +1,195 @@
1
- export class Collector {
2
- constructor(product) {
3
- this.product = product;
4
- this.notifications = [];
5
- this.pushNotification = (message) => {
6
- this.notifications.push(message);
7
- };
8
- this.takeSnapshot = () => {
9
- return this.takeRefSnapshotForWrapper("", this.product);
10
- };
11
- this.compareSnapshot = (o, n) => {
12
- const result = [];
13
- this.compareSnapshotForWrapper(result, o, n);
14
- return result;
15
- };
16
- this.takeRefSnapshotForWrapper = (path, product) => {
17
- path += `prdwrap ${product.refKey || product.partNumber} `;
18
- return {
19
- path,
20
- selected: product.selected,
21
- ref: product,
22
- productConfiguration: this.takeRefSnapshopForConf(path, product.configuration),
23
- additionalProducts: product.additionalProducts.map((additionalProduct) => this.takeRefSnapshotForWrapper(path, additionalProduct)),
24
- };
25
- };
26
- this.compareSnapshotForWrapper = (result, o, n) => {
27
- if (o.path !== n.path) {
28
- result.push(`No longer same path ${o.path}, ${n.path}`);
29
- return;
30
- }
31
- if (o.ref !== n.ref) {
32
- result.push(`New ref ${n.path}${o.ref.optional
33
- ? `Was ${o.selected ? "selected " : "deselected"} Now ${n.selected ? "selected " : "deselected"}`
34
- : ""} `);
35
- }
36
- this.compareSnapshopForConf(result, o.productConfiguration, n.productConfiguration);
37
- const oAdditionals = o.additionalProducts.slice();
38
- const nAdditionals = n.additionalProducts.slice();
39
- for (const oAdditional of oAdditionals) {
40
- const i = nAdditionals.findIndex((nAdditional) => oAdditional.path === nAdditional.path);
41
- if (i === -1) {
42
- result.push(`Removed additional product ${oAdditional.path}`);
43
- }
44
- else {
45
- this.compareSnapshotForWrapper(result, oAdditional, nAdditionals[i]);
46
- nAdditionals.splice(i, 1);
47
- }
48
- }
49
- for (const nAdditional of nAdditionals) {
50
- result.push(`Added additional product ${nAdditional.path}`);
51
- }
52
- };
53
- this.takeRefSnapshopForConf = (path, productConfiguration) => {
54
- path += `cfg `;
55
- return {
56
- path,
57
- ref: productConfiguration,
58
- features: productConfiguration.features.map((feature) => this.takeRefSnapshotForFeature(path, feature)),
59
- };
60
- };
61
- this.compareSnapshopForConf = (result, o, n) => {
62
- if (o.ref !== n.ref) {
63
- result.push(`New ref ${n.path}`);
64
- }
65
- const oFeatures = o.features;
66
- const nFeatures = n.features;
67
- if (oFeatures.length !== nFeatures.length) {
68
- result.push(`No longer same options for ${o.path}`);
69
- return;
70
- }
71
- for (let i = 0; i < oFeatures.length; i++) {
72
- this.compareSnapshopForFeature(result, oFeatures[i], nFeatures[i]);
73
- }
74
- };
75
- this.takeRefSnapshotForFeature = (path, feature) => {
76
- path += `feature ${feature.code} `;
77
- return {
78
- path,
79
- ref: feature,
80
- options: feature.options.map((option) => this.takeRefSnapshotForOption(path, option)),
81
- };
82
- };
83
- this.compareSnapshopForFeature = (result, o, n) => {
84
- if (o.path !== n.path) {
85
- result.push(`No longer same path ${o.path}, ${n.path}`);
86
- return;
87
- }
88
- if (o.ref !== n.ref) {
89
- result.push(`New ref ${n.path}`);
90
- }
91
- const oOptions = o.options;
92
- const nOptions = n.options;
93
- if (oOptions.length !== nOptions.length) {
94
- result.push(`No longer same features for ${o.path}`);
95
- return;
96
- }
97
- for (let i = 0; i < oOptions.length; i++) {
98
- this.compareSnapshopForOption(result, oOptions[i], nOptions[i]);
99
- }
100
- };
101
- this.takeRefSnapshotForOption = (path, option) => {
102
- path += `option ${option.code} `;
103
- return {
104
- path,
105
- ref: option,
106
- selected: option.selected,
107
- features: option.features.map((feature) => this.takeRefSnapshotForFeature(path, feature)),
108
- };
109
- };
110
- this.compareSnapshopForOption = (result, o, n) => {
111
- if (o.path !== n.path) {
112
- result.push(`No longer same path ${o.path}, ${n.path}`);
113
- return;
114
- }
115
- if (o.ref !== n.ref) {
116
- result.push(`New ref ${n.path} Was ${o.selected ? "selected" : "deselected"} Now ${n.selected ? "selected" : "deselected"}`);
117
- }
118
- const oFeatures = o.features;
119
- const nFeatures = n.features;
120
- if (oFeatures.length !== nFeatures.length) {
121
- result.push(`No longer same options for ${o.path}`);
122
- return;
123
- }
124
- for (let i = 0; i < oFeatures.length; i++) {
125
- this.compareSnapshopForFeature(result, oFeatures[i], nFeatures[i]);
126
- }
127
- };
128
- this.addListenersForProduct = (path, product) => {
129
- path += `prdwrap ${product.refKey || product.partNumber} `;
130
- product.listenForChange(() => {
131
- this.pushNotification(`${path}${product.optional ? `${product.selected ? "selected" : "deselected"}` : ""}`);
132
- });
133
- this.addListenersForProductConfiguration(path, product.configuration);
134
- for (const additionalProduct of product.additionalProducts) {
135
- this.addListenersForProduct(path, additionalProduct);
136
- }
137
- };
138
- this.addListenersForProductConfiguration = (path, productConfiguration) => {
139
- path += `cfg `;
140
- productConfiguration.listenForChange(() => {
141
- this.pushNotification(path);
142
- });
143
- for (const feature of productConfiguration.features) {
144
- this.addListenersForFeature(path, feature);
145
- }
146
- };
147
- this.addListenersForFeature = (path, feature) => {
148
- path += `feature ${feature.code} `;
149
- feature.listenForChange(() => {
150
- this.pushNotification(path);
151
- });
152
- for (const option of feature.options) {
153
- this.addListenersForOption(path, option);
154
- }
155
- };
156
- this.addListenersForOption = (path, option) => {
157
- path += `option ${option.code} `;
158
- option.listenForChange(() => {
159
- this.pushNotification(`${path}${option.selected ? "selected" : "deselected"}`);
160
- });
161
- for (const feature of option.features) {
162
- this.addListenersForFeature(path, feature);
163
- }
164
- };
165
- let path = "";
166
- this.addListenersForProduct(path, product);
167
- }
168
- }
169
- Collector.stripRefsForWrapper = (w) => {
170
- return {
171
- path: w.path,
172
- selected: w.selected,
173
- productConfiguration: Collector.stripRefsForConf(w.productConfiguration),
174
- additionalProducts: w.additionalProducts.map(Collector.stripRefsForWrapper),
175
- };
176
- };
177
- Collector.stripRefsForConf = (c) => {
178
- return {
179
- path: c.path,
180
- features: c.features.map(Collector.stripRefsForFeature),
181
- };
182
- };
183
- Collector.stripRefsForFeature = (f) => {
184
- return {
185
- path: f.path,
186
- options: f.options.map(Collector.stripRefsForOption),
187
- };
188
- };
189
- Collector.stripRefsForOption = (o) => {
190
- return {
191
- path: o.path,
192
- selected: o.selected,
193
- features: o.features.map(Collector.stripRefsForFeature),
194
- };
195
- };
1
+ export class Collector {
2
+ constructor(product) {
3
+ this.product = product;
4
+ this.notifications = [];
5
+ this.pushNotification = (message) => {
6
+ this.notifications.push(message);
7
+ };
8
+ this.takeSnapshot = () => {
9
+ return this.takeRefSnapshotForWrapper("", this.product);
10
+ };
11
+ this.compareSnapshot = (o, n) => {
12
+ const result = [];
13
+ this.compareSnapshotForWrapper(result, o, n);
14
+ return result;
15
+ };
16
+ this.takeRefSnapshotForWrapper = (path, product) => {
17
+ path += `prdwrap ${product.refKey || product.partNumber} `;
18
+ return {
19
+ path,
20
+ selected: product.selected,
21
+ ref: product,
22
+ productConfiguration: this.takeRefSnapshopForConf(path, product.configuration),
23
+ additionalProducts: product.additionalProducts.map((additionalProduct) => this.takeRefSnapshotForWrapper(path, additionalProduct)),
24
+ };
25
+ };
26
+ this.compareSnapshotForWrapper = (result, o, n) => {
27
+ if (o.path !== n.path) {
28
+ result.push(`No longer same path ${o.path}, ${n.path}`);
29
+ return;
30
+ }
31
+ if (o.ref !== n.ref) {
32
+ result.push(`New ref ${n.path}${o.ref.optional
33
+ ? `Was ${o.selected ? "selected " : "deselected"} Now ${n.selected ? "selected " : "deselected"}`
34
+ : ""} `);
35
+ }
36
+ this.compareSnapshopForConf(result, o.productConfiguration, n.productConfiguration);
37
+ const oAdditionals = o.additionalProducts.slice();
38
+ const nAdditionals = n.additionalProducts.slice();
39
+ for (const oAdditional of oAdditionals) {
40
+ const i = nAdditionals.findIndex((nAdditional) => oAdditional.path === nAdditional.path);
41
+ if (i === -1) {
42
+ result.push(`Removed additional product ${oAdditional.path}`);
43
+ }
44
+ else {
45
+ this.compareSnapshotForWrapper(result, oAdditional, nAdditionals[i]);
46
+ nAdditionals.splice(i, 1);
47
+ }
48
+ }
49
+ for (const nAdditional of nAdditionals) {
50
+ result.push(`Added additional product ${nAdditional.path}`);
51
+ }
52
+ };
53
+ this.takeRefSnapshopForConf = (path, productConfiguration) => {
54
+ path += `cfg `;
55
+ return {
56
+ path,
57
+ ref: productConfiguration,
58
+ features: productConfiguration.features.map((feature) => this.takeRefSnapshotForFeature(path, feature)),
59
+ };
60
+ };
61
+ this.compareSnapshopForConf = (result, o, n) => {
62
+ if (o.ref !== n.ref) {
63
+ result.push(`New ref ${n.path}`);
64
+ }
65
+ const oFeatures = o.features;
66
+ const nFeatures = n.features;
67
+ if (oFeatures.length !== nFeatures.length) {
68
+ result.push(`No longer same options for ${o.path}`);
69
+ return;
70
+ }
71
+ for (let i = 0; i < oFeatures.length; i++) {
72
+ this.compareSnapshopForFeature(result, oFeatures[i], nFeatures[i]);
73
+ }
74
+ };
75
+ this.takeRefSnapshotForFeature = (path, feature) => {
76
+ path += `feature ${feature.code} `;
77
+ return {
78
+ path,
79
+ ref: feature,
80
+ options: feature.options.map((option) => this.takeRefSnapshotForOption(path, option)),
81
+ };
82
+ };
83
+ this.compareSnapshopForFeature = (result, o, n) => {
84
+ if (o.path !== n.path) {
85
+ result.push(`No longer same path ${o.path}, ${n.path}`);
86
+ return;
87
+ }
88
+ if (o.ref !== n.ref) {
89
+ result.push(`New ref ${n.path}`);
90
+ }
91
+ const oOptions = o.options;
92
+ const nOptions = n.options;
93
+ if (oOptions.length !== nOptions.length) {
94
+ result.push(`No longer same features for ${o.path}`);
95
+ return;
96
+ }
97
+ for (let i = 0; i < oOptions.length; i++) {
98
+ this.compareSnapshopForOption(result, oOptions[i], nOptions[i]);
99
+ }
100
+ };
101
+ this.takeRefSnapshotForOption = (path, option) => {
102
+ path += `option ${option.code} `;
103
+ return {
104
+ path,
105
+ ref: option,
106
+ selected: option.selected,
107
+ features: option.features.map((feature) => this.takeRefSnapshotForFeature(path, feature)),
108
+ };
109
+ };
110
+ this.compareSnapshopForOption = (result, o, n) => {
111
+ if (o.path !== n.path) {
112
+ result.push(`No longer same path ${o.path}, ${n.path}`);
113
+ return;
114
+ }
115
+ if (o.ref !== n.ref) {
116
+ result.push(`New ref ${n.path} Was ${o.selected ? "selected" : "deselected"} Now ${n.selected ? "selected" : "deselected"}`);
117
+ }
118
+ const oFeatures = o.features;
119
+ const nFeatures = n.features;
120
+ if (oFeatures.length !== nFeatures.length) {
121
+ result.push(`No longer same options for ${o.path}`);
122
+ return;
123
+ }
124
+ for (let i = 0; i < oFeatures.length; i++) {
125
+ this.compareSnapshopForFeature(result, oFeatures[i], nFeatures[i]);
126
+ }
127
+ };
128
+ this.addListenersForProduct = (path, product) => {
129
+ path += `prdwrap ${product.refKey || product.partNumber} `;
130
+ product.listenForChange(() => {
131
+ this.pushNotification(`${path}${product.optional ? `${product.selected ? "selected" : "deselected"}` : ""}`);
132
+ });
133
+ this.addListenersForProductConfiguration(path, product.configuration);
134
+ for (const additionalProduct of product.additionalProducts) {
135
+ this.addListenersForProduct(path, additionalProduct);
136
+ }
137
+ };
138
+ this.addListenersForProductConfiguration = (path, productConfiguration) => {
139
+ path += `cfg `;
140
+ productConfiguration.listenForChange(() => {
141
+ this.pushNotification(path);
142
+ });
143
+ for (const feature of productConfiguration.features) {
144
+ this.addListenersForFeature(path, feature);
145
+ }
146
+ };
147
+ this.addListenersForFeature = (path, feature) => {
148
+ path += `feature ${feature.code} `;
149
+ feature.listenForChange(() => {
150
+ this.pushNotification(path);
151
+ });
152
+ for (const option of feature.options) {
153
+ this.addListenersForOption(path, option);
154
+ }
155
+ };
156
+ this.addListenersForOption = (path, option) => {
157
+ path += `option ${option.code} `;
158
+ option.listenForChange(() => {
159
+ this.pushNotification(`${path}${option.selected ? "selected" : "deselected"}`);
160
+ });
161
+ for (const feature of option.features) {
162
+ this.addListenersForFeature(path, feature);
163
+ }
164
+ };
165
+ let path = "";
166
+ this.addListenersForProduct(path, product);
167
+ }
168
+ }
169
+ Collector.stripRefsForWrapper = (w) => {
170
+ return {
171
+ path: w.path,
172
+ selected: w.selected,
173
+ productConfiguration: Collector.stripRefsForConf(w.productConfiguration),
174
+ additionalProducts: w.additionalProducts.map(Collector.stripRefsForWrapper),
175
+ };
176
+ };
177
+ Collector.stripRefsForConf = (c) => {
178
+ return {
179
+ path: c.path,
180
+ features: c.features.map(Collector.stripRefsForFeature),
181
+ };
182
+ };
183
+ Collector.stripRefsForFeature = (f) => {
184
+ return {
185
+ path: f.path,
186
+ options: f.options.map(Collector.stripRefsForOption),
187
+ };
188
+ };
189
+ Collector.stripRefsForOption = (o) => {
190
+ return {
191
+ path: o.path,
192
+ selected: o.selected,
193
+ features: o.features.map(Collector.stripRefsForFeature),
194
+ };
195
+ };
@@ -1,5 +1,5 @@
1
- import { CatalogueParams } from "../../CatalogueAPI";
2
- import { CfgProduct } from "../../CfgProduct";
3
- export declare const dummyCatId: CatalogueParams;
4
- export declare const getDummyCfgProduct: () => Promise<CfgProduct>;
1
+ import { CatalogueParams } from "../../CatalogueAPI";
2
+ import { CfgProduct } from "../../CfgProduct";
3
+ export declare const dummyCatId: CatalogueParams;
4
+ export declare const getDummyCfgProduct: () => Promise<CfgProduct>;
5
5
  //# sourceMappingURL=dummyProductForTest.d.ts.map