@combeenation/3d-viewer 6.0.0 → 6.1.0-beta2

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 (189) hide show
  1. package/README.md +111 -111
  2. package/dist/lib-cjs/api/classes/animationInterface.d.ts +8 -8
  3. package/dist/lib-cjs/api/classes/animationInterface.js +2 -2
  4. package/dist/lib-cjs/api/classes/dottedPath.d.ts +79 -79
  5. package/dist/lib-cjs/api/classes/dottedPath.js +166 -166
  6. package/dist/lib-cjs/api/classes/element.d.ts +149 -149
  7. package/dist/lib-cjs/api/classes/element.js +669 -669
  8. package/dist/lib-cjs/api/classes/event.d.ts +342 -326
  9. package/dist/lib-cjs/api/classes/event.js +365 -349
  10. package/dist/lib-cjs/api/classes/event.js.map +1 -1
  11. package/dist/lib-cjs/api/classes/eventBroadcaster.d.ts +26 -26
  12. package/dist/lib-cjs/api/classes/eventBroadcaster.js +49 -49
  13. package/dist/lib-cjs/api/classes/parameter.d.ts +339 -339
  14. package/dist/lib-cjs/api/classes/parameter.js +464 -464
  15. package/dist/lib-cjs/api/classes/parameterObservable.d.ts +36 -36
  16. package/dist/lib-cjs/api/classes/parameterObservable.js +97 -97
  17. package/dist/lib-cjs/api/classes/parameterizable.d.ts +15 -15
  18. package/dist/lib-cjs/api/classes/parameterizable.js +102 -102
  19. package/dist/lib-cjs/api/classes/placementAnimation.d.ts +45 -45
  20. package/dist/lib-cjs/api/classes/placementAnimation.js +176 -176
  21. package/dist/lib-cjs/api/classes/variant.d.ts +234 -234
  22. package/dist/lib-cjs/api/classes/variant.js +836 -836
  23. package/dist/lib-cjs/api/classes/variantInstance.d.ts +44 -44
  24. package/dist/lib-cjs/api/classes/variantInstance.js +105 -105
  25. package/dist/lib-cjs/api/classes/variantParameterizable.d.ts +17 -17
  26. package/dist/lib-cjs/api/classes/variantParameterizable.js +88 -88
  27. package/dist/lib-cjs/api/classes/viewer.d.ts +187 -189
  28. package/dist/lib-cjs/api/classes/viewer.js +594 -594
  29. package/dist/lib-cjs/api/classes/viewer.js.map +1 -1
  30. package/dist/lib-cjs/api/classes/viewerLight.d.ts +66 -66
  31. package/dist/lib-cjs/api/classes/viewerLight.js +348 -348
  32. package/dist/lib-cjs/api/internal/lensRendering.d.ts +8 -8
  33. package/dist/lib-cjs/api/internal/lensRendering.js +11 -11
  34. package/dist/lib-cjs/api/internal/sceneSetup.d.ts +13 -13
  35. package/dist/lib-cjs/api/internal/sceneSetup.js +226 -226
  36. package/dist/lib-cjs/api/manager/animationManager.d.ts +30 -30
  37. package/dist/lib-cjs/api/manager/animationManager.js +126 -126
  38. package/dist/lib-cjs/api/manager/gltfExportManager.d.ts +78 -65
  39. package/dist/lib-cjs/api/manager/gltfExportManager.js +241 -197
  40. package/dist/lib-cjs/api/manager/gltfExportManager.js.map +1 -1
  41. package/dist/lib-cjs/api/manager/sceneManager.d.ts +33 -31
  42. package/dist/lib-cjs/api/manager/sceneManager.js +130 -127
  43. package/dist/lib-cjs/api/manager/sceneManager.js.map +1 -1
  44. package/dist/lib-cjs/api/manager/textureLoadManager.d.ts +22 -0
  45. package/dist/lib-cjs/api/manager/textureLoadManager.js +98 -0
  46. package/dist/lib-cjs/api/manager/textureLoadManager.js.map +1 -0
  47. package/dist/lib-cjs/api/manager/variantInstanceManager.d.ts +92 -92
  48. package/dist/lib-cjs/api/manager/variantInstanceManager.js +260 -260
  49. package/dist/lib-cjs/api/store/specStorage.d.ts +24 -24
  50. package/dist/lib-cjs/api/store/specStorage.js +50 -50
  51. package/dist/lib-cjs/api/util/babylonHelper.d.ts +183 -174
  52. package/dist/lib-cjs/api/util/babylonHelper.js +596 -585
  53. package/dist/lib-cjs/api/util/babylonHelper.js.map +1 -1
  54. package/dist/lib-cjs/api/util/globalTypes.d.ts +383 -370
  55. package/dist/lib-cjs/api/util/globalTypes.js +1 -1
  56. package/dist/lib-cjs/api/util/resourceHelper.d.ts +58 -58
  57. package/dist/lib-cjs/api/util/resourceHelper.js +203 -203
  58. package/dist/lib-cjs/api/util/sceneLoaderHelper.d.ts +42 -35
  59. package/dist/lib-cjs/api/util/sceneLoaderHelper.js +139 -139
  60. package/dist/lib-cjs/api/util/sceneLoaderHelper.js.map +1 -1
  61. package/dist/lib-cjs/api/util/stringHelper.d.ts +9 -9
  62. package/dist/lib-cjs/api/util/stringHelper.js +25 -25
  63. package/dist/lib-cjs/api/util/structureHelper.d.ts +9 -9
  64. package/dist/lib-cjs/api/util/structureHelper.js +48 -48
  65. package/dist/lib-cjs/buildinfo.json +3 -3
  66. package/dist/lib-cjs/commonjs.tsconfig.tsbuildinfo +1 -1
  67. package/dist/lib-cjs/index.d.ts +51 -51
  68. package/dist/lib-cjs/index.js +110 -110
  69. package/dist/webpack-stats.json +0 -0
  70. package/package.json +79 -79
  71. package/src/api/classes/animationInterface.ts +10 -10
  72. package/src/api/classes/dottedPath.ts +181 -181
  73. package/src/api/classes/element.ts +717 -717
  74. package/src/api/classes/event.ts +385 -367
  75. package/src/api/classes/eventBroadcaster.ts +52 -52
  76. package/src/api/classes/parameter.ts +497 -497
  77. package/src/api/classes/parameterObservable.ts +100 -100
  78. package/src/api/classes/parameterizable.ts +87 -87
  79. package/src/api/classes/placementAnimation.ts +162 -162
  80. package/src/api/classes/variant.ts +904 -904
  81. package/src/api/classes/variantInstance.ts +97 -97
  82. package/src/api/classes/variantParameterizable.ts +85 -85
  83. package/src/api/classes/viewer.ts +672 -670
  84. package/src/api/classes/viewerLight.ts +339 -339
  85. package/src/api/internal/debugViewer.ts +90 -90
  86. package/src/api/internal/lensRendering.ts +9 -9
  87. package/src/api/internal/sceneSetup.ts +205 -205
  88. package/src/api/manager/animationManager.ts +143 -143
  89. package/src/api/manager/gltfExportManager.ts +236 -192
  90. package/src/api/manager/sceneManager.ts +132 -127
  91. package/src/api/manager/textureLoadManager.ts +95 -0
  92. package/src/api/manager/variantInstanceManager.ts +265 -265
  93. package/src/api/store/specStorage.ts +51 -51
  94. package/src/api/util/babylonHelper.ts +658 -645
  95. package/src/api/util/globalTypes.ts +432 -417
  96. package/src/api/util/resourceHelper.ts +191 -191
  97. package/src/api/util/sceneLoaderHelper.ts +137 -144
  98. package/src/api/util/stringHelper.ts +23 -23
  99. package/src/api/util/structureHelper.ts +49 -49
  100. package/src/buildinfo.json +3 -3
  101. package/src/dev.ts +61 -61
  102. package/src/index.ts +96 -96
  103. package/src/types.d.ts +28 -28
  104. package/dist/lib-es6/api/classes/animationInterface.d.ts +0 -8
  105. package/dist/lib-es6/api/classes/animationInterface.js +0 -2
  106. package/dist/lib-es6/api/classes/animationInterface.js.map +0 -1
  107. package/dist/lib-es6/api/classes/dottedPath.d.ts +0 -79
  108. package/dist/lib-es6/api/classes/dottedPath.js +0 -163
  109. package/dist/lib-es6/api/classes/dottedPath.js.map +0 -1
  110. package/dist/lib-es6/api/classes/element.d.ts +0 -149
  111. package/dist/lib-es6/api/classes/element.js +0 -666
  112. package/dist/lib-es6/api/classes/element.js.map +0 -1
  113. package/dist/lib-es6/api/classes/event.d.ts +0 -326
  114. package/dist/lib-es6/api/classes/event.js +0 -346
  115. package/dist/lib-es6/api/classes/event.js.map +0 -1
  116. package/dist/lib-es6/api/classes/eventBroadcaster.d.ts +0 -26
  117. package/dist/lib-es6/api/classes/eventBroadcaster.js +0 -43
  118. package/dist/lib-es6/api/classes/eventBroadcaster.js.map +0 -1
  119. package/dist/lib-es6/api/classes/parameter.d.ts +0 -339
  120. package/dist/lib-es6/api/classes/parameter.js +0 -461
  121. package/dist/lib-es6/api/classes/parameter.js.map +0 -1
  122. package/dist/lib-es6/api/classes/parameterObservable.d.ts +0 -36
  123. package/dist/lib-es6/api/classes/parameterObservable.js +0 -94
  124. package/dist/lib-es6/api/classes/parameterObservable.js.map +0 -1
  125. package/dist/lib-es6/api/classes/parameterizable.d.ts +0 -15
  126. package/dist/lib-es6/api/classes/parameterizable.js +0 -99
  127. package/dist/lib-es6/api/classes/parameterizable.js.map +0 -1
  128. package/dist/lib-es6/api/classes/placementAnimation.d.ts +0 -45
  129. package/dist/lib-es6/api/classes/placementAnimation.js +0 -173
  130. package/dist/lib-es6/api/classes/placementAnimation.js.map +0 -1
  131. package/dist/lib-es6/api/classes/variant.d.ts +0 -234
  132. package/dist/lib-es6/api/classes/variant.js +0 -833
  133. package/dist/lib-es6/api/classes/variant.js.map +0 -1
  134. package/dist/lib-es6/api/classes/variantInstance.d.ts +0 -44
  135. package/dist/lib-es6/api/classes/variantInstance.js +0 -102
  136. package/dist/lib-es6/api/classes/variantInstance.js.map +0 -1
  137. package/dist/lib-es6/api/classes/variantParameterizable.d.ts +0 -17
  138. package/dist/lib-es6/api/classes/variantParameterizable.js +0 -85
  139. package/dist/lib-es6/api/classes/variantParameterizable.js.map +0 -1
  140. package/dist/lib-es6/api/classes/viewer.d.ts +0 -189
  141. package/dist/lib-es6/api/classes/viewer.js +0 -588
  142. package/dist/lib-es6/api/classes/viewer.js.map +0 -1
  143. package/dist/lib-es6/api/classes/viewerLight.d.ts +0 -66
  144. package/dist/lib-es6/api/classes/viewerLight.js +0 -322
  145. package/dist/lib-es6/api/classes/viewerLight.js.map +0 -1
  146. package/dist/lib-es6/api/internal/lensRendering.d.ts +0 -8
  147. package/dist/lib-es6/api/internal/lensRendering.js +0 -9
  148. package/dist/lib-es6/api/internal/lensRendering.js.map +0 -1
  149. package/dist/lib-es6/api/internal/sceneSetup.d.ts +0 -13
  150. package/dist/lib-es6/api/internal/sceneSetup.js +0 -199
  151. package/dist/lib-es6/api/internal/sceneSetup.js.map +0 -1
  152. package/dist/lib-es6/api/manager/animationManager.d.ts +0 -30
  153. package/dist/lib-es6/api/manager/animationManager.js +0 -123
  154. package/dist/lib-es6/api/manager/animationManager.js.map +0 -1
  155. package/dist/lib-es6/api/manager/gltfExportManager.d.ts +0 -65
  156. package/dist/lib-es6/api/manager/gltfExportManager.js +0 -194
  157. package/dist/lib-es6/api/manager/gltfExportManager.js.map +0 -1
  158. package/dist/lib-es6/api/manager/sceneManager.d.ts +0 -31
  159. package/dist/lib-es6/api/manager/sceneManager.js +0 -124
  160. package/dist/lib-es6/api/manager/sceneManager.js.map +0 -1
  161. package/dist/lib-es6/api/manager/variantInstanceManager.d.ts +0 -92
  162. package/dist/lib-es6/api/manager/variantInstanceManager.js +0 -257
  163. package/dist/lib-es6/api/manager/variantInstanceManager.js.map +0 -1
  164. package/dist/lib-es6/api/store/specStorage.d.ts +0 -24
  165. package/dist/lib-es6/api/store/specStorage.js +0 -47
  166. package/dist/lib-es6/api/store/specStorage.js.map +0 -1
  167. package/dist/lib-es6/api/util/babylonHelper.d.ts +0 -174
  168. package/dist/lib-es6/api/util/babylonHelper.js +0 -556
  169. package/dist/lib-es6/api/util/babylonHelper.js.map +0 -1
  170. package/dist/lib-es6/api/util/globalTypes.d.ts +0 -370
  171. package/dist/lib-es6/api/util/globalTypes.js +0 -2
  172. package/dist/lib-es6/api/util/globalTypes.js.map +0 -1
  173. package/dist/lib-es6/api/util/resourceHelper.d.ts +0 -58
  174. package/dist/lib-es6/api/util/resourceHelper.js +0 -194
  175. package/dist/lib-es6/api/util/resourceHelper.js.map +0 -1
  176. package/dist/lib-es6/api/util/sceneLoaderHelper.d.ts +0 -35
  177. package/dist/lib-es6/api/util/sceneLoaderHelper.js +0 -130
  178. package/dist/lib-es6/api/util/sceneLoaderHelper.js.map +0 -1
  179. package/dist/lib-es6/api/util/stringHelper.d.ts +0 -9
  180. package/dist/lib-es6/api/util/stringHelper.js +0 -22
  181. package/dist/lib-es6/api/util/stringHelper.js.map +0 -1
  182. package/dist/lib-es6/api/util/structureHelper.d.ts +0 -9
  183. package/dist/lib-es6/api/util/structureHelper.js +0 -46
  184. package/dist/lib-es6/api/util/structureHelper.js.map +0 -1
  185. package/dist/lib-es6/buildinfo.json +0 -3
  186. package/dist/lib-es6/es6.tsconfig.tsbuildinfo +0 -1
  187. package/dist/lib-es6/index.d.ts +0 -51
  188. package/dist/lib-es6/index.js +0 -49
  189. package/dist/lib-es6/index.js.map +0 -1
@@ -1,265 +1,265 @@
1
- import { DottedPath } from '../classes/dottedPath';
2
- import { Event } from '../classes/event';
3
- import { EventBroadcaster } from '../classes/eventBroadcaster';
4
- import { Parameter } from '../classes/parameter';
5
- import { Variant } from '../classes/variant';
6
- import { VariantInstance } from '../classes/variantInstance';
7
- import { merge } from 'lodash-es';
8
-
9
- /**
10
- * There's usually no need to instantiate a {@link VariantInstanceManager} yourself as it is provided by each
11
- * {@link Viewer} instance via its {@link Viewer.variantInstances}
12
- */
13
- export class VariantInstanceManager extends EventBroadcaster {
14
- protected variantInstancePromises: Map<string, Promise<VariantInstance>> = new Map();
15
-
16
- protected variantInstances: Map<string, VariantInstance> = new Map();
17
-
18
- protected variantInstanceDefinitions: Map<string, VariantInstanceDefinition> = new Map();
19
-
20
- protected parameters: ParameterBag = {};
21
-
22
- protected queues: { [name: string]: Promise<VariantInstance>[] } = {};
23
-
24
- /**
25
- * Constructor.
26
- */
27
- protected constructor(protected rootVariant: Variant) {
28
- super();
29
- }
30
-
31
- /**
32
- * Creates a {@link VariantInstanceManager} based on given root Variant.
33
- */
34
- public static async create(rootVariant: Variant): Promise<VariantInstanceManager> {
35
- return new VariantInstanceManager(rootVariant);
36
- }
37
-
38
- /**
39
- * Gets all instances.
40
- */
41
- get all() {
42
- const all: VariantInstance[] = [];
43
- this.variantInstances.forEach(variantInstance => all.push(variantInstance));
44
- return all;
45
- }
46
-
47
- /**
48
- * Gets all instance definitions.
49
- */
50
- get allDefinitions() {
51
- const all: VariantInstanceDefinition[] = [];
52
- this.variantInstanceDefinitions.forEach(definition => all.push(definition));
53
- return all;
54
- }
55
-
56
- /**
57
- * Checks whether a {@link VariantInstance} is either registered or created.
58
- */
59
- public has(name: string) {
60
- return this.variantInstances.has(name) || this.variantInstanceDefinitions.has(name);
61
- }
62
-
63
- /**
64
- * Retrieves a {@link VariantInstance}.
65
- * If the instance has been created, the created instance will be returned.
66
- * If the instance is registered, the instance will be created and returned.
67
- * if the instance has already been requested and is currently pending, the dedicated promise will be returned.
68
- * If none of these apply, an Error is thrown.
69
- *
70
- * @emits {@link Event.VARIANT_INSTANCE_CREATED}
71
- */
72
- public async get(name: string): Promise<VariantInstance> {
73
- // 1) see if we have an instance of that name already and return it if found
74
- if (this.variantInstances.has(name)) {
75
- return this.variantInstances.get(name)!; // cannot be null, hence the exclamation mark
76
- }
77
-
78
- // 2) try to get promise from list of requested instances and return it if found
79
- if (this.variantInstancePromises.has(name)) {
80
- return this.variantInstancePromises.get(name)!;
81
- }
82
-
83
- // 3) see if there's a definition of that name, create an instance from it and store the related promise
84
- if (this.variantInstanceDefinitions.has(name)) {
85
- const definition = this.variantInstanceDefinitions.get(name)!; // cannot be null
86
- const vip = this.createFromDefinition(definition);
87
- this.variantInstancePromises.set(name, vip);
88
- // remove promise after it has been finished
89
- vip.then(() => this.variantInstancePromises.delete(name));
90
-
91
- return vip;
92
- }
93
-
94
- //* if we are here, no instance definition of that name exists. throw error.
95
- throw Error(`VariantInstance with name "${name}" neither created nor configured.`);
96
- }
97
-
98
- /**
99
- * Creates and registers a unique {@link VariantInstance}.
100
- *
101
- * @emits {@link Event.VARIANT_INSTANCE_CREATED}
102
- */
103
- public async create(
104
- dottedPath: DottedPathArgument,
105
- name?: string,
106
- parameters?: ParameterBag
107
- ): Promise<VariantInstance> {
108
- const variant = DottedPath.create(dottedPath).path;
109
- const definition = {
110
- name: this.ensureUniqueName(name ? name : variant),
111
- variant: variant,
112
- parameters: parameters,
113
- };
114
- return await this.createFromDefinition(definition);
115
- }
116
-
117
- /**
118
- * Registers a unique {@link VariantInstanceDefinition}.
119
- *
120
- * @emits {@link Event.VARIANT_INSTANCE_REGISTERED}
121
- */
122
- public register(instanceDefinition: VariantInstanceDefinition): VariantInstanceDefinition {
123
- const name = instanceDefinition.name ? instanceDefinition.name : DottedPath.create(instanceDefinition.variant).path;
124
- instanceDefinition.name = this.ensureUniqueName(name);
125
- this.variantInstanceDefinitions.set(instanceDefinition.name, instanceDefinition);
126
- this.broadcastEvent(Event.VARIANT_INSTANCE_REGISTERED, instanceDefinition);
127
- return instanceDefinition;
128
- }
129
-
130
- /**
131
- * Commits the {@link ParameterBag} to all registered and created {@link VariantInstance}s.
132
- */
133
- public async commitParameters(
134
- parameters: ParameterBag = {},
135
- onlyVisible: boolean = true
136
- ): Promise<VariantInstanceManager> {
137
- this.parameters = merge(this.parameters, parameters);
138
- this.allDefinitions.forEach(definition => (definition.parameters = merge(definition.parameters, this.parameters)));
139
- let instances = this.all;
140
- if (onlyVisible) {
141
- instances = this.all.filter(instance => instance.variant.visible);
142
- }
143
- const promises = instances.map(instance => instance.variant.commitParameters(this.parameters));
144
- await Promise.all(promises);
145
- return this;
146
- }
147
-
148
- /**
149
- * Show one {@link VariantInstance}. If `exclusive` is set to `true` it will hide all other
150
- * instances handled by this {@link VariantInstanceManager}. If the function is called synchronously,
151
- * the calls end up in a queue according to the FIFO principle (the last one wins).
152
- */
153
- public async show(name: string, exclusive: boolean = false): Promise<VariantInstance> {
154
- const promise: Promise<VariantInstance> = new Promise(async resolve => {
155
- if (exclusive) {
156
- this.allDefinitions
157
- .filter(definition => definition.name !== name)
158
- .forEach(definition => {
159
- const parameters: ParameterBag = {};
160
- parameters[Parameter.VISIBLE] = false;
161
- definition.parameters = merge(definition.parameters, parameters);
162
- });
163
- await Promise.all(
164
- this.all
165
- .filter(_instance => _instance.name !== name)
166
- .map(_instance => {
167
- return _instance.variant.hide();
168
- })
169
- );
170
- }
171
- const instance = await this.get(name);
172
- await instance.variant.show();
173
- resolve(instance);
174
- });
175
- if (!this.queues['show']) {
176
- this.queues['show'] = [];
177
- }
178
- this.queues['show'].push(promise);
179
- for (let i = 0; i < this.queues['show'].length; i++) {
180
- const instance = await this.queues['show'][i];
181
- if (exclusive) {
182
- if (i + 1 < this.queues['show'].length) {
183
- await instance.variant.hide();
184
- }
185
- }
186
- }
187
- this.queues['show'] = [];
188
- return promise;
189
- }
190
-
191
- /**
192
- * Clones and registers a new {@link VariantInstance} with a new, unique name.
193
- *
194
- * @emits {@link Event.VARIANT_INSTANCE_CLONED}
195
- */
196
- public async clone(name: string, newName: string, parameters?: ParameterBag): Promise<VariantInstance> {
197
- if (!this.variantInstances.has(name)) {
198
- throw Error(`VariantInstance with name "${name}" does not exist.`);
199
- }
200
- const variantInstance = this.variantInstances.get(name)!;
201
- const definition = {
202
- name: this.ensureUniqueName(newName ? newName : name),
203
- variant: variantInstance.variant.id,
204
- parameters: parameters,
205
- };
206
- const living = await variantInstance.variant.createLiving(definition.parameters);
207
- const variantInstanceClone = new VariantInstance(living, definition.name);
208
- this.variantInstances.set(definition.name, variantInstanceClone);
209
- variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_CLONED, variantInstanceClone);
210
- return variantInstanceClone;
211
- }
212
-
213
- /**
214
- * Destroys the instance by removing the {@link Variant} and de-registering the instance.
215
- *
216
- * @emits {@link Event.VARIANT_INSTANCE_DESTROYED}
217
- */
218
- public destroy(name: string): VariantInstanceManager {
219
- if (!this.variantInstances.has(name)) {
220
- throw Error(`VariantInstance with name "${name}" does not exist.`);
221
- }
222
- const variantInstance = this.variantInstances.get(name)!;
223
- variantInstance.variant.destroy();
224
- this.variantInstances.delete(name);
225
- variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_DESTROYED, variantInstance);
226
- return this;
227
- }
228
-
229
- /**
230
- * Creates and registers a unique {@link VariantInstance} from `definition`.
231
- *
232
- * @emits {@link Event.VARIANT_INSTANCE_CREATED}
233
- */
234
- protected async createFromDefinition(definition: VariantInstanceDefinition): Promise<VariantInstance> {
235
- if (!definition.name) {
236
- throw new Error(`Given VariantInstanceDefinition ${definition.variant} is missing a name property.`);
237
- }
238
- if (this.variantInstances.has(definition.name)) {
239
- throw new Error(`VariantInstance with name "${definition.name}" is already created.`);
240
- }
241
- if (!this.rootVariant) {
242
- throw new Error(`Viewer has not been properly bootstrapped (rootVariant missing).`);
243
- }
244
- const variant = await this.rootVariant.getDescendant(definition.variant);
245
- const living = await variant.createLiving(definition.parameters);
246
- const variantInstance = new VariantInstance(living, definition.name);
247
- this.variantInstances.set(definition.name, variantInstance);
248
- this.broadcastEvent(Event.VARIANT_INSTANCE_CREATED, variantInstance);
249
- return variantInstance;
250
- }
251
-
252
- /**
253
- * Creates a unique instance name based on already registered instance names on the {@link VariantInstanceManager}.
254
- * Appends an `_i` to the name where `i = 0` and increments as long as the name is not registered.
255
- */
256
- protected ensureUniqueName(name: string): string {
257
- let instanceName = name;
258
- let i = 1;
259
- while (this.has(instanceName)) {
260
- instanceName = `${name}_${i}`;
261
- i++;
262
- }
263
- return instanceName;
264
- }
265
- }
1
+ import { DottedPath } from '../classes/dottedPath';
2
+ import { Event } from '../classes/event';
3
+ import { EventBroadcaster } from '../classes/eventBroadcaster';
4
+ import { Parameter } from '../classes/parameter';
5
+ import { Variant } from '../classes/variant';
6
+ import { VariantInstance } from '../classes/variantInstance';
7
+ import { merge } from 'lodash-es';
8
+
9
+ /**
10
+ * There's usually no need to instantiate a {@link VariantInstanceManager} yourself as it is provided by each
11
+ * {@link Viewer} instance via its {@link Viewer.variantInstances}
12
+ */
13
+ export class VariantInstanceManager extends EventBroadcaster {
14
+ protected variantInstancePromises: Map<string, Promise<VariantInstance>> = new Map();
15
+
16
+ protected variantInstances: Map<string, VariantInstance> = new Map();
17
+
18
+ protected variantInstanceDefinitions: Map<string, VariantInstanceDefinition> = new Map();
19
+
20
+ protected parameters: ParameterBag = {};
21
+
22
+ protected queues: { [name: string]: Promise<VariantInstance>[] } = {};
23
+
24
+ /**
25
+ * Constructor.
26
+ */
27
+ protected constructor(protected rootVariant: Variant) {
28
+ super();
29
+ }
30
+
31
+ /**
32
+ * Creates a {@link VariantInstanceManager} based on given root Variant.
33
+ */
34
+ public static async create(rootVariant: Variant): Promise<VariantInstanceManager> {
35
+ return new VariantInstanceManager(rootVariant);
36
+ }
37
+
38
+ /**
39
+ * Gets all instances.
40
+ */
41
+ get all() {
42
+ const all: VariantInstance[] = [];
43
+ this.variantInstances.forEach(variantInstance => all.push(variantInstance));
44
+ return all;
45
+ }
46
+
47
+ /**
48
+ * Gets all instance definitions.
49
+ */
50
+ get allDefinitions() {
51
+ const all: VariantInstanceDefinition[] = [];
52
+ this.variantInstanceDefinitions.forEach(definition => all.push(definition));
53
+ return all;
54
+ }
55
+
56
+ /**
57
+ * Checks whether a {@link VariantInstance} is either registered or created.
58
+ */
59
+ public has(name: string) {
60
+ return this.variantInstances.has(name) || this.variantInstanceDefinitions.has(name);
61
+ }
62
+
63
+ /**
64
+ * Retrieves a {@link VariantInstance}.
65
+ * If the instance has been created, the created instance will be returned.
66
+ * If the instance is registered, the instance will be created and returned.
67
+ * if the instance has already been requested and is currently pending, the dedicated promise will be returned.
68
+ * If none of these apply, an Error is thrown.
69
+ *
70
+ * @emits {@link Event.VARIANT_INSTANCE_CREATED}
71
+ */
72
+ public async get(name: string): Promise<VariantInstance> {
73
+ // 1) see if we have an instance of that name already and return it if found
74
+ if (this.variantInstances.has(name)) {
75
+ return this.variantInstances.get(name)!; // cannot be null, hence the exclamation mark
76
+ }
77
+
78
+ // 2) try to get promise from list of requested instances and return it if found
79
+ if (this.variantInstancePromises.has(name)) {
80
+ return this.variantInstancePromises.get(name)!;
81
+ }
82
+
83
+ // 3) see if there's a definition of that name, create an instance from it and store the related promise
84
+ if (this.variantInstanceDefinitions.has(name)) {
85
+ const definition = this.variantInstanceDefinitions.get(name)!; // cannot be null
86
+ const vip = this.createFromDefinition(definition);
87
+ this.variantInstancePromises.set(name, vip);
88
+ // remove promise after it has been finished
89
+ vip.then(() => this.variantInstancePromises.delete(name));
90
+
91
+ return vip;
92
+ }
93
+
94
+ //* if we are here, no instance definition of that name exists. throw error.
95
+ throw Error(`VariantInstance with name "${name}" neither created nor configured.`);
96
+ }
97
+
98
+ /**
99
+ * Creates and registers a unique {@link VariantInstance}.
100
+ *
101
+ * @emits {@link Event.VARIANT_INSTANCE_CREATED}
102
+ */
103
+ public async create(
104
+ dottedPath: DottedPathArgument,
105
+ name?: string,
106
+ parameters?: ParameterBag
107
+ ): Promise<VariantInstance> {
108
+ const variant = DottedPath.create(dottedPath).path;
109
+ const definition = {
110
+ name: this.ensureUniqueName(name ? name : variant),
111
+ variant: variant,
112
+ parameters: parameters,
113
+ };
114
+ return await this.createFromDefinition(definition);
115
+ }
116
+
117
+ /**
118
+ * Registers a unique {@link VariantInstanceDefinition}.
119
+ *
120
+ * @emits {@link Event.VARIANT_INSTANCE_REGISTERED}
121
+ */
122
+ public register(instanceDefinition: VariantInstanceDefinition): VariantInstanceDefinition {
123
+ const name = instanceDefinition.name ? instanceDefinition.name : DottedPath.create(instanceDefinition.variant).path;
124
+ instanceDefinition.name = this.ensureUniqueName(name);
125
+ this.variantInstanceDefinitions.set(instanceDefinition.name, instanceDefinition);
126
+ this.broadcastEvent(Event.VARIANT_INSTANCE_REGISTERED, instanceDefinition);
127
+ return instanceDefinition;
128
+ }
129
+
130
+ /**
131
+ * Commits the {@link ParameterBag} to all registered and created {@link VariantInstance}s.
132
+ */
133
+ public async commitParameters(
134
+ parameters: ParameterBag = {},
135
+ onlyVisible: boolean = true
136
+ ): Promise<VariantInstanceManager> {
137
+ this.parameters = merge(this.parameters, parameters);
138
+ this.allDefinitions.forEach(definition => (definition.parameters = merge(definition.parameters, this.parameters)));
139
+ let instances = this.all;
140
+ if (onlyVisible) {
141
+ instances = this.all.filter(instance => instance.variant.visible);
142
+ }
143
+ const promises = instances.map(instance => instance.variant.commitParameters(this.parameters));
144
+ await Promise.all(promises);
145
+ return this;
146
+ }
147
+
148
+ /**
149
+ * Show one {@link VariantInstance}. If `exclusive` is set to `true` it will hide all other
150
+ * instances handled by this {@link VariantInstanceManager}. If the function is called synchronously,
151
+ * the calls end up in a queue according to the FIFO principle (the last one wins).
152
+ */
153
+ public async show(name: string, exclusive: boolean = false): Promise<VariantInstance> {
154
+ const promise: Promise<VariantInstance> = new Promise(async resolve => {
155
+ if (exclusive) {
156
+ this.allDefinitions
157
+ .filter(definition => definition.name !== name)
158
+ .forEach(definition => {
159
+ const parameters: ParameterBag = {};
160
+ parameters[Parameter.VISIBLE] = false;
161
+ definition.parameters = merge(definition.parameters, parameters);
162
+ });
163
+ await Promise.all(
164
+ this.all
165
+ .filter(_instance => _instance.name !== name)
166
+ .map(_instance => {
167
+ return _instance.variant.hide();
168
+ })
169
+ );
170
+ }
171
+ const instance = await this.get(name);
172
+ await instance.variant.show();
173
+ resolve(instance);
174
+ });
175
+ if (!this.queues['show']) {
176
+ this.queues['show'] = [];
177
+ }
178
+ this.queues['show'].push(promise);
179
+ for (let i = 0; i < this.queues['show'].length; i++) {
180
+ const instance = await this.queues['show'][i];
181
+ if (exclusive) {
182
+ if (i + 1 < this.queues['show'].length) {
183
+ await instance.variant.hide();
184
+ }
185
+ }
186
+ }
187
+ this.queues['show'] = [];
188
+ return promise;
189
+ }
190
+
191
+ /**
192
+ * Clones and registers a new {@link VariantInstance} with a new, unique name.
193
+ *
194
+ * @emits {@link Event.VARIANT_INSTANCE_CLONED}
195
+ */
196
+ public async clone(name: string, newName: string, parameters?: ParameterBag): Promise<VariantInstance> {
197
+ if (!this.variantInstances.has(name)) {
198
+ throw Error(`VariantInstance with name "${name}" does not exist.`);
199
+ }
200
+ const variantInstance = this.variantInstances.get(name)!;
201
+ const definition = {
202
+ name: this.ensureUniqueName(newName ? newName : name),
203
+ variant: variantInstance.variant.id,
204
+ parameters: parameters,
205
+ };
206
+ const living = await variantInstance.variant.createLiving(definition.parameters);
207
+ const variantInstanceClone = new VariantInstance(living, definition.name);
208
+ this.variantInstances.set(definition.name, variantInstanceClone);
209
+ variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_CLONED, variantInstanceClone);
210
+ return variantInstanceClone;
211
+ }
212
+
213
+ /**
214
+ * Destroys the instance by removing the {@link Variant} and de-registering the instance.
215
+ *
216
+ * @emits {@link Event.VARIANT_INSTANCE_DESTROYED}
217
+ */
218
+ public destroy(name: string): VariantInstanceManager {
219
+ if (!this.variantInstances.has(name)) {
220
+ throw Error(`VariantInstance with name "${name}" does not exist.`);
221
+ }
222
+ const variantInstance = this.variantInstances.get(name)!;
223
+ variantInstance.variant.destroy();
224
+ this.variantInstances.delete(name);
225
+ variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_DESTROYED, variantInstance);
226
+ return this;
227
+ }
228
+
229
+ /**
230
+ * Creates and registers a unique {@link VariantInstance} from `definition`.
231
+ *
232
+ * @emits {@link Event.VARIANT_INSTANCE_CREATED}
233
+ */
234
+ protected async createFromDefinition(definition: VariantInstanceDefinition): Promise<VariantInstance> {
235
+ if (!definition.name) {
236
+ throw new Error(`Given VariantInstanceDefinition ${definition.variant} is missing a name property.`);
237
+ }
238
+ if (this.variantInstances.has(definition.name)) {
239
+ throw new Error(`VariantInstance with name "${definition.name}" is already created.`);
240
+ }
241
+ if (!this.rootVariant) {
242
+ throw new Error(`Viewer has not been properly bootstrapped (rootVariant missing).`);
243
+ }
244
+ const variant = await this.rootVariant.getDescendant(definition.variant);
245
+ const living = await variant.createLiving(definition.parameters);
246
+ const variantInstance = new VariantInstance(living, definition.name);
247
+ this.variantInstances.set(definition.name, variantInstance);
248
+ this.broadcastEvent(Event.VARIANT_INSTANCE_CREATED, variantInstance);
249
+ return variantInstance;
250
+ }
251
+
252
+ /**
253
+ * Creates a unique instance name based on already registered instance names on the {@link VariantInstanceManager}.
254
+ * Appends an `_i` to the name where `i = 0` and increments as long as the name is not registered.
255
+ */
256
+ protected ensureUniqueName(name: string): string {
257
+ let instanceName = name;
258
+ let i = 1;
259
+ while (this.has(instanceName)) {
260
+ instanceName = `${name}_${i}`;
261
+ i++;
262
+ }
263
+ return instanceName;
264
+ }
265
+ }
@@ -1,51 +1,51 @@
1
- import { get, set } from 'lodash-es';
2
-
3
- export class SpecStorage {
4
- public static instance: SpecStorage | undefined;
5
-
6
- /**
7
- * Constructor.
8
- */
9
- protected constructor(protected spec: StructureJson) {}
10
-
11
- /**
12
- * Creates {@link SpecStorage} from spec.
13
- */
14
- public static createFromSpec(structureJson: StructureJson): SpecStorage {
15
- if (this.instance) {
16
- throw new Error(`SpecStorage has already been created.`);
17
- }
18
- return (this.instance = new this(structureJson));
19
- }
20
-
21
- /**
22
- * Destroys the current instance to allow reinstantiating the SpecStorage.
23
- */
24
- public static destroy() {
25
- this.instance = undefined;
26
- }
27
-
28
- /**
29
- * Gets spec from key.
30
- */
31
- public static get<T>(key?: string): T {
32
- if (!this.instance || !this.instance.spec) {
33
- throw new Error(`SpecStore has not been properly created.`);
34
- }
35
- if (key) {
36
- return get(this.instance.spec, key) as T;
37
- }
38
- return this.instance.spec as T;
39
- }
40
-
41
- /**
42
- * Sets value for spec for given key.
43
- */
44
- public static set<T>(key: string, value: T) {
45
- if (!this.instance || !this.instance.spec) {
46
- throw new Error(`SpecStore has not been properly created.`);
47
- }
48
- set(this.instance.spec, key, value);
49
- return SpecStorage;
50
- }
51
- }
1
+ import { get, set } from 'lodash-es';
2
+
3
+ export class SpecStorage {
4
+ public static instance: SpecStorage | undefined;
5
+
6
+ /**
7
+ * Constructor.
8
+ */
9
+ protected constructor(protected spec: StructureJson) {}
10
+
11
+ /**
12
+ * Creates {@link SpecStorage} from spec.
13
+ */
14
+ public static createFromSpec(structureJson: StructureJson): SpecStorage {
15
+ if (this.instance) {
16
+ throw new Error(`SpecStorage has already been created.`);
17
+ }
18
+ return (this.instance = new this(structureJson));
19
+ }
20
+
21
+ /**
22
+ * Destroys the current instance to allow reinstantiating the SpecStorage.
23
+ */
24
+ public static destroy() {
25
+ this.instance = undefined;
26
+ }
27
+
28
+ /**
29
+ * Gets spec from key.
30
+ */
31
+ public static get<T>(key?: string): T {
32
+ if (!this.instance || !this.instance.spec) {
33
+ throw new Error(`SpecStore has not been properly created.`);
34
+ }
35
+ if (key) {
36
+ return get(this.instance.spec, key) as T;
37
+ }
38
+ return this.instance.spec as T;
39
+ }
40
+
41
+ /**
42
+ * Sets value for spec for given key.
43
+ */
44
+ public static set<T>(key: string, value: T) {
45
+ if (!this.instance || !this.instance.spec) {
46
+ throw new Error(`SpecStore has not been properly created.`);
47
+ }
48
+ set(this.instance.spec, key, value);
49
+ return SpecStorage;
50
+ }
51
+ }