@lwrjs/view-registry 0.17.7 → 0.17.8
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.
|
@@ -90,7 +90,7 @@ async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
90
90
|
}
|
|
91
91
|
} = view;
|
|
92
92
|
const defRegistry = bundle ? moduleBundler : moduleRegistry;
|
|
93
|
-
const depth = isAMD ? {static: import_shared_utils.GraphDepth.ALL, dynamic: 1} : {static: import_shared_utils.GraphDepth.NONE, dynamic: 0};
|
|
93
|
+
const depth = isAMD ? {static: import_shared_utils.GraphDepth.ALL, dynamic: (0, import_shared_utils.isMrtBundle)() ? 50 : 1} : {static: import_shared_utils.GraphDepth.NONE, dynamic: 0};
|
|
94
94
|
if (isAMD) {
|
|
95
95
|
depth.includeId = includeIdFactory(bundleConfig);
|
|
96
96
|
}
|
|
@@ -181,7 +181,8 @@ async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
181
181
|
const uri2 = getPreloadUri(depSpecifier, bootstrapModuleGraph.uriMap);
|
|
182
182
|
if (uri2) {
|
|
183
183
|
const integrity2 = (0, import_utils2.getBundleIntegrity)(bootstrapModuleGraph, depSpecifier);
|
|
184
|
-
|
|
184
|
+
const depDef = bootstrapModuleGraph.linkedDefinitions[depSpecifier];
|
|
185
|
+
(0, import_preload_utils.setPreloadModulesMeta)(depSpecifier, uri2, integrity2, groups, viewPreloads, depDef?.bundleRecord?.includedModules);
|
|
185
186
|
}
|
|
186
187
|
}
|
|
187
188
|
if ((0, import_shared_utils.isBundler)(defRegistry)) {
|
|
@@ -192,22 +193,25 @@ async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
192
193
|
if (isAMD) {
|
|
193
194
|
requiredAmdModules.push(versionedSpecifier);
|
|
194
195
|
imports[versionedSpecifier] = uri;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
196
|
+
const levels = (0, import_shared_utils.isMrtBundle)() ? bootstrapModuleGraph.graphs.length : 1;
|
|
197
|
+
for (let i = 0; i < levels; i++) {
|
|
198
|
+
for (const staticDep of bootstrapModuleGraph.graphs[i].static) {
|
|
199
|
+
const uri2 = bootstrapModuleGraph.uriMap[staticDep];
|
|
200
|
+
imports[staticDep] = uri2;
|
|
201
|
+
if (services?.length && i === 0) {
|
|
202
|
+
requiredAmdModules.push(staticDep);
|
|
203
|
+
}
|
|
200
204
|
}
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
}
|
|
205
|
+
for (const dynamicDep of bootstrapModuleGraph.graphs[i].dynamicRefs) {
|
|
206
|
+
const uri2 = bootstrapModuleGraph.uriMap[dynamicDep];
|
|
207
|
+
if (uri2) {
|
|
208
|
+
imports[dynamicDep] = uri2;
|
|
209
|
+
} else {
|
|
210
|
+
import_diagnostics.logger.warn({
|
|
211
|
+
label: `view-registry`,
|
|
212
|
+
message: `Skipping unknown dynamic import: ${dynamicDep}`
|
|
213
|
+
});
|
|
214
|
+
}
|
|
211
215
|
}
|
|
212
216
|
}
|
|
213
217
|
}
|
|
@@ -240,20 +244,24 @@ async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
240
244
|
const depUri = getPreloadUri(depSpecifier, graph.uriMap);
|
|
241
245
|
if (depUri) {
|
|
242
246
|
const integrity2 = (0, import_utils2.getBundleIntegrity)(graph, depSpecifier);
|
|
243
|
-
|
|
247
|
+
const depDef = graph.linkedDefinitions[depSpecifier];
|
|
248
|
+
(0, import_preload_utils.setPreloadModulesMeta)(depSpecifier, depUri, integrity2, groups, viewPreloads, depDef?.bundleRecord?.includedModules);
|
|
244
249
|
}
|
|
245
250
|
}
|
|
246
251
|
}
|
|
247
252
|
rootComponents.push(specifier);
|
|
248
253
|
imports[specifier] = uri;
|
|
249
254
|
if (isAMD) {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
255
|
+
const levels = (0, import_shared_utils.isMrtBundle)() ? graph.graphs.length : 1;
|
|
256
|
+
for (let i = 0; i < levels; i++) {
|
|
257
|
+
for (const staticDep of graph.graphs[i].static) {
|
|
258
|
+
const uri2 = graph.uriMap[staticDep];
|
|
259
|
+
imports[staticDep] = uri2;
|
|
260
|
+
}
|
|
261
|
+
for (const dynamicDep of graph.graphs[i].dynamicRefs) {
|
|
262
|
+
const uri2 = graph.uriMap[dynamicDep];
|
|
263
|
+
imports[dynamicDep] = uri2;
|
|
264
|
+
}
|
|
257
265
|
}
|
|
258
266
|
}
|
|
259
267
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { logger } from '@lwrjs/diagnostics';
|
|
2
|
-
import { kebabCaseToModuleSpecifier, getModuleGraphs, GraphDepth, getModuleUriPrefix, explodeSpecifier, isBundler, getHydrateDirective, isGroupie, isExternalSpecifier, isLocalDev, isLambdaEnv, } from '@lwrjs/shared-utils';
|
|
2
|
+
import { kebabCaseToModuleSpecifier, getModuleGraphs, GraphDepth, getModuleUriPrefix, explodeSpecifier, isBundler, getHydrateDirective, isGroupie, isExternalSpecifier, isLocalDev, isLambdaEnv, isMrtBundle, } from '@lwrjs/shared-utils';
|
|
3
3
|
import { AppResourceEnum, getAppSpecifier } from '@lwrjs/app-service/identity';
|
|
4
4
|
import { addExternalScriptNonce, generateHtmlTag, getModuleResource, getModuleResourceByUri, getViewNonce, getModuleGraphCacheKey, } from '../utils.js';
|
|
5
5
|
import { flattenCustomElements, getBundleIntegrity, getViewBootstrapConfigurationResource, getViewHmrConfigurationResource, } from './utils.js';
|
|
@@ -64,7 +64,7 @@ export async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
64
64
|
}, } = view;
|
|
65
65
|
const defRegistry = bundle ? moduleBundler : moduleRegistry;
|
|
66
66
|
const depth = isAMD
|
|
67
|
-
? { static: GraphDepth.ALL, dynamic: 1 }
|
|
67
|
+
? { static: GraphDepth.ALL, dynamic: isMrtBundle() ? 50 : 1 }
|
|
68
68
|
: { static: GraphDepth.NONE, dynamic: 0 };
|
|
69
69
|
if (isAMD) {
|
|
70
70
|
depth.includeId = includeIdFactory(bundleConfig);
|
|
@@ -202,7 +202,8 @@ export async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
202
202
|
const uri = getPreloadUri(depSpecifier, bootstrapModuleGraph.uriMap);
|
|
203
203
|
if (uri) {
|
|
204
204
|
const integrity = getBundleIntegrity(bootstrapModuleGraph, depSpecifier);
|
|
205
|
-
|
|
205
|
+
const depDef = bootstrapModuleGraph.linkedDefinitions[depSpecifier];
|
|
206
|
+
setPreloadModulesMeta(depSpecifier, uri, integrity, groups, viewPreloads, depDef?.bundleRecord?.includedModules);
|
|
206
207
|
}
|
|
207
208
|
}
|
|
208
209
|
// PRELOAD configured preloadModules as preloaded script resources
|
|
@@ -217,27 +218,30 @@ export async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
217
218
|
requiredAmdModules.push(versionedSpecifier);
|
|
218
219
|
// AMD ADD bootstrap module uri addressability
|
|
219
220
|
imports[versionedSpecifier] = uri;
|
|
220
|
-
|
|
221
|
-
for (
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
requiredAmdModules
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
for (const dynamicDep of bootstrapModuleGraph.graphs[0].dynamicRefs) {
|
|
232
|
-
const uri = bootstrapModuleGraph.uriMap[dynamicDep];
|
|
233
|
-
if (uri) {
|
|
234
|
-
imports[dynamicDep] = uri;
|
|
221
|
+
const levels = isMrtBundle() ? bootstrapModuleGraph.graphs.length : 1;
|
|
222
|
+
for (let i = 0; i < levels; i++) {
|
|
223
|
+
// PRELOAD bootstrap module static deps as link resource
|
|
224
|
+
for (const staticDep of bootstrapModuleGraph.graphs[i].static) {
|
|
225
|
+
const uri = bootstrapModuleGraph.uriMap[staticDep];
|
|
226
|
+
// AMD ADD static module dep uri addressability
|
|
227
|
+
imports[staticDep] = uri;
|
|
228
|
+
// ADD bootstrap module static deps to requiredAmdModules if services, otherwise preloadModules
|
|
229
|
+
if (services?.length && i === 0) {
|
|
230
|
+
requiredAmdModules.push(staticDep);
|
|
231
|
+
}
|
|
235
232
|
}
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
233
|
+
// AMD Add import mappings for known dynamic imports
|
|
234
|
+
for (const dynamicDep of bootstrapModuleGraph.graphs[i].dynamicRefs) {
|
|
235
|
+
const uri = bootstrapModuleGraph.uriMap[dynamicDep];
|
|
236
|
+
if (uri) {
|
|
237
|
+
imports[dynamicDep] = uri;
|
|
238
|
+
}
|
|
239
|
+
else {
|
|
240
|
+
logger.warn({
|
|
241
|
+
label: `view-registry`,
|
|
242
|
+
message: `Skipping unknown dynamic import: ${dynamicDep}`,
|
|
243
|
+
});
|
|
244
|
+
}
|
|
241
245
|
}
|
|
242
246
|
}
|
|
243
247
|
}
|
|
@@ -276,7 +280,8 @@ export async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
276
280
|
const depUri = getPreloadUri(depSpecifier, graph.uriMap);
|
|
277
281
|
if (depUri) {
|
|
278
282
|
const integrity = getBundleIntegrity(graph, depSpecifier);
|
|
279
|
-
|
|
283
|
+
const depDef = graph.linkedDefinitions[depSpecifier];
|
|
284
|
+
setPreloadModulesMeta(depSpecifier, depUri, integrity, groups, viewPreloads, depDef?.bundleRecord?.includedModules);
|
|
280
285
|
}
|
|
281
286
|
}
|
|
282
287
|
}
|
|
@@ -284,15 +289,18 @@ export async function getHtmlResources(view, viewParams, resourceContext) {
|
|
|
284
289
|
rootComponents.push(specifier);
|
|
285
290
|
imports[specifier] = uri;
|
|
286
291
|
if (isAMD) {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
292
|
+
const levels = isMrtBundle() ? graph.graphs.length : 1;
|
|
293
|
+
for (let i = 0; i < levels; i++) {
|
|
294
|
+
for (const staticDep of graph.graphs[i].static) {
|
|
295
|
+
const uri = graph.uriMap[staticDep];
|
|
296
|
+
// AMD ADD static module dep uri addressability
|
|
297
|
+
imports[staticDep] = uri;
|
|
298
|
+
}
|
|
299
|
+
// AMD ADD dynamic imports module dep uri addressability
|
|
300
|
+
for (const dynamicDep of graph.graphs[i].dynamicRefs) {
|
|
301
|
+
const uri = graph.uriMap[dynamicDep];
|
|
302
|
+
imports[dynamicDep] = uri;
|
|
303
|
+
}
|
|
296
304
|
}
|
|
297
305
|
}
|
|
298
306
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.17.
|
|
7
|
+
"version": "0.17.8",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"build": "tsc -b"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@lwrjs/app-service": "0.17.
|
|
37
|
-
"@lwrjs/config": "0.17.
|
|
38
|
-
"@lwrjs/diagnostics": "0.17.
|
|
39
|
-
"@lwrjs/instrumentation": "0.17.
|
|
40
|
-
"@lwrjs/shared-utils": "0.17.
|
|
36
|
+
"@lwrjs/app-service": "0.17.8",
|
|
37
|
+
"@lwrjs/config": "0.17.8",
|
|
38
|
+
"@lwrjs/diagnostics": "0.17.8",
|
|
39
|
+
"@lwrjs/instrumentation": "0.17.8",
|
|
40
|
+
"@lwrjs/shared-utils": "0.17.8",
|
|
41
41
|
"lru-cache": "^10.4.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@lwrjs/types": "0.17.
|
|
44
|
+
"@lwrjs/types": "0.17.8"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=20.0.0"
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"volta": {
|
|
50
50
|
"extends": "../../../package.json"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "a8b449fc6fc78841913b6e36bfbc04e3336541a7"
|
|
53
53
|
}
|