@next-core/runtime 1.72.1 → 1.72.2
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/dist/cjs/internal/Renderer.js +32 -7
- package/dist/cjs/internal/Renderer.js.map +1 -1
- package/dist/cjs/internal/data/DataStore.js +6 -2
- package/dist/cjs/internal/data/DataStore.js.map +1 -1
- package/dist/cjs/internal/interfaces.js.map +1 -1
- package/dist/esm/internal/Renderer.js +36 -7
- package/dist/esm/internal/Renderer.js.map +1 -1
- package/dist/esm/internal/data/DataStore.js +6 -2
- package/dist/esm/internal/data/DataStore.js.map +1 -1
- package/dist/esm/internal/interfaces.js.map +1 -1
- package/dist/types/internal/Renderer.d.ts +4 -4
- package/dist/types/internal/data/DataStore.d.ts +2 -2
- package/dist/types/internal/interfaces.d.ts +4 -0
- package/package.json +2 -2
|
@@ -65,7 +65,10 @@ async function renderRoutes(returnNode, routes, _runtimeContext, rendererContext
|
|
|
65
65
|
if (isIncremental) {
|
|
66
66
|
runtimeContext.ctxStore.disposeDataInRoutes(routes);
|
|
67
67
|
}
|
|
68
|
-
const routePath = parentRoutes.concat(
|
|
68
|
+
const routePath = parentRoutes.concat({
|
|
69
|
+
route,
|
|
70
|
+
routes
|
|
71
|
+
});
|
|
69
72
|
runtimeContext.ctxStore.define(route.context, runtimeContext, undefined, routePath);
|
|
70
73
|
runtimeContext.pendingPermissionsPreCheck.push(_Runtime.hooks === null || _Runtime.hooks === void 0 || (_hooks$checkPermissio = _Runtime.hooks.checkPermissions) === null || _hooks$checkPermissio === void 0 ? void 0 : _hooks$checkPermissio.preCheckPermissionsForBrickOrRoute(route, value => (0, _computeRealValue.asyncComputeRealValue)(value, runtimeContext)));
|
|
71
74
|
|
|
@@ -551,10 +554,14 @@ async function legacyRenderBrick(returnNode, brickConf, _runtimeContext, rendere
|
|
|
551
554
|
return: brick
|
|
552
555
|
};
|
|
553
556
|
lastOutput.node = abstractNode;
|
|
554
|
-
const
|
|
557
|
+
const {
|
|
558
|
+
route: parentRoute
|
|
559
|
+
} = parentRoutes[parentRoutes.length - 1];
|
|
555
560
|
if (parentRoute !== null && parentRoute !== void 0 && parentRoute.incrementalSubRoutes) {
|
|
556
561
|
routeSlotFromIndexToSlotId.set(index, childSlotId);
|
|
557
|
-
rendererContext.performIncrementalRender(slotConf, parentRoutes
|
|
562
|
+
rendererContext.performIncrementalRender(slotConf, parentRoutes.map(({
|
|
563
|
+
route
|
|
564
|
+
}) => route), async (location, prevLocation) => {
|
|
558
565
|
const {
|
|
559
566
|
homepage
|
|
560
567
|
} = childRuntimeContext.app;
|
|
@@ -562,10 +569,13 @@ async function legacyRenderBrick(returnNode, brickConf, _runtimeContext, rendere
|
|
|
562
569
|
pathname
|
|
563
570
|
} = location;
|
|
564
571
|
// Ignore if any one of homepage and parent routes not matched.
|
|
565
|
-
if (!(0, _matchStoryboard.matchHomepage)(homepage, pathname) || !parentRoutes.every(
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
572
|
+
if (!(0, _matchStoryboard.matchHomepage)(homepage, pathname) || !parentRoutes.every(({
|
|
573
|
+
route,
|
|
574
|
+
routes
|
|
575
|
+
}) => {
|
|
576
|
+
let prevMatch = null;
|
|
577
|
+
let newMatch = null;
|
|
578
|
+
return (prevMatch = matchTargetRoute(route, routes, homepage, prevLocation.pathname)) && (newMatch = matchTargetRoute(route, routes, homepage, pathname)) && (route !== parentRoute || isRouteParamsEqual(prevMatch.params, newMatch.params));
|
|
569
579
|
})) {
|
|
570
580
|
return false;
|
|
571
581
|
}
|
|
@@ -834,4 +844,19 @@ function isRouteParamsEqual(a, b) {
|
|
|
834
844
|
function isRouteConf(child) {
|
|
835
845
|
return !!child.path && !child.brick;
|
|
836
846
|
}
|
|
847
|
+
|
|
848
|
+
/**
|
|
849
|
+
* Find the first matched route among siblings.
|
|
850
|
+
*
|
|
851
|
+
* Return the match result only if it matches the target route.
|
|
852
|
+
*/
|
|
853
|
+
function matchTargetRoute(route, routes, homepage, pathname) {
|
|
854
|
+
for (const sibling of routes) {
|
|
855
|
+
const match = (0, _matchRoutes.matchRoute)(sibling, homepage, pathname);
|
|
856
|
+
if (match) {
|
|
857
|
+
return sibling === route ? match : null;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
return null;
|
|
861
|
+
}
|
|
837
862
|
//# sourceMappingURL=Renderer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Renderer.js","names":["_loader","require","_cook","_general","_storyboard","_lodash","_checkIf","_computeRealProperties","_resolveData","_computeRealValue","_listenOnTrackingContext","_matchRoutes","_constants","_expandCustomTemplate","_utils","_CustomTemplates","_Runtime","_enums","_getTracks","_isStrictMode","_constants2","_expandFormRenderer","_registerFormRenderer","_evaluate","_matchStoryboard","_bindListeners","_setupRootRuntimeContext","_routeMatchedMap","_ErrorNode","renderRoutes","returnNode","routes","_runtimeContext","rendererContext","parentRoutes","menuRequestReturnNode","slotId","isIncremental","initialTracker","matched","matchRoutes","output","getEmptyRenderOutput","menuRequestNode","return","unauthenticated","_hooks$checkPermissio","route","path","match","runtimeContext","iid","setMatchedRoute","ctxStore","disposeDataInRoutes","routePath","concat","define","context","undefined","pendingPermissionsPreCheck","push","hooks","checkPermissions","preCheckPermissionsForBrickOrRoute","value","asyncComputeRealValue","preLoadBricks","Array","isArray","blockingList","loadBricksImperatively","getBrickPackages","type","redirectTo","redirect","resolved","resolveData","transform","console","error","Error","menuRequest","loadMenu","menu","request","memoizeMenuRequestNode","usedProcessors","strictCollectMemberUsage","size","catchLoad","loadProcessorsImperatively","join","unknownBricks","newOutput","renderBricks","bricks","mergeRenderOutput","appendMenuRequestNode","tplStack","setupRootRuntimeContext","rendered","Promise","all","map","brickConf","renderBrick","Map","forEach","item","legacyRenderBrick","errorBoundary","node","ErrorNode","_hooks$checkPermissio2","brick","template","if","brickIf","permissionsPreCheck","restBrickConf","isGeneralizedTrackAll","dataSource","slots","Object","getOwnPropertySymbols","reduce","acc","symbol","tplStateStoreId","symbolForTplStateStoreId","formStateStoreId","symbolForFormStateStoreId","hasOwnProperty","symbolForTPlExternalForEachItem","forEachItem","forEachIndex","symbolForTPlExternalForEachIndex","forEachSize","symbolForTPlExternalForEachSize","strict","isStrictMode","length","warnAboutStrictMode","asyncCheckBrickIf","brickName","startsWith","ensureValidControlBrick","contextNames","stateNames","getTracks","tracking","lowerLevelRenderControlNode","tracker","trackDataSource","_slots$slot","computedDataSource","trackAfterInitial","propValue","slot","String","childrenToSlots","children","abstractNode","tag","RenderTag","ABSTRACT","childrenOutput","renderForEach","child","renderControlNode","tplStateStoreScope","formStateStoreScope","changedAfterInitial","disposes","listener","rerenderCount","rawOutput","uninitialized","scopedStores","postAsyncRender","dispose","controlledOutput","onMount","onUnmount","lifeCycle","renderId","mounted","disposed","currentRenderId","scopedRuntimeContext","createScopedRuntimeContext","reControlledOutput","listenerFactory","CustomEvent","detail","rerender","reRender","store","mountAsyncData","debouncedListener","debounce","leading","trailing","runtimeBrick","ROOT","contextName","onChange","tplStateStore","getTplStateStore","registerArbitraryLifeCycle","test","customTemplates","get","tplTagName","getTagNameOfCustomTemplate","tplCount","set","includes","customElements","FORM_RENDERER","registerFormRenderer","enqueueStableLoadBricks","formData","confProps","_brickConf$properties","properties","compute","inUseBrick","trackingContextList","asyncPropertyEntries","asyncComputeRealPropertyEntries","computedPropsFromHost","symbolForAsyncComputedPropsFromHost","isScript","props","constructAsyncProperties","src","rel","href","prefix","window","PUBLIC_ROOT","attrs","loadScript","loadStyle","BRICK","events","portal","ref","loadProperties","listenOnTrackingContext","registerBrickLifeCycle","expandedBrickConf","expandCustomTemplate","expandFormRenderer","childRuntimeContext","loadChildren","routeSlotFromIndexToSlotId","entries","childSlotId","slotConf","index","lastOutput","parentRoute","incrementalSubRoutes","performIncrementalRender","location","prevLocation","homepage","app","pathname","matchHomepage","every","prevMatch","newMatch","matchRoute","isRouteParamsEqual","params","clearResolveCache","query","URLSearchParams","search","failed","incrementalOutput","newControlNode","reBailout","result","reCatch","reMergeMenuRequestNodes","routesOutput","mergeSiblingRenderMenuRequest","isTrackAll","isPreEvaluated","getPreEvaluatedRaw","i","flat","getDataStores","tplStateStoreMap","values","formStateStoreMap","stores","flushStableLoadBricks","waitForAll","menuConf","warn","rest","last","sibling","assign","originalSlots","newSlots","process","env","NODE_ENV","sl","isRouteConf","promise","name","unknownPolicy","catch","e","a","b","isEqual","omitNumericKeys","v","k","Number","c","omitBy","d"],"sources":["../../../src/internal/Renderer.ts"],"sourcesContent":["import type {\n BrickConf,\n BrickConfInTemplate,\n ContextConf,\n MenuConf,\n RouteConf,\n RouteConfOfBricks,\n SlotConfOfBricks,\n SlotsConf,\n StaticMenuConf,\n} from \"@next-core/types\";\nimport {\n enqueueStableLoadBricks,\n flushStableLoadBricks,\n loadBricksImperatively,\n loadProcessorsImperatively,\n loadScript,\n loadStyle,\n} from \"@next-core/loader\";\nimport { isTrackAll } from \"@next-core/cook\";\nimport { hasOwnProperty } from \"@next-core/utils/general\";\nimport { strictCollectMemberUsage } from \"@next-core/utils/storyboard\";\nimport { debounce, isEqual, omitBy } from \"lodash\";\nimport { asyncCheckBrickIf } from \"./compute/checkIf.js\";\nimport {\n asyncComputeRealPropertyEntries,\n constructAsyncProperties,\n} from \"./compute/computeRealProperties.js\";\nimport { clearResolveCache, resolveData } from \"./data/resolveData.js\";\nimport { asyncComputeRealValue } from \"./compute/computeRealValue.js\";\nimport {\n TrackingContextItem,\n listenOnTrackingContext,\n trackAfterInitial,\n type InitialTracker,\n} from \"./compute/listenOnTrackingContext.js\";\nimport { RendererContext } from \"./RendererContext.js\";\nimport { matchRoute, matchRoutes } from \"./matchRoutes.js\";\nimport {\n symbolForAsyncComputedPropsFromHost,\n symbolForTPlExternalForEachIndex,\n symbolForTPlExternalForEachItem,\n symbolForTPlExternalForEachSize,\n symbolForTplStateStoreId,\n} from \"./CustomTemplates/constants.js\";\nimport { expandCustomTemplate } from \"./CustomTemplates/expandCustomTemplate.js\";\nimport type {\n MenuRequestNode,\n RenderBrick,\n RenderChildNode,\n RenderAbstract,\n RenderReturnNode,\n RuntimeBrickConfWithSymbols,\n RuntimeContext,\n} from \"./interfaces.js\";\nimport {\n getTagNameOfCustomTemplate,\n getTplStateStore,\n} from \"./CustomTemplates/utils.js\";\nimport { customTemplates } from \"../CustomTemplates.js\";\nimport type { NextHistoryState } from \"./historyExtended.js\";\nimport { getBrickPackages, hooks } from \"./Runtime.js\";\nimport { RenderTag } from \"./enums.js\";\nimport { getTracks } from \"./compute/getTracks.js\";\nimport { isStrictMode, warnAboutStrictMode } from \"../isStrictMode.js\";\nimport {\n FORM_RENDERER,\n RuntimeBrickConfOfFormSymbols,\n symbolForFormStateStoreId,\n} from \"./FormRenderer/constants.js\";\nimport { expandFormRenderer } from \"./FormRenderer/expandFormRenderer.js\";\nimport { registerFormRenderer } from \"./FormRenderer/registerFormRenderer.js\";\nimport { isPreEvaluated } from \"./compute/evaluate.js\";\nimport { getPreEvaluatedRaw } from \"./compute/evaluate.js\";\nimport { RuntimeBrickConfOfTplSymbols } from \"./CustomTemplates/constants.js\";\nimport { matchHomepage } from \"./matchStoryboard.js\";\nimport type { DataStore, DataStoreType } from \"./data/DataStore.js\";\nimport { listenerFactory } from \"./bindListeners.js\";\nimport type { MatchResult } from \"./matchPath.js\";\nimport { setupRootRuntimeContext } from \"./setupRootRuntimeContext.js\";\nimport { setMatchedRoute } from \"./routeMatchedMap.js\";\nimport { ErrorNode } from \"./ErrorNode.js\";\n\nexport interface RenderOutput {\n node?: RenderChildNode;\n unauthenticated?: boolean;\n redirect?: {\n path: string;\n state?: NextHistoryState;\n };\n route?: RouteConf;\n path?: string;\n blockingList: (Promise<unknown> | undefined)[];\n menuRequestNode?: MenuRequestNode;\n}\n\nexport async function renderRoutes(\n returnNode: RenderReturnNode,\n routes: RouteConf[],\n _runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteConf[],\n menuRequestReturnNode: MenuRequestNode,\n slotId?: string,\n isIncremental?: boolean,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n const matched = await matchRoutes(routes, _runtimeContext);\n const output = getEmptyRenderOutput();\n const menuRequestNode: MenuRequestNode = (output.menuRequestNode = {\n return: menuRequestReturnNode,\n });\n switch (matched) {\n case \"missed\":\n break;\n case \"unauthenticated\":\n output.unauthenticated = true;\n break;\n default: {\n const route = (output.route = matched.route);\n output.path = matched.match.path;\n const runtimeContext = {\n ..._runtimeContext,\n match: matched.match,\n };\n\n if (route.iid) {\n setMatchedRoute(route.iid, matched.match);\n }\n\n if (isIncremental) {\n runtimeContext.ctxStore.disposeDataInRoutes(routes);\n }\n const routePath = parentRoutes.concat(route);\n runtimeContext.ctxStore.define(\n route.context,\n runtimeContext,\n undefined,\n routePath\n );\n runtimeContext.pendingPermissionsPreCheck.push(\n hooks?.checkPermissions?.preCheckPermissionsForBrickOrRoute(\n route,\n (value) => asyncComputeRealValue(value, runtimeContext)\n )\n );\n\n // Currently, this is only used for brick size-checking: these bricks\n // will be loaded before page rendering, but they will NOT be rendered.\n const { preLoadBricks } = route as { preLoadBricks?: string[] };\n if (Array.isArray(preLoadBricks)) {\n output.blockingList.push(\n loadBricksImperatively(preLoadBricks, getBrickPackages())\n );\n }\n\n if (route.type === \"redirect\") {\n let redirectTo: unknown;\n if (typeof route.redirect === \"string\") {\n redirectTo = await asyncComputeRealValue(\n route.redirect,\n runtimeContext\n );\n } else {\n const resolved = (await resolveData(\n {\n transform: \"redirect\",\n ...route.redirect,\n },\n runtimeContext\n )) as { redirect?: unknown };\n redirectTo = resolved.redirect;\n }\n if (typeof redirectTo !== \"string\") {\n // eslint-disable-next-line no-console\n console.error(\"Unexpected redirect result:\", redirectTo);\n throw new Error(\n `Unexpected type of redirect result: ${typeof redirectTo}`\n );\n }\n output.redirect = { path: redirectTo };\n } else {\n const menuRequest = loadMenu(route.menu, runtimeContext);\n if (menuRequest) {\n menuRequestNode.request = menuRequest;\n }\n\n if (!isIncremental) {\n rendererContext.memoizeMenuRequestNode(routes, menuRequestNode);\n }\n\n const usedProcessors = strictCollectMemberUsage(\n route.context,\n \"PROCESSORS\",\n 2\n );\n if (usedProcessors.size > 0) {\n output.blockingList.push(\n catchLoad(\n loadProcessorsImperatively(usedProcessors, getBrickPackages()),\n \"processors\",\n [...usedProcessors].join(\", \"),\n rendererContext.unknownBricks\n )\n );\n }\n\n let newOutput: RenderOutput;\n if (route.type === \"routes\") {\n newOutput = await renderRoutes(\n returnNode,\n route.routes,\n runtimeContext,\n rendererContext,\n routePath,\n menuRequestNode,\n slotId,\n undefined,\n initialTracker\n );\n } else {\n newOutput = await renderBricks(\n returnNode,\n route.bricks,\n runtimeContext,\n rendererContext,\n routePath,\n menuRequestNode,\n slotId,\n undefined,\n initialTracker\n );\n }\n\n mergeRenderOutput(output, newOutput);\n appendMenuRequestNode(menuRequestNode, newOutput.menuRequestNode);\n }\n }\n }\n\n return output;\n}\n\nexport async function renderBricks(\n returnNode: RenderReturnNode,\n bricks: BrickConf[],\n runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteConf[],\n menuRequestReturnNode: MenuRequestNode,\n slotId?: string,\n tplStack?: Map<string, number>,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n setupRootRuntimeContext(bricks, runtimeContext, true);\n const output = getEmptyRenderOutput();\n // 多个构件并行异步转换,但转换的结果按原顺序串行合并。\n const rendered = await Promise.all(\n bricks.map((brickConf) =>\n renderBrick(\n returnNode,\n brickConf,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n );\n\n rendered.forEach((item) => {\n mergeRenderOutput(output, item);\n });\n\n return output;\n}\n\nexport async function renderBrick(\n returnNode: RenderReturnNode,\n brickConf: RuntimeBrickConfWithSymbols,\n _runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteConf[],\n menuRequestReturnNode: MenuRequestNode,\n slotId?: string,\n tplStack = new Map<string, number>(),\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n try {\n return await legacyRenderBrick(\n returnNode,\n brickConf,\n _runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n initialTracker\n );\n } catch (error) {\n if (brickConf.errorBoundary) {\n // eslint-disable-next-line no-console\n console.error(\"Error caught by error boundary:\", error);\n return {\n node: await ErrorNode(error, returnNode),\n blockingList: [],\n };\n } else {\n throw error;\n }\n }\n}\n\nasync function legacyRenderBrick(\n returnNode: RenderReturnNode,\n brickConf: RuntimeBrickConfWithSymbols,\n _runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteConf[],\n menuRequestReturnNode: MenuRequestNode,\n slotId: string | undefined,\n tplStack: Map<string, number>,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n const output = getEmptyRenderOutput();\n\n if (!brickConf.brick) {\n if ((brickConf as { template?: string }).template) {\n // eslint-disable-next-line no-console\n console.error(\"Legacy templates are dropped in v3:\", brickConf);\n } else {\n // eslint-disable-next-line no-console\n console.error(\"Invalid brick:\", brickConf);\n }\n return output;\n }\n\n // Translate `if: \"<%= ... %>\"` to `brick: \":if\", dataSource: \"<%= ... %>\"`.\n // In other words, translate tracking if expressions to tracking control nodes of `:if`.\n const { if: brickIf, permissionsPreCheck, ...restBrickConf } = brickConf;\n if (isGeneralizedTrackAll(brickIf)) {\n return renderBrick(\n returnNode,\n {\n brick: \":if\",\n iid: brickConf.iid,\n dataSource: brickIf,\n // `permissionsPreCheck` maybe required before computing `if`.\n permissionsPreCheck,\n slots: {\n \"\": {\n type: \"bricks\",\n bricks: [restBrickConf],\n },\n },\n // These symbols have to be copied to the new brick conf.\n ...Object.getOwnPropertySymbols(brickConf).reduce(\n (acc, symbol) => ({\n ...acc,\n [symbol]: brickConf[symbol as typeof symbolForTplStateStoreId],\n }),\n {} as RuntimeBrickConfOfTplSymbols & RuntimeBrickConfOfFormSymbols\n ),\n },\n _runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n initialTracker\n );\n }\n\n const tplStateStoreId = brickConf[symbolForTplStateStoreId];\n const formStateStoreId = brickConf[symbolForFormStateStoreId];\n const runtimeContext = {\n ..._runtimeContext,\n tplStateStoreId,\n formStateStoreId,\n };\n\n if (hasOwnProperty(brickConf, symbolForTPlExternalForEachItem)) {\n // The external bricks of a template should restore their `forEach*` from their host.\n runtimeContext.forEachItem = brickConf[symbolForTPlExternalForEachItem];\n runtimeContext.forEachIndex = brickConf[symbolForTPlExternalForEachIndex];\n runtimeContext.forEachSize = brickConf[symbolForTPlExternalForEachSize];\n }\n\n const strict = isStrictMode(runtimeContext);\n const { context } = brickConf as { context?: ContextConf[] };\n // istanbul ignore next\n if (Array.isArray(context) && context.length > 0) {\n warnAboutStrictMode(\n strict,\n \"Defining context on bricks\",\n \"check your brick:\",\n brickConf\n );\n if (!strict) {\n runtimeContext.ctxStore.define(context, runtimeContext);\n }\n }\n\n runtimeContext.pendingPermissionsPreCheck.push(\n hooks?.checkPermissions?.preCheckPermissionsForBrickOrRoute(\n brickConf,\n (value) => asyncComputeRealValue(value, runtimeContext)\n )\n );\n\n if (!(await asyncCheckBrickIf(brickConf, runtimeContext))) {\n return output;\n }\n\n const brickName = brickConf.brick;\n if (brickName.startsWith(\":\")) {\n ensureValidControlBrick(brickName);\n\n const { dataSource } = brickConf;\n const { contextNames, stateNames } = getTracks(dataSource);\n const tracking = !!(contextNames || stateNames);\n\n const lowerLevelRenderControlNode = async (\n runtimeContext: RuntimeContext,\n tracker: InitialTracker,\n trackDataSource: boolean\n ) => {\n // First, compute the `dataSource`\n const computedDataSource = await asyncComputeRealValue(\n dataSource,\n runtimeContext\n );\n\n if (trackDataSource) {\n trackAfterInitial(\n runtimeContext,\n [{ contextNames, stateNames, propValue: dataSource }],\n tracker\n );\n }\n\n // Then, get the matched slot.\n const slot =\n brickName === \":forEach\"\n ? \"\"\n : brickName === \":switch\"\n ? String(computedDataSource)\n : computedDataSource\n ? \"\"\n : \"else\";\n\n // Don't forget to transpile children to slots.\n const slots = childrenToSlots(brickConf.children, brickConf.slots);\n\n // Then, get the bricks in that matched slot.\n const bricks =\n slots &&\n hasOwnProperty(slots, slot) &&\n (slots[slot] as SlotConfOfBricks)?.bricks;\n\n const output = getEmptyRenderOutput();\n const abstractNode: RenderAbstract = {\n tag: RenderTag.ABSTRACT,\n return: returnNode,\n iid: brickConf.iid,\n };\n output.node = abstractNode;\n\n if (!Array.isArray(bricks)) {\n return output;\n }\n\n let childrenOutput: RenderOutput | undefined;\n\n switch (brickName) {\n case \":forEach\": {\n if (!Array.isArray(computedDataSource)) {\n break;\n }\n childrenOutput = await renderForEach(\n abstractNode,\n computedDataSource,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n tracker\n );\n break;\n }\n case \":if\":\n case \":switch\": {\n childrenOutput = await renderBricks(\n abstractNode,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n tracker\n );\n }\n }\n\n if (childrenOutput) {\n abstractNode.child = childrenOutput.node;\n mergeRenderOutput(output, { ...childrenOutput, node: undefined });\n }\n\n return output;\n };\n\n type RenderControlNodeOptions =\n | {\n type: \"initial\";\n runtimeContext: RuntimeContext;\n tplStateStoreScope?: undefined;\n formStateStoreScope?: undefined;\n }\n | {\n type: \"rerender\";\n runtimeContext: RuntimeContext;\n tplStateStoreScope: DataStore<\"STATE\">[];\n formStateStoreScope: DataStore<\"FORM_STATE\">[];\n };\n\n const renderControlNode = async ({\n type,\n runtimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n }: RenderControlNodeOptions) => {\n let changedAfterInitial = false;\n const tracker: InitialTracker = {\n disposes: [],\n listener: () => {\n changedAfterInitial = true;\n },\n };\n let rerenderCount = 0;\n let rawOutput: RenderOutput;\n let uninitialized = true;\n\n // When perform an incremental sub-route render, for control nodes,\n // context maybe changed just after their data source being computed,\n // as well as props of their children bricks being computed, and before\n // bricks being mounted. Thus these changes may not take any effects.\n // So we need to track the context changes after the initial render,\n // and perform re-renders for these control nodes if necessary.\n while (uninitialized || changedAfterInitial) {\n changedAfterInitial = false;\n rawOutput = await lowerLevelRenderControlNode(\n runtimeContext,\n tracker,\n uninitialized && type === \"initial\"\n );\n\n // Changes may happen during `postAsyncRender`.\n if (!changedAfterInitial && type === \"rerender\") {\n const scopedStores = [...tplStateStoreScope, ...formStateStoreScope];\n await postAsyncRender(rawOutput, runtimeContext, [\n runtimeContext.ctxStore,\n ...scopedStores,\n ]);\n }\n\n tracker.disposes.forEach((dispose) => dispose());\n tracker.disposes.length = 0;\n uninitialized = false;\n // istanbul ignore next\n if (++rerenderCount > 10) {\n throw new Error(\n `Maximum rerender stack overflowed (iid: ${brickConf.iid})`\n );\n }\n }\n\n return rawOutput!;\n };\n\n let controlledOutput = await renderControlNode({\n type: \"initial\",\n runtimeContext,\n });\n const { onMount, onUnmount } = brickConf.lifeCycle ?? {};\n\n if (tracking) {\n let renderId = 0;\n const listener = async () => {\n // TODO(steve): start listeners when mounting, and handle changes between rendering and mounting.\n if (!returnNode.mounted || returnNode.disposed) {\n return;\n }\n\n const currentRenderId = ++renderId;\n const [scopedRuntimeContext, tplStateStoreScope, formStateStoreScope] =\n createScopedRuntimeContext(runtimeContext);\n\n const reControlledOutput = await renderControlNode({\n type: \"rerender\",\n runtimeContext: scopedRuntimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n });\n\n // Ignore stale renders\n if (\n renderId === currentRenderId &&\n returnNode.mounted &&\n !returnNode.disposed\n ) {\n if (onUnmount) {\n listenerFactory(\n onUnmount,\n runtimeContext\n )(new CustomEvent(\"unmount\", { detail: { rerender: true } }));\n }\n\n rendererContext.reRender(\n returnNode,\n reControlledOutput.node!,\n controlledOutput.node!\n );\n controlledOutput = reControlledOutput;\n\n if (onMount) {\n listenerFactory(\n onMount,\n scopedRuntimeContext\n )(new CustomEvent(\"mount\", { detail: { rerender: true } }));\n }\n\n for (const store of [...tplStateStoreScope, ...formStateStoreScope]) {\n store.mountAsyncData();\n }\n }\n };\n // Enable leading invocation, to keep tracking orders.\n const debouncedListener = debounce(listener, 0, {\n leading: true,\n trailing: true,\n });\n const runtimeBrick =\n returnNode.tag === RenderTag.ROOT ? null : returnNode;\n const disposes = runtimeBrick ? (runtimeBrick.disposes ??= []) : [];\n if (contextNames) {\n for (const contextName of contextNames) {\n disposes.push(\n runtimeContext.ctxStore.onChange(contextName, debouncedListener)\n );\n }\n }\n if (stateNames) {\n for (const contextName of stateNames) {\n const tplStateStore = getTplStateStore(\n runtimeContext,\n \"STATE\",\n `: \"${dataSource}\"`\n );\n disposes.push(tplStateStore.onChange(contextName, debouncedListener));\n }\n }\n }\n\n if (onMount) {\n rendererContext.registerArbitraryLifeCycle(\"onMount\", () => {\n listenerFactory(\n onMount,\n runtimeContext\n )(new CustomEvent(\"mount\", { detail: { rerender: false } }));\n });\n }\n\n if (onUnmount) {\n rendererContext.registerArbitraryLifeCycle(\"onUnmount\", () => {\n listenerFactory(\n onUnmount,\n runtimeContext\n )(new CustomEvent(\"unmount\", { detail: { rerender: false } }));\n });\n }\n\n return controlledOutput;\n }\n\n // Widgets need to be defined before rendering.\n if (/\\.tpl-/.test(brickName) && !customTemplates.get(brickName)) {\n await catchLoad(\n loadBricksImperatively([brickName], getBrickPackages()),\n \"brick\",\n brickName,\n rendererContext.unknownBricks\n );\n }\n\n const tplTagName = getTagNameOfCustomTemplate(brickName, runtimeContext);\n\n if (tplTagName) {\n const tplCount = tplStack.get(tplTagName) ?? 0;\n if (tplCount >= 10) {\n throw new Error(\n `Maximum custom template stack overflowed: \"${tplTagName}\"`\n );\n }\n tplStack.set(tplTagName, tplCount + 1);\n } else if (brickName.includes(\"-\") && !customElements.get(brickName)) {\n if (brickName === FORM_RENDERER) {\n registerFormRenderer();\n } else {\n output.blockingList.push(\n catchLoad(\n enqueueStableLoadBricks([brickName], getBrickPackages()),\n \"brick\",\n brickName,\n rendererContext.unknownBricks\n )\n );\n }\n }\n\n let formData: unknown;\n let confProps: Record<string, unknown> | undefined;\n if (brickName === FORM_RENDERER) {\n ({ formData, ...confProps } = brickConf.properties ?? {});\n\n if (brickConf.properties?.compute) {\n formData = await asyncComputeRealValue(formData, runtimeContext);\n }\n } else {\n if (runtimeContext.inUseBrick) {\n // Keep v2 behavior for `useBrick`: treat `transform` as `properties`.\n const transform = (brickConf as { transform?: Record<string, unknown> })\n .transform;\n if (transform) {\n warnAboutStrictMode(\n strict,\n \"`useBrick.transform`\",\n 'please use \"properties\" instead, check your useBrick:',\n brickConf\n );\n\n if (!strict) {\n confProps = {\n ...brickConf.properties,\n ...transform,\n };\n }\n }\n }\n confProps ??= brickConf.properties;\n }\n\n const trackingContextList: TrackingContextItem[] = [];\n const asyncPropertyEntries = asyncComputeRealPropertyEntries(\n confProps,\n runtimeContext,\n trackingContextList\n );\n\n const computedPropsFromHost = brickConf[symbolForAsyncComputedPropsFromHost];\n if (computedPropsFromHost) {\n asyncPropertyEntries.push(...computedPropsFromHost);\n }\n\n const isScript = brickName === \"script\";\n if (isScript || brickName === \"link\") {\n const props = await constructAsyncProperties(asyncPropertyEntries);\n if (isScript ? props.src : props.rel === \"stylesheet\" && props.href) {\n const prefix = window.PUBLIC_ROOT ?? \"\";\n if (isScript) {\n const { src, ...attrs } = props;\n await catchLoad(\n loadScript(src as string, prefix, attrs),\n \"script\",\n src as string,\n \"silent\"\n );\n } else {\n const { href, ...attrs } = props;\n await catchLoad(\n loadStyle(href as string, prefix, attrs),\n \"stylesheet\",\n href as string,\n \"silent\"\n );\n }\n return output;\n }\n }\n\n const brick: RenderBrick = {\n tag: RenderTag.BRICK,\n type: tplTagName || brickName,\n return: returnNode,\n slotId,\n events: brickConf.events,\n runtimeContext,\n portal: brickConf.portal,\n iid: brickConf.iid,\n ref: (brickConf as BrickConfInTemplate).ref,\n };\n\n output.node = brick;\n\n // 在最终挂载前,先加载所有可能用到的 processors。\n const usedProcessors = strictCollectMemberUsage(\n [brickConf.events, brickConf.lifeCycle],\n \"PROCESSORS\",\n 2\n );\n if (usedProcessors.size > 0) {\n output.blockingList.push(\n catchLoad(\n loadProcessorsImperatively(usedProcessors, getBrickPackages()),\n \"processors\",\n [...usedProcessors].join(\", \"),\n rendererContext.unknownBricks\n )\n );\n }\n\n // 加载构件属性和加载子构件等任务,可以并行。\n const blockingList: Promise<unknown>[] = [];\n\n // Note: properties here has already been initialized.\n trackAfterInitial(runtimeContext, trackingContextList, initialTracker);\n\n const loadProperties = async () => {\n brick.properties = await constructAsyncProperties(asyncPropertyEntries);\n listenOnTrackingContext(brick, trackingContextList);\n };\n blockingList.push(loadProperties());\n\n rendererContext.registerBrickLifeCycle(brick, brickConf.lifeCycle);\n\n let expandedBrickConf = brickConf;\n if (tplTagName) {\n expandedBrickConf = expandCustomTemplate(\n tplTagName,\n brickConf,\n brick,\n asyncPropertyEntries,\n rendererContext\n );\n } else if (brickName === FORM_RENDERER) {\n expandedBrickConf = expandFormRenderer(\n formData,\n brickConf,\n brick,\n asyncPropertyEntries,\n rendererContext\n );\n }\n\n if (expandedBrickConf.portal) {\n // A portal brick has no slotId.\n brick.slotId = undefined;\n }\n\n let childRuntimeContext: RuntimeContext;\n if (tplTagName) {\n // There is a boundary for `forEachItem` between template internals and externals.\n childRuntimeContext = {\n ...runtimeContext,\n };\n delete childRuntimeContext.forEachItem;\n delete childRuntimeContext.forEachIndex;\n delete childRuntimeContext.forEachSize;\n } else {\n childRuntimeContext = runtimeContext;\n }\n\n const loadChildren = async () => {\n const slots = childrenToSlots(\n expandedBrickConf.children,\n expandedBrickConf.slots\n );\n if (!slots) {\n return;\n }\n const routeSlotFromIndexToSlotId = new Map<number, string>();\n const rendered = await Promise.all(\n Object.entries(slots).map(async ([childSlotId, slotConf], index) => {\n if (slotConf.type !== \"routes\") {\n return renderBricks(\n brick,\n (slotConf as SlotConfOfBricks).bricks,\n childRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n tplStack,\n initialTracker\n );\n }\n\n let lastOutput = getEmptyRenderOutput();\n const abstractNode: RenderAbstract = {\n tag: RenderTag.ABSTRACT,\n return: brick,\n };\n lastOutput.node = abstractNode;\n\n const parentRoute = parentRoutes[parentRoutes.length - 1] as\n | RouteConfOfBricks\n | undefined;\n if (parentRoute?.incrementalSubRoutes) {\n routeSlotFromIndexToSlotId.set(index, childSlotId);\n rendererContext.performIncrementalRender(\n slotConf,\n parentRoutes,\n async (location, prevLocation) => {\n const { homepage } = childRuntimeContext.app;\n const { pathname } = location;\n // Ignore if any one of homepage and parent routes not matched.\n if (\n !matchHomepage(homepage, pathname) ||\n !parentRoutes.every((route) => {\n let prevMatch: MatchResult | null;\n let newMatch: MatchResult | null;\n return (\n (prevMatch = matchRoute(\n route,\n homepage,\n prevLocation.pathname\n )) &&\n (newMatch = matchRoute(route, homepage, pathname)) &&\n (route !== parentRoute ||\n isRouteParamsEqual(prevMatch.params, newMatch.params))\n );\n })\n ) {\n return false;\n }\n\n clearResolveCache();\n\n const [\n scopedRuntimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n ] = createScopedRuntimeContext({\n ...childRuntimeContext,\n location,\n query: new URLSearchParams(location.search),\n });\n\n let failed = false;\n let incrementalOutput: RenderOutput;\n let scopedStores: DataStore<\"STATE\" | \"FORM_STATE\">[] = [];\n\n const newOutput = getEmptyRenderOutput();\n const newControlNode: RenderAbstract = {\n tag: RenderTag.ABSTRACT,\n return: brick,\n };\n newOutput.node = newControlNode;\n\n try {\n incrementalOutput = await renderRoutes(\n newControlNode,\n slotConf.routes,\n scopedRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n true\n );\n\n // Do not ignore incremental rendering even if all sub-routes are missed.\n // Since parent route is matched.\n if (incrementalOutput.route) {\n // Bailout if redirect or unauthenticated is set\n if (rendererContext.reBailout(incrementalOutput)) {\n return true;\n }\n\n scopedStores = [\n ...tplStateStoreScope,\n ...formStateStoreScope,\n ];\n await postAsyncRender(\n incrementalOutput,\n scopedRuntimeContext,\n [scopedRuntimeContext.ctxStore, ...scopedStores]\n );\n }\n } catch (error) {\n // eslint-disable-next-line no-console\n console.error(\"Incremental sub-router failed:\", error);\n\n const result = await rendererContext.reCatch(\n error,\n newControlNode\n );\n if (!result) {\n return true;\n }\n ({ failed, output: incrementalOutput } = result);\n }\n\n // istanbul ignore next: covered by e2e tests\n if (brick.disposed) {\n return true;\n }\n\n newControlNode.child = incrementalOutput.node;\n mergeRenderOutput(newOutput, {\n ...incrementalOutput,\n node: undefined,\n });\n // Assert: no errors will be throw\n await rendererContext.reMergeMenuRequestNodes(\n menuRequestReturnNode,\n slotConf.routes,\n incrementalOutput.menuRequestNode\n );\n\n rendererContext.reRender(brick, newControlNode, lastOutput.node!);\n\n lastOutput = newOutput;\n\n if (!failed) {\n scopedRuntimeContext.ctxStore.mountAsyncData(\n incrementalOutput.route\n );\n for (const store of scopedStores) {\n store.mountAsyncData();\n }\n }\n\n // Even if all sub-routes missed, treat the incremental rendering as performed.\n return true;\n }\n );\n }\n\n const routesOutput = await renderRoutes(\n abstractNode,\n slotConf.routes,\n childRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n undefined,\n initialTracker\n );\n\n abstractNode.child = routesOutput.node;\n mergeRenderOutput(output, { ...routesOutput, node: undefined });\n appendMenuRequestNode(\n menuRequestReturnNode,\n (output.menuRequestNode = routesOutput.menuRequestNode)\n );\n\n return lastOutput;\n })\n );\n\n const childrenOutput: RenderOutput = {\n ...output,\n node: undefined,\n blockingList: [],\n menuRequestNode: undefined,\n };\n rendered.forEach((item) => {\n mergeRenderOutput(childrenOutput, item);\n mergeSiblingRenderMenuRequest(childrenOutput, item);\n });\n if (childrenOutput.node) {\n brick.child = childrenOutput.node;\n }\n mergeRenderOutput(output, {\n ...childrenOutput,\n node: undefined,\n });\n\n appendMenuRequestNode(\n menuRequestReturnNode,\n (output.menuRequestNode = childrenOutput.menuRequestNode)\n );\n };\n blockingList.push(loadChildren());\n\n await Promise.all(blockingList);\n\n return output;\n}\n\nfunction isGeneralizedTrackAll(brickIf: unknown): boolean {\n return typeof brickIf === \"string\"\n ? isTrackAll(brickIf)\n : isPreEvaluated(brickIf) &&\n // istanbul ignore next: covered by e2e tests\n isTrackAll(getPreEvaluatedRaw(brickIf));\n}\n\ntype ValidControlBrick = \":forEach\" | \":if\" | \":switch\";\n\nfunction ensureValidControlBrick(\n brick: string\n): asserts brick is ValidControlBrick {\n if (brick !== \":forEach\" && brick !== \":if\" && brick !== \":switch\") {\n throw new Error(`Unknown storyboard control node: \"${brick}\"`);\n }\n}\n\nasync function renderForEach(\n returnNode: RenderReturnNode,\n dataSource: unknown[],\n bricks: BrickConf[],\n runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteConf[],\n menuRequestReturnNode: MenuRequestNode,\n slotId: string | undefined,\n tplStack: Map<string, number>,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n const output = getEmptyRenderOutput();\n\n const size = dataSource.length;\n const rendered = await Promise.all(\n dataSource.map((item, i) =>\n Promise.all(\n bricks.map((brickConf) =>\n renderBrick(\n returnNode,\n brickConf,\n {\n ...runtimeContext,\n forEachItem: item,\n forEachIndex: i,\n forEachSize: size,\n },\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n )\n )\n );\n\n // 多层构件并行异步转换,但转换的结果按原顺序串行合并。\n rendered.flat().forEach((item) => {\n mergeRenderOutput(output, item);\n });\n\n return output;\n}\n\nexport function getDataStores(runtimeContext: RuntimeContext) {\n return [\n runtimeContext.ctxStore,\n ...runtimeContext.tplStateStoreMap.values(),\n ...runtimeContext.formStateStoreMap.values(),\n ];\n}\n\nexport function postAsyncRender(\n output: RenderOutput,\n runtimeContext: RuntimeContext,\n stores: DataStore<DataStoreType>[]\n) {\n flushStableLoadBricks();\n\n return Promise.all([\n ...output.blockingList,\n ...stores.map((store) => store.waitForAll()),\n ...runtimeContext.pendingPermissionsPreCheck,\n ]);\n}\n\nexport function createScopedRuntimeContext(\n runtimeContext: RuntimeContext\n): [\n scopedRuntimeContext: RuntimeContext,\n tplStateStoreScope: DataStore<\"STATE\">[],\n formStateStoreScope: DataStore<\"FORM_STATE\">[],\n] {\n const tplStateStoreScope: DataStore<\"STATE\">[] = [];\n const formStateStoreScope: DataStore<\"FORM_STATE\">[] = [];\n const scopedRuntimeContext: RuntimeContext = {\n ...runtimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n };\n return [scopedRuntimeContext, tplStateStoreScope, formStateStoreScope];\n}\n\nfunction loadMenu(\n menuConf: MenuConf | undefined,\n runtimeContext: RuntimeContext\n) {\n if (!menuConf) {\n return;\n }\n\n // istanbul ignore next\n if ((menuConf as { type?: \"brick\" }).type === \"brick\") {\n // eslint-disable-next-line no-console\n console.error(\"Set menu with brick is dropped in v3:\", menuConf);\n throw new Error(\"Set menu with brick is dropped in v3\");\n }\n\n // istanbul ignore next\n if (menuConf.type === \"resolve\") {\n // eslint-disable-next-line no-console\n console.warn(\"Set menu with resolve is not supported in v3 yet:\", menuConf);\n return;\n }\n\n return asyncComputeRealValue(\n menuConf,\n runtimeContext\n ) as Promise<StaticMenuConf>;\n}\n\nfunction mergeRenderOutput(\n output: RenderOutput,\n newOutput: RenderOutput\n): void {\n const { blockingList, node, menuRequestNode, ...rest } = newOutput;\n output.blockingList.push(...blockingList);\n\n if (node) {\n if (output.node) {\n let last = output.node;\n while (last.sibling) {\n last = last.sibling;\n }\n last.sibling = node;\n } else {\n output.node = node;\n }\n }\n\n Object.assign(output, rest);\n}\n\nfunction mergeSiblingRenderMenuRequest(\n output: RenderOutput,\n newOutput: RenderOutput\n) {\n const menuRequestNode = newOutput.menuRequestNode;\n if (menuRequestNode) {\n if (output.menuRequestNode) {\n let last = output.menuRequestNode;\n while (last.sibling) {\n last = last.sibling;\n }\n last.sibling = menuRequestNode;\n } else {\n output.menuRequestNode = menuRequestNode;\n }\n }\n}\n\nfunction appendMenuRequestNode(\n menuRequestReturnNode: MenuRequestNode,\n menuRequestNode: MenuRequestNode | undefined\n) {\n if (!menuRequestNode) {\n return;\n }\n if (menuRequestReturnNode.child) {\n let last = menuRequestReturnNode.child;\n while (last.sibling) {\n last = last.sibling;\n }\n last.sibling = menuRequestNode;\n } else {\n menuRequestReturnNode.child = menuRequestNode;\n }\n}\n\nfunction getEmptyRenderOutput(): RenderOutput {\n return { blockingList: [] };\n}\n\nexport function childrenToSlots(\n children: (BrickConf | RouteConf)[] | undefined,\n originalSlots: SlotsConf | undefined\n) {\n let newSlots = originalSlots;\n // istanbul ignore next\n if (\n process.env.NODE_ENV === \"development\" &&\n children &&\n !Array.isArray(children)\n ) {\n // eslint-disable-next-line no-console\n console.warn(\n \"Specified brick children but not array:\",\n `<${typeof children}>`,\n children\n );\n }\n if (Array.isArray(children) && !newSlots) {\n newSlots = {};\n for (const { slot: sl, ...child } of children) {\n const slot = sl ?? \"\";\n const type = isRouteConf(child) ? \"routes\" : \"bricks\";\n if (hasOwnProperty(newSlots, slot)) {\n const slotConf = newSlots[slot];\n if (slotConf.type !== type) {\n throw new Error(`Slot \"${slot}\" conflict between bricks and routes.`);\n }\n (slotConf as SlotConfOfBricks)[type as \"bricks\"].push(\n child as BrickConf\n );\n } else {\n newSlots[slot] = {\n type: type as \"bricks\",\n [type as \"bricks\"]: [child as BrickConf],\n };\n }\n }\n }\n return newSlots;\n}\n\nfunction catchLoad(\n promise: Promise<unknown>,\n type: \"brick\" | \"processors\" | \"script\" | \"stylesheet\",\n name: string,\n unknownPolicy: RendererContext[\"unknownBricks\"]\n) {\n return unknownPolicy === \"silent\"\n ? promise.catch((e) => {\n // eslint-disable-next-line no-console\n console.error(`Load %s \"%s\" failed:`, type, name, e);\n })\n : promise;\n}\n\nfunction isRouteParamsEqual(\n a: Record<string, string>,\n b: Record<string, string>\n) {\n if (isEqual(a, b)) {\n return true;\n }\n const omitNumericKeys = (v: unknown, k: string) => {\n return String(Number(k)) === k;\n };\n const c = omitBy(a, omitNumericKeys);\n const d = omitBy(b, omitNumericKeys);\n return isEqual(c, d);\n}\n\nfunction isRouteConf(child: BrickConf | RouteConf): child is RouteConf {\n return !!(child as RouteConf).path && !(child as BrickConf).brick;\n}\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"Renderer.js","names":["_loader","require","_cook","_general","_storyboard","_lodash","_checkIf","_computeRealProperties","_resolveData","_computeRealValue","_listenOnTrackingContext","_matchRoutes","_constants","_expandCustomTemplate","_utils","_CustomTemplates","_Runtime","_enums","_getTracks","_isStrictMode","_constants2","_expandFormRenderer","_registerFormRenderer","_evaluate","_matchStoryboard","_bindListeners","_setupRootRuntimeContext","_routeMatchedMap","_ErrorNode","renderRoutes","returnNode","routes","_runtimeContext","rendererContext","parentRoutes","menuRequestReturnNode","slotId","isIncremental","initialTracker","matched","matchRoutes","output","getEmptyRenderOutput","menuRequestNode","return","unauthenticated","_hooks$checkPermissio","route","path","match","runtimeContext","iid","setMatchedRoute","ctxStore","disposeDataInRoutes","routePath","concat","define","context","undefined","pendingPermissionsPreCheck","push","hooks","checkPermissions","preCheckPermissionsForBrickOrRoute","value","asyncComputeRealValue","preLoadBricks","Array","isArray","blockingList","loadBricksImperatively","getBrickPackages","type","redirectTo","redirect","resolved","resolveData","transform","console","error","Error","menuRequest","loadMenu","menu","request","memoizeMenuRequestNode","usedProcessors","strictCollectMemberUsage","size","catchLoad","loadProcessorsImperatively","join","unknownBricks","newOutput","renderBricks","bricks","mergeRenderOutput","appendMenuRequestNode","tplStack","setupRootRuntimeContext","rendered","Promise","all","map","brickConf","renderBrick","Map","forEach","item","legacyRenderBrick","errorBoundary","node","ErrorNode","_hooks$checkPermissio2","brick","template","if","brickIf","permissionsPreCheck","restBrickConf","isGeneralizedTrackAll","dataSource","slots","Object","getOwnPropertySymbols","reduce","acc","symbol","tplStateStoreId","symbolForTplStateStoreId","formStateStoreId","symbolForFormStateStoreId","hasOwnProperty","symbolForTPlExternalForEachItem","forEachItem","forEachIndex","symbolForTPlExternalForEachIndex","forEachSize","symbolForTPlExternalForEachSize","strict","isStrictMode","length","warnAboutStrictMode","asyncCheckBrickIf","brickName","startsWith","ensureValidControlBrick","contextNames","stateNames","getTracks","tracking","lowerLevelRenderControlNode","tracker","trackDataSource","_slots$slot","computedDataSource","trackAfterInitial","propValue","slot","String","childrenToSlots","children","abstractNode","tag","RenderTag","ABSTRACT","childrenOutput","renderForEach","child","renderControlNode","tplStateStoreScope","formStateStoreScope","changedAfterInitial","disposes","listener","rerenderCount","rawOutput","uninitialized","scopedStores","postAsyncRender","dispose","controlledOutput","onMount","onUnmount","lifeCycle","renderId","mounted","disposed","currentRenderId","scopedRuntimeContext","createScopedRuntimeContext","reControlledOutput","listenerFactory","CustomEvent","detail","rerender","reRender","store","mountAsyncData","debouncedListener","debounce","leading","trailing","runtimeBrick","ROOT","contextName","onChange","tplStateStore","getTplStateStore","registerArbitraryLifeCycle","test","customTemplates","get","tplTagName","getTagNameOfCustomTemplate","tplCount","set","includes","customElements","FORM_RENDERER","registerFormRenderer","enqueueStableLoadBricks","formData","confProps","_brickConf$properties","properties","compute","inUseBrick","trackingContextList","asyncPropertyEntries","asyncComputeRealPropertyEntries","computedPropsFromHost","symbolForAsyncComputedPropsFromHost","isScript","props","constructAsyncProperties","src","rel","href","prefix","window","PUBLIC_ROOT","attrs","loadScript","loadStyle","BRICK","events","portal","ref","loadProperties","listenOnTrackingContext","registerBrickLifeCycle","expandedBrickConf","expandCustomTemplate","expandFormRenderer","childRuntimeContext","loadChildren","routeSlotFromIndexToSlotId","entries","childSlotId","slotConf","index","lastOutput","parentRoute","incrementalSubRoutes","performIncrementalRender","location","prevLocation","homepage","app","pathname","matchHomepage","every","prevMatch","newMatch","matchTargetRoute","isRouteParamsEqual","params","clearResolveCache","query","URLSearchParams","search","failed","incrementalOutput","newControlNode","reBailout","result","reCatch","reMergeMenuRequestNodes","routesOutput","mergeSiblingRenderMenuRequest","isTrackAll","isPreEvaluated","getPreEvaluatedRaw","i","flat","getDataStores","tplStateStoreMap","values","formStateStoreMap","stores","flushStableLoadBricks","waitForAll","menuConf","warn","rest","last","sibling","assign","originalSlots","newSlots","process","env","NODE_ENV","sl","isRouteConf","promise","name","unknownPolicy","catch","e","a","b","isEqual","omitNumericKeys","v","k","Number","c","omitBy","d","matchRoute"],"sources":["../../../src/internal/Renderer.ts"],"sourcesContent":["import type {\n BrickConf,\n BrickConfInTemplate,\n ContextConf,\n MenuConf,\n RouteConf,\n RouteConfOfBricks,\n SlotConfOfBricks,\n SlotsConf,\n StaticMenuConf,\n} from \"@next-core/types\";\nimport {\n enqueueStableLoadBricks,\n flushStableLoadBricks,\n loadBricksImperatively,\n loadProcessorsImperatively,\n loadScript,\n loadStyle,\n} from \"@next-core/loader\";\nimport { isTrackAll } from \"@next-core/cook\";\nimport { hasOwnProperty } from \"@next-core/utils/general\";\nimport { strictCollectMemberUsage } from \"@next-core/utils/storyboard\";\nimport { debounce, isEqual, omitBy } from \"lodash\";\nimport { asyncCheckBrickIf } from \"./compute/checkIf.js\";\nimport {\n asyncComputeRealPropertyEntries,\n constructAsyncProperties,\n} from \"./compute/computeRealProperties.js\";\nimport { clearResolveCache, resolveData } from \"./data/resolveData.js\";\nimport { asyncComputeRealValue } from \"./compute/computeRealValue.js\";\nimport {\n TrackingContextItem,\n listenOnTrackingContext,\n trackAfterInitial,\n type InitialTracker,\n} from \"./compute/listenOnTrackingContext.js\";\nimport { RendererContext } from \"./RendererContext.js\";\nimport { matchRoute, matchRoutes } from \"./matchRoutes.js\";\nimport {\n symbolForAsyncComputedPropsFromHost,\n symbolForTPlExternalForEachIndex,\n symbolForTPlExternalForEachItem,\n symbolForTPlExternalForEachSize,\n symbolForTplStateStoreId,\n} from \"./CustomTemplates/constants.js\";\nimport { expandCustomTemplate } from \"./CustomTemplates/expandCustomTemplate.js\";\nimport type {\n MenuRequestNode,\n RenderBrick,\n RenderChildNode,\n RenderAbstract,\n RenderReturnNode,\n RuntimeBrickConfWithSymbols,\n RuntimeContext,\n RouteNode,\n} from \"./interfaces.js\";\nimport {\n getTagNameOfCustomTemplate,\n getTplStateStore,\n} from \"./CustomTemplates/utils.js\";\nimport { customTemplates } from \"../CustomTemplates.js\";\nimport type { NextHistoryState } from \"./historyExtended.js\";\nimport { getBrickPackages, hooks } from \"./Runtime.js\";\nimport { RenderTag } from \"./enums.js\";\nimport { getTracks } from \"./compute/getTracks.js\";\nimport { isStrictMode, warnAboutStrictMode } from \"../isStrictMode.js\";\nimport {\n FORM_RENDERER,\n RuntimeBrickConfOfFormSymbols,\n symbolForFormStateStoreId,\n} from \"./FormRenderer/constants.js\";\nimport { expandFormRenderer } from \"./FormRenderer/expandFormRenderer.js\";\nimport { registerFormRenderer } from \"./FormRenderer/registerFormRenderer.js\";\nimport { isPreEvaluated } from \"./compute/evaluate.js\";\nimport { getPreEvaluatedRaw } from \"./compute/evaluate.js\";\nimport { RuntimeBrickConfOfTplSymbols } from \"./CustomTemplates/constants.js\";\nimport { matchHomepage } from \"./matchStoryboard.js\";\nimport type { DataStore, DataStoreType } from \"./data/DataStore.js\";\nimport { listenerFactory } from \"./bindListeners.js\";\nimport type { MatchResult } from \"./matchPath.js\";\nimport { setupRootRuntimeContext } from \"./setupRootRuntimeContext.js\";\nimport { setMatchedRoute } from \"./routeMatchedMap.js\";\nimport { ErrorNode } from \"./ErrorNode.js\";\n\nexport interface RenderOutput {\n node?: RenderChildNode;\n unauthenticated?: boolean;\n redirect?: {\n path: string;\n state?: NextHistoryState;\n };\n route?: RouteConf;\n path?: string;\n blockingList: (Promise<unknown> | undefined)[];\n menuRequestNode?: MenuRequestNode;\n}\n\nexport async function renderRoutes(\n returnNode: RenderReturnNode,\n routes: RouteConf[],\n _runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteNode[],\n menuRequestReturnNode: MenuRequestNode,\n slotId?: string,\n isIncremental?: boolean,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n const matched = await matchRoutes(routes, _runtimeContext);\n const output = getEmptyRenderOutput();\n const menuRequestNode: MenuRequestNode = (output.menuRequestNode = {\n return: menuRequestReturnNode,\n });\n switch (matched) {\n case \"missed\":\n break;\n case \"unauthenticated\":\n output.unauthenticated = true;\n break;\n default: {\n const route = (output.route = matched.route);\n output.path = matched.match.path;\n const runtimeContext = {\n ..._runtimeContext,\n match: matched.match,\n };\n\n if (route.iid) {\n setMatchedRoute(route.iid, matched.match);\n }\n\n if (isIncremental) {\n runtimeContext.ctxStore.disposeDataInRoutes(routes);\n }\n const routePath = parentRoutes.concat({ route, routes });\n runtimeContext.ctxStore.define(\n route.context,\n runtimeContext,\n undefined,\n routePath\n );\n runtimeContext.pendingPermissionsPreCheck.push(\n hooks?.checkPermissions?.preCheckPermissionsForBrickOrRoute(\n route,\n (value) => asyncComputeRealValue(value, runtimeContext)\n )\n );\n\n // Currently, this is only used for brick size-checking: these bricks\n // will be loaded before page rendering, but they will NOT be rendered.\n const { preLoadBricks } = route as { preLoadBricks?: string[] };\n if (Array.isArray(preLoadBricks)) {\n output.blockingList.push(\n loadBricksImperatively(preLoadBricks, getBrickPackages())\n );\n }\n\n if (route.type === \"redirect\") {\n let redirectTo: unknown;\n if (typeof route.redirect === \"string\") {\n redirectTo = await asyncComputeRealValue(\n route.redirect,\n runtimeContext\n );\n } else {\n const resolved = (await resolveData(\n {\n transform: \"redirect\",\n ...route.redirect,\n },\n runtimeContext\n )) as { redirect?: unknown };\n redirectTo = resolved.redirect;\n }\n if (typeof redirectTo !== \"string\") {\n // eslint-disable-next-line no-console\n console.error(\"Unexpected redirect result:\", redirectTo);\n throw new Error(\n `Unexpected type of redirect result: ${typeof redirectTo}`\n );\n }\n output.redirect = { path: redirectTo };\n } else {\n const menuRequest = loadMenu(route.menu, runtimeContext);\n if (menuRequest) {\n menuRequestNode.request = menuRequest;\n }\n\n if (!isIncremental) {\n rendererContext.memoizeMenuRequestNode(routes, menuRequestNode);\n }\n\n const usedProcessors = strictCollectMemberUsage(\n route.context,\n \"PROCESSORS\",\n 2\n );\n if (usedProcessors.size > 0) {\n output.blockingList.push(\n catchLoad(\n loadProcessorsImperatively(usedProcessors, getBrickPackages()),\n \"processors\",\n [...usedProcessors].join(\", \"),\n rendererContext.unknownBricks\n )\n );\n }\n\n let newOutput: RenderOutput;\n if (route.type === \"routes\") {\n newOutput = await renderRoutes(\n returnNode,\n route.routes,\n runtimeContext,\n rendererContext,\n routePath,\n menuRequestNode,\n slotId,\n undefined,\n initialTracker\n );\n } else {\n newOutput = await renderBricks(\n returnNode,\n route.bricks,\n runtimeContext,\n rendererContext,\n routePath,\n menuRequestNode,\n slotId,\n undefined,\n initialTracker\n );\n }\n\n mergeRenderOutput(output, newOutput);\n appendMenuRequestNode(menuRequestNode, newOutput.menuRequestNode);\n }\n }\n }\n\n return output;\n}\n\nexport async function renderBricks(\n returnNode: RenderReturnNode,\n bricks: BrickConf[],\n runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteNode[],\n menuRequestReturnNode: MenuRequestNode,\n slotId?: string,\n tplStack?: Map<string, number>,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n setupRootRuntimeContext(bricks, runtimeContext, true);\n const output = getEmptyRenderOutput();\n // 多个构件并行异步转换,但转换的结果按原顺序串行合并。\n const rendered = await Promise.all(\n bricks.map((brickConf) =>\n renderBrick(\n returnNode,\n brickConf,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n );\n\n rendered.forEach((item) => {\n mergeRenderOutput(output, item);\n });\n\n return output;\n}\n\nexport async function renderBrick(\n returnNode: RenderReturnNode,\n brickConf: RuntimeBrickConfWithSymbols,\n _runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteNode[],\n menuRequestReturnNode: MenuRequestNode,\n slotId?: string,\n tplStack = new Map<string, number>(),\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n try {\n return await legacyRenderBrick(\n returnNode,\n brickConf,\n _runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n initialTracker\n );\n } catch (error) {\n if (brickConf.errorBoundary) {\n // eslint-disable-next-line no-console\n console.error(\"Error caught by error boundary:\", error);\n return {\n node: await ErrorNode(error, returnNode),\n blockingList: [],\n };\n } else {\n throw error;\n }\n }\n}\n\nasync function legacyRenderBrick(\n returnNode: RenderReturnNode,\n brickConf: RuntimeBrickConfWithSymbols,\n _runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteNode[],\n menuRequestReturnNode: MenuRequestNode,\n slotId: string | undefined,\n tplStack: Map<string, number>,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n const output = getEmptyRenderOutput();\n\n if (!brickConf.brick) {\n if ((brickConf as { template?: string }).template) {\n // eslint-disable-next-line no-console\n console.error(\"Legacy templates are dropped in v3:\", brickConf);\n } else {\n // eslint-disable-next-line no-console\n console.error(\"Invalid brick:\", brickConf);\n }\n return output;\n }\n\n // Translate `if: \"<%= ... %>\"` to `brick: \":if\", dataSource: \"<%= ... %>\"`.\n // In other words, translate tracking if expressions to tracking control nodes of `:if`.\n const { if: brickIf, permissionsPreCheck, ...restBrickConf } = brickConf;\n if (isGeneralizedTrackAll(brickIf)) {\n return renderBrick(\n returnNode,\n {\n brick: \":if\",\n iid: brickConf.iid,\n dataSource: brickIf,\n // `permissionsPreCheck` maybe required before computing `if`.\n permissionsPreCheck,\n slots: {\n \"\": {\n type: \"bricks\",\n bricks: [restBrickConf],\n },\n },\n // These symbols have to be copied to the new brick conf.\n ...Object.getOwnPropertySymbols(brickConf).reduce(\n (acc, symbol) => ({\n ...acc,\n [symbol]: brickConf[symbol as typeof symbolForTplStateStoreId],\n }),\n {} as RuntimeBrickConfOfTplSymbols & RuntimeBrickConfOfFormSymbols\n ),\n },\n _runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n initialTracker\n );\n }\n\n const tplStateStoreId = brickConf[symbolForTplStateStoreId];\n const formStateStoreId = brickConf[symbolForFormStateStoreId];\n const runtimeContext = {\n ..._runtimeContext,\n tplStateStoreId,\n formStateStoreId,\n };\n\n if (hasOwnProperty(brickConf, symbolForTPlExternalForEachItem)) {\n // The external bricks of a template should restore their `forEach*` from their host.\n runtimeContext.forEachItem = brickConf[symbolForTPlExternalForEachItem];\n runtimeContext.forEachIndex = brickConf[symbolForTPlExternalForEachIndex];\n runtimeContext.forEachSize = brickConf[symbolForTPlExternalForEachSize];\n }\n\n const strict = isStrictMode(runtimeContext);\n const { context } = brickConf as { context?: ContextConf[] };\n // istanbul ignore next\n if (Array.isArray(context) && context.length > 0) {\n warnAboutStrictMode(\n strict,\n \"Defining context on bricks\",\n \"check your brick:\",\n brickConf\n );\n if (!strict) {\n runtimeContext.ctxStore.define(context, runtimeContext);\n }\n }\n\n runtimeContext.pendingPermissionsPreCheck.push(\n hooks?.checkPermissions?.preCheckPermissionsForBrickOrRoute(\n brickConf,\n (value) => asyncComputeRealValue(value, runtimeContext)\n )\n );\n\n if (!(await asyncCheckBrickIf(brickConf, runtimeContext))) {\n return output;\n }\n\n const brickName = brickConf.brick;\n if (brickName.startsWith(\":\")) {\n ensureValidControlBrick(brickName);\n\n const { dataSource } = brickConf;\n const { contextNames, stateNames } = getTracks(dataSource);\n const tracking = !!(contextNames || stateNames);\n\n const lowerLevelRenderControlNode = async (\n runtimeContext: RuntimeContext,\n tracker: InitialTracker,\n trackDataSource: boolean\n ) => {\n // First, compute the `dataSource`\n const computedDataSource = await asyncComputeRealValue(\n dataSource,\n runtimeContext\n );\n\n if (trackDataSource) {\n trackAfterInitial(\n runtimeContext,\n [{ contextNames, stateNames, propValue: dataSource }],\n tracker\n );\n }\n\n // Then, get the matched slot.\n const slot =\n brickName === \":forEach\"\n ? \"\"\n : brickName === \":switch\"\n ? String(computedDataSource)\n : computedDataSource\n ? \"\"\n : \"else\";\n\n // Don't forget to transpile children to slots.\n const slots = childrenToSlots(brickConf.children, brickConf.slots);\n\n // Then, get the bricks in that matched slot.\n const bricks =\n slots &&\n hasOwnProperty(slots, slot) &&\n (slots[slot] as SlotConfOfBricks)?.bricks;\n\n const output = getEmptyRenderOutput();\n const abstractNode: RenderAbstract = {\n tag: RenderTag.ABSTRACT,\n return: returnNode,\n iid: brickConf.iid,\n };\n output.node = abstractNode;\n\n if (!Array.isArray(bricks)) {\n return output;\n }\n\n let childrenOutput: RenderOutput | undefined;\n\n switch (brickName) {\n case \":forEach\": {\n if (!Array.isArray(computedDataSource)) {\n break;\n }\n childrenOutput = await renderForEach(\n abstractNode,\n computedDataSource,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n tracker\n );\n break;\n }\n case \":if\":\n case \":switch\": {\n childrenOutput = await renderBricks(\n abstractNode,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n tracker\n );\n }\n }\n\n if (childrenOutput) {\n abstractNode.child = childrenOutput.node;\n mergeRenderOutput(output, { ...childrenOutput, node: undefined });\n }\n\n return output;\n };\n\n type RenderControlNodeOptions =\n | {\n type: \"initial\";\n runtimeContext: RuntimeContext;\n tplStateStoreScope?: undefined;\n formStateStoreScope?: undefined;\n }\n | {\n type: \"rerender\";\n runtimeContext: RuntimeContext;\n tplStateStoreScope: DataStore<\"STATE\">[];\n formStateStoreScope: DataStore<\"FORM_STATE\">[];\n };\n\n const renderControlNode = async ({\n type,\n runtimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n }: RenderControlNodeOptions) => {\n let changedAfterInitial = false;\n const tracker: InitialTracker = {\n disposes: [],\n listener: () => {\n changedAfterInitial = true;\n },\n };\n let rerenderCount = 0;\n let rawOutput: RenderOutput;\n let uninitialized = true;\n\n // When perform an incremental sub-route render, for control nodes,\n // context maybe changed just after their data source being computed,\n // as well as props of their children bricks being computed, and before\n // bricks being mounted. Thus these changes may not take any effects.\n // So we need to track the context changes after the initial render,\n // and perform re-renders for these control nodes if necessary.\n while (uninitialized || changedAfterInitial) {\n changedAfterInitial = false;\n rawOutput = await lowerLevelRenderControlNode(\n runtimeContext,\n tracker,\n uninitialized && type === \"initial\"\n );\n\n // Changes may happen during `postAsyncRender`.\n if (!changedAfterInitial && type === \"rerender\") {\n const scopedStores = [...tplStateStoreScope, ...formStateStoreScope];\n await postAsyncRender(rawOutput, runtimeContext, [\n runtimeContext.ctxStore,\n ...scopedStores,\n ]);\n }\n\n tracker.disposes.forEach((dispose) => dispose());\n tracker.disposes.length = 0;\n uninitialized = false;\n // istanbul ignore next\n if (++rerenderCount > 10) {\n throw new Error(\n `Maximum rerender stack overflowed (iid: ${brickConf.iid})`\n );\n }\n }\n\n return rawOutput!;\n };\n\n let controlledOutput = await renderControlNode({\n type: \"initial\",\n runtimeContext,\n });\n const { onMount, onUnmount } = brickConf.lifeCycle ?? {};\n\n if (tracking) {\n let renderId = 0;\n const listener = async () => {\n // TODO(steve): start listeners when mounting, and handle changes between rendering and mounting.\n if (!returnNode.mounted || returnNode.disposed) {\n return;\n }\n\n const currentRenderId = ++renderId;\n const [scopedRuntimeContext, tplStateStoreScope, formStateStoreScope] =\n createScopedRuntimeContext(runtimeContext);\n\n const reControlledOutput = await renderControlNode({\n type: \"rerender\",\n runtimeContext: scopedRuntimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n });\n\n // Ignore stale renders\n if (\n renderId === currentRenderId &&\n returnNode.mounted &&\n !returnNode.disposed\n ) {\n if (onUnmount) {\n listenerFactory(\n onUnmount,\n runtimeContext\n )(new CustomEvent(\"unmount\", { detail: { rerender: true } }));\n }\n\n rendererContext.reRender(\n returnNode,\n reControlledOutput.node!,\n controlledOutput.node!\n );\n controlledOutput = reControlledOutput;\n\n if (onMount) {\n listenerFactory(\n onMount,\n scopedRuntimeContext\n )(new CustomEvent(\"mount\", { detail: { rerender: true } }));\n }\n\n for (const store of [...tplStateStoreScope, ...formStateStoreScope]) {\n store.mountAsyncData();\n }\n }\n };\n // Enable leading invocation, to keep tracking orders.\n const debouncedListener = debounce(listener, 0, {\n leading: true,\n trailing: true,\n });\n const runtimeBrick =\n returnNode.tag === RenderTag.ROOT ? null : returnNode;\n const disposes = runtimeBrick ? (runtimeBrick.disposes ??= []) : [];\n if (contextNames) {\n for (const contextName of contextNames) {\n disposes.push(\n runtimeContext.ctxStore.onChange(contextName, debouncedListener)\n );\n }\n }\n if (stateNames) {\n for (const contextName of stateNames) {\n const tplStateStore = getTplStateStore(\n runtimeContext,\n \"STATE\",\n `: \"${dataSource}\"`\n );\n disposes.push(tplStateStore.onChange(contextName, debouncedListener));\n }\n }\n }\n\n if (onMount) {\n rendererContext.registerArbitraryLifeCycle(\"onMount\", () => {\n listenerFactory(\n onMount,\n runtimeContext\n )(new CustomEvent(\"mount\", { detail: { rerender: false } }));\n });\n }\n\n if (onUnmount) {\n rendererContext.registerArbitraryLifeCycle(\"onUnmount\", () => {\n listenerFactory(\n onUnmount,\n runtimeContext\n )(new CustomEvent(\"unmount\", { detail: { rerender: false } }));\n });\n }\n\n return controlledOutput;\n }\n\n // Widgets need to be defined before rendering.\n if (/\\.tpl-/.test(brickName) && !customTemplates.get(brickName)) {\n await catchLoad(\n loadBricksImperatively([brickName], getBrickPackages()),\n \"brick\",\n brickName,\n rendererContext.unknownBricks\n );\n }\n\n const tplTagName = getTagNameOfCustomTemplate(brickName, runtimeContext);\n\n if (tplTagName) {\n const tplCount = tplStack.get(tplTagName) ?? 0;\n if (tplCount >= 10) {\n throw new Error(\n `Maximum custom template stack overflowed: \"${tplTagName}\"`\n );\n }\n tplStack.set(tplTagName, tplCount + 1);\n } else if (brickName.includes(\"-\") && !customElements.get(brickName)) {\n if (brickName === FORM_RENDERER) {\n registerFormRenderer();\n } else {\n output.blockingList.push(\n catchLoad(\n enqueueStableLoadBricks([brickName], getBrickPackages()),\n \"brick\",\n brickName,\n rendererContext.unknownBricks\n )\n );\n }\n }\n\n let formData: unknown;\n let confProps: Record<string, unknown> | undefined;\n if (brickName === FORM_RENDERER) {\n ({ formData, ...confProps } = brickConf.properties ?? {});\n\n if (brickConf.properties?.compute) {\n formData = await asyncComputeRealValue(formData, runtimeContext);\n }\n } else {\n if (runtimeContext.inUseBrick) {\n // Keep v2 behavior for `useBrick`: treat `transform` as `properties`.\n const transform = (brickConf as { transform?: Record<string, unknown> })\n .transform;\n if (transform) {\n warnAboutStrictMode(\n strict,\n \"`useBrick.transform`\",\n 'please use \"properties\" instead, check your useBrick:',\n brickConf\n );\n\n if (!strict) {\n confProps = {\n ...brickConf.properties,\n ...transform,\n };\n }\n }\n }\n confProps ??= brickConf.properties;\n }\n\n const trackingContextList: TrackingContextItem[] = [];\n const asyncPropertyEntries = asyncComputeRealPropertyEntries(\n confProps,\n runtimeContext,\n trackingContextList\n );\n\n const computedPropsFromHost = brickConf[symbolForAsyncComputedPropsFromHost];\n if (computedPropsFromHost) {\n asyncPropertyEntries.push(...computedPropsFromHost);\n }\n\n const isScript = brickName === \"script\";\n if (isScript || brickName === \"link\") {\n const props = await constructAsyncProperties(asyncPropertyEntries);\n if (isScript ? props.src : props.rel === \"stylesheet\" && props.href) {\n const prefix = window.PUBLIC_ROOT ?? \"\";\n if (isScript) {\n const { src, ...attrs } = props;\n await catchLoad(\n loadScript(src as string, prefix, attrs),\n \"script\",\n src as string,\n \"silent\"\n );\n } else {\n const { href, ...attrs } = props;\n await catchLoad(\n loadStyle(href as string, prefix, attrs),\n \"stylesheet\",\n href as string,\n \"silent\"\n );\n }\n return output;\n }\n }\n\n const brick: RenderBrick = {\n tag: RenderTag.BRICK,\n type: tplTagName || brickName,\n return: returnNode,\n slotId,\n events: brickConf.events,\n runtimeContext,\n portal: brickConf.portal,\n iid: brickConf.iid,\n ref: (brickConf as BrickConfInTemplate).ref,\n };\n\n output.node = brick;\n\n // 在最终挂载前,先加载所有可能用到的 processors。\n const usedProcessors = strictCollectMemberUsage(\n [brickConf.events, brickConf.lifeCycle],\n \"PROCESSORS\",\n 2\n );\n if (usedProcessors.size > 0) {\n output.blockingList.push(\n catchLoad(\n loadProcessorsImperatively(usedProcessors, getBrickPackages()),\n \"processors\",\n [...usedProcessors].join(\", \"),\n rendererContext.unknownBricks\n )\n );\n }\n\n // 加载构件属性和加载子构件等任务,可以并行。\n const blockingList: Promise<unknown>[] = [];\n\n // Note: properties here has already been initialized.\n trackAfterInitial(runtimeContext, trackingContextList, initialTracker);\n\n const loadProperties = async () => {\n brick.properties = await constructAsyncProperties(asyncPropertyEntries);\n listenOnTrackingContext(brick, trackingContextList);\n };\n blockingList.push(loadProperties());\n\n rendererContext.registerBrickLifeCycle(brick, brickConf.lifeCycle);\n\n let expandedBrickConf = brickConf;\n if (tplTagName) {\n expandedBrickConf = expandCustomTemplate(\n tplTagName,\n brickConf,\n brick,\n asyncPropertyEntries,\n rendererContext\n );\n } else if (brickName === FORM_RENDERER) {\n expandedBrickConf = expandFormRenderer(\n formData,\n brickConf,\n brick,\n asyncPropertyEntries,\n rendererContext\n );\n }\n\n if (expandedBrickConf.portal) {\n // A portal brick has no slotId.\n brick.slotId = undefined;\n }\n\n let childRuntimeContext: RuntimeContext;\n if (tplTagName) {\n // There is a boundary for `forEachItem` between template internals and externals.\n childRuntimeContext = {\n ...runtimeContext,\n };\n delete childRuntimeContext.forEachItem;\n delete childRuntimeContext.forEachIndex;\n delete childRuntimeContext.forEachSize;\n } else {\n childRuntimeContext = runtimeContext;\n }\n\n const loadChildren = async () => {\n const slots = childrenToSlots(\n expandedBrickConf.children,\n expandedBrickConf.slots\n );\n if (!slots) {\n return;\n }\n const routeSlotFromIndexToSlotId = new Map<number, string>();\n const rendered = await Promise.all(\n Object.entries(slots).map(async ([childSlotId, slotConf], index) => {\n if (slotConf.type !== \"routes\") {\n return renderBricks(\n brick,\n (slotConf as SlotConfOfBricks).bricks,\n childRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n tplStack,\n initialTracker\n );\n }\n\n let lastOutput = getEmptyRenderOutput();\n const abstractNode: RenderAbstract = {\n tag: RenderTag.ABSTRACT,\n return: brick,\n };\n lastOutput.node = abstractNode;\n\n const { route: parentRoute } = parentRoutes[parentRoutes.length - 1];\n if ((parentRoute as RouteConfOfBricks)?.incrementalSubRoutes) {\n routeSlotFromIndexToSlotId.set(index, childSlotId);\n rendererContext.performIncrementalRender(\n slotConf,\n parentRoutes.map(({ route }) => route),\n async (location, prevLocation) => {\n const { homepage } = childRuntimeContext.app;\n const { pathname } = location;\n // Ignore if any one of homepage and parent routes not matched.\n if (\n !matchHomepage(homepage, pathname) ||\n !parentRoutes.every(({ route, routes }) => {\n let prevMatch: MatchResult | null = null;\n let newMatch: MatchResult | null = null;\n return (\n (prevMatch = matchTargetRoute(\n route,\n routes,\n homepage,\n prevLocation.pathname\n )) &&\n (newMatch = matchTargetRoute(\n route,\n routes,\n homepage,\n pathname\n )) &&\n (route !== parentRoute ||\n isRouteParamsEqual(prevMatch.params, newMatch.params))\n );\n })\n ) {\n return false;\n }\n\n clearResolveCache();\n\n const [\n scopedRuntimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n ] = createScopedRuntimeContext({\n ...childRuntimeContext,\n location,\n query: new URLSearchParams(location.search),\n });\n\n let failed = false;\n let incrementalOutput: RenderOutput;\n let scopedStores: DataStore<\"STATE\" | \"FORM_STATE\">[] = [];\n\n const newOutput = getEmptyRenderOutput();\n const newControlNode: RenderAbstract = {\n tag: RenderTag.ABSTRACT,\n return: brick,\n };\n newOutput.node = newControlNode;\n\n try {\n incrementalOutput = await renderRoutes(\n newControlNode,\n slotConf.routes,\n scopedRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n true\n );\n\n // Do not ignore incremental rendering even if all sub-routes are missed.\n // Since parent route is matched.\n if (incrementalOutput.route) {\n // Bailout if redirect or unauthenticated is set\n if (rendererContext.reBailout(incrementalOutput)) {\n return true;\n }\n\n scopedStores = [\n ...tplStateStoreScope,\n ...formStateStoreScope,\n ];\n await postAsyncRender(\n incrementalOutput,\n scopedRuntimeContext,\n [scopedRuntimeContext.ctxStore, ...scopedStores]\n );\n }\n } catch (error) {\n // eslint-disable-next-line no-console\n console.error(\"Incremental sub-router failed:\", error);\n\n const result = await rendererContext.reCatch(\n error,\n newControlNode\n );\n if (!result) {\n return true;\n }\n ({ failed, output: incrementalOutput } = result);\n }\n\n // istanbul ignore next: covered by e2e tests\n if (brick.disposed) {\n return true;\n }\n\n newControlNode.child = incrementalOutput.node;\n mergeRenderOutput(newOutput, {\n ...incrementalOutput,\n node: undefined,\n });\n // Assert: no errors will be throw\n await rendererContext.reMergeMenuRequestNodes(\n menuRequestReturnNode,\n slotConf.routes,\n incrementalOutput.menuRequestNode\n );\n\n rendererContext.reRender(brick, newControlNode, lastOutput.node!);\n\n lastOutput = newOutput;\n\n if (!failed) {\n scopedRuntimeContext.ctxStore.mountAsyncData(\n incrementalOutput.route\n );\n for (const store of scopedStores) {\n store.mountAsyncData();\n }\n }\n\n // Even if all sub-routes missed, treat the incremental rendering as performed.\n return true;\n }\n );\n }\n\n const routesOutput = await renderRoutes(\n abstractNode,\n slotConf.routes,\n childRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n undefined,\n initialTracker\n );\n\n abstractNode.child = routesOutput.node;\n mergeRenderOutput(output, { ...routesOutput, node: undefined });\n appendMenuRequestNode(\n menuRequestReturnNode,\n (output.menuRequestNode = routesOutput.menuRequestNode)\n );\n\n return lastOutput;\n })\n );\n\n const childrenOutput: RenderOutput = {\n ...output,\n node: undefined,\n blockingList: [],\n menuRequestNode: undefined,\n };\n rendered.forEach((item) => {\n mergeRenderOutput(childrenOutput, item);\n mergeSiblingRenderMenuRequest(childrenOutput, item);\n });\n if (childrenOutput.node) {\n brick.child = childrenOutput.node;\n }\n mergeRenderOutput(output, {\n ...childrenOutput,\n node: undefined,\n });\n\n appendMenuRequestNode(\n menuRequestReturnNode,\n (output.menuRequestNode = childrenOutput.menuRequestNode)\n );\n };\n blockingList.push(loadChildren());\n\n await Promise.all(blockingList);\n\n return output;\n}\n\nfunction isGeneralizedTrackAll(brickIf: unknown): boolean {\n return typeof brickIf === \"string\"\n ? isTrackAll(brickIf)\n : isPreEvaluated(brickIf) &&\n // istanbul ignore next: covered by e2e tests\n isTrackAll(getPreEvaluatedRaw(brickIf));\n}\n\ntype ValidControlBrick = \":forEach\" | \":if\" | \":switch\";\n\nfunction ensureValidControlBrick(\n brick: string\n): asserts brick is ValidControlBrick {\n if (brick !== \":forEach\" && brick !== \":if\" && brick !== \":switch\") {\n throw new Error(`Unknown storyboard control node: \"${brick}\"`);\n }\n}\n\nasync function renderForEach(\n returnNode: RenderReturnNode,\n dataSource: unknown[],\n bricks: BrickConf[],\n runtimeContext: RuntimeContext,\n rendererContext: RendererContext,\n parentRoutes: RouteNode[],\n menuRequestReturnNode: MenuRequestNode,\n slotId: string | undefined,\n tplStack: Map<string, number>,\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n const output = getEmptyRenderOutput();\n\n const size = dataSource.length;\n const rendered = await Promise.all(\n dataSource.map((item, i) =>\n Promise.all(\n bricks.map((brickConf) =>\n renderBrick(\n returnNode,\n brickConf,\n {\n ...runtimeContext,\n forEachItem: item,\n forEachIndex: i,\n forEachSize: size,\n },\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n )\n )\n );\n\n // 多层构件并行异步转换,但转换的结果按原顺序串行合并。\n rendered.flat().forEach((item) => {\n mergeRenderOutput(output, item);\n });\n\n return output;\n}\n\nexport function getDataStores(runtimeContext: RuntimeContext) {\n return [\n runtimeContext.ctxStore,\n ...runtimeContext.tplStateStoreMap.values(),\n ...runtimeContext.formStateStoreMap.values(),\n ];\n}\n\nexport function postAsyncRender(\n output: RenderOutput,\n runtimeContext: RuntimeContext,\n stores: DataStore<DataStoreType>[]\n) {\n flushStableLoadBricks();\n\n return Promise.all([\n ...output.blockingList,\n ...stores.map((store) => store.waitForAll()),\n ...runtimeContext.pendingPermissionsPreCheck,\n ]);\n}\n\nexport function createScopedRuntimeContext(\n runtimeContext: RuntimeContext\n): [\n scopedRuntimeContext: RuntimeContext,\n tplStateStoreScope: DataStore<\"STATE\">[],\n formStateStoreScope: DataStore<\"FORM_STATE\">[],\n] {\n const tplStateStoreScope: DataStore<\"STATE\">[] = [];\n const formStateStoreScope: DataStore<\"FORM_STATE\">[] = [];\n const scopedRuntimeContext: RuntimeContext = {\n ...runtimeContext,\n tplStateStoreScope,\n formStateStoreScope,\n };\n return [scopedRuntimeContext, tplStateStoreScope, formStateStoreScope];\n}\n\nfunction loadMenu(\n menuConf: MenuConf | undefined,\n runtimeContext: RuntimeContext\n) {\n if (!menuConf) {\n return;\n }\n\n // istanbul ignore next\n if ((menuConf as { type?: \"brick\" }).type === \"brick\") {\n // eslint-disable-next-line no-console\n console.error(\"Set menu with brick is dropped in v3:\", menuConf);\n throw new Error(\"Set menu with brick is dropped in v3\");\n }\n\n // istanbul ignore next\n if (menuConf.type === \"resolve\") {\n // eslint-disable-next-line no-console\n console.warn(\"Set menu with resolve is not supported in v3 yet:\", menuConf);\n return;\n }\n\n return asyncComputeRealValue(\n menuConf,\n runtimeContext\n ) as Promise<StaticMenuConf>;\n}\n\nfunction mergeRenderOutput(\n output: RenderOutput,\n newOutput: RenderOutput\n): void {\n const { blockingList, node, menuRequestNode, ...rest } = newOutput;\n output.blockingList.push(...blockingList);\n\n if (node) {\n if (output.node) {\n let last = output.node;\n while (last.sibling) {\n last = last.sibling;\n }\n last.sibling = node;\n } else {\n output.node = node;\n }\n }\n\n Object.assign(output, rest);\n}\n\nfunction mergeSiblingRenderMenuRequest(\n output: RenderOutput,\n newOutput: RenderOutput\n) {\n const menuRequestNode = newOutput.menuRequestNode;\n if (menuRequestNode) {\n if (output.menuRequestNode) {\n let last = output.menuRequestNode;\n while (last.sibling) {\n last = last.sibling;\n }\n last.sibling = menuRequestNode;\n } else {\n output.menuRequestNode = menuRequestNode;\n }\n }\n}\n\nfunction appendMenuRequestNode(\n menuRequestReturnNode: MenuRequestNode,\n menuRequestNode: MenuRequestNode | undefined\n) {\n if (!menuRequestNode) {\n return;\n }\n if (menuRequestReturnNode.child) {\n let last = menuRequestReturnNode.child;\n while (last.sibling) {\n last = last.sibling;\n }\n last.sibling = menuRequestNode;\n } else {\n menuRequestReturnNode.child = menuRequestNode;\n }\n}\n\nfunction getEmptyRenderOutput(): RenderOutput {\n return { blockingList: [] };\n}\n\nexport function childrenToSlots(\n children: (BrickConf | RouteConf)[] | undefined,\n originalSlots: SlotsConf | undefined\n) {\n let newSlots = originalSlots;\n // istanbul ignore next\n if (\n process.env.NODE_ENV === \"development\" &&\n children &&\n !Array.isArray(children)\n ) {\n // eslint-disable-next-line no-console\n console.warn(\n \"Specified brick children but not array:\",\n `<${typeof children}>`,\n children\n );\n }\n if (Array.isArray(children) && !newSlots) {\n newSlots = {};\n for (const { slot: sl, ...child } of children) {\n const slot = sl ?? \"\";\n const type = isRouteConf(child) ? \"routes\" : \"bricks\";\n if (hasOwnProperty(newSlots, slot)) {\n const slotConf = newSlots[slot];\n if (slotConf.type !== type) {\n throw new Error(`Slot \"${slot}\" conflict between bricks and routes.`);\n }\n (slotConf as SlotConfOfBricks)[type as \"bricks\"].push(\n child as BrickConf\n );\n } else {\n newSlots[slot] = {\n type: type as \"bricks\",\n [type as \"bricks\"]: [child as BrickConf],\n };\n }\n }\n }\n return newSlots;\n}\n\nfunction catchLoad(\n promise: Promise<unknown>,\n type: \"brick\" | \"processors\" | \"script\" | \"stylesheet\",\n name: string,\n unknownPolicy: RendererContext[\"unknownBricks\"]\n) {\n return unknownPolicy === \"silent\"\n ? promise.catch((e) => {\n // eslint-disable-next-line no-console\n console.error(`Load %s \"%s\" failed:`, type, name, e);\n })\n : promise;\n}\n\nfunction isRouteParamsEqual(\n a: Record<string, string>,\n b: Record<string, string>\n) {\n if (isEqual(a, b)) {\n return true;\n }\n const omitNumericKeys = (v: unknown, k: string) => {\n return String(Number(k)) === k;\n };\n const c = omitBy(a, omitNumericKeys);\n const d = omitBy(b, omitNumericKeys);\n return isEqual(c, d);\n}\n\nfunction isRouteConf(child: BrickConf | RouteConf): child is RouteConf {\n return !!(child as RouteConf).path && !(child as BrickConf).brick;\n}\n\n/**\n * Find the first matched route among siblings.\n *\n * Return the match result only if it matches the target route.\n */\nfunction matchTargetRoute(\n route: RouteConf,\n routes: RouteConf[],\n homepage: string,\n pathname: string\n) {\n for (const sibling of routes) {\n const match = matchRoute(sibling, homepage, pathname);\n if (match) {\n return sibling === route ? match : null;\n }\n }\n return null;\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -222,7 +222,9 @@ class DataStore {
|
|
|
222
222
|
if (Array.isArray(dataConfs) && dataConfs.length > 0) {
|
|
223
223
|
const pending = (0, _resolveDataStore.resolveDataStore)(dataConfs, dataConf => this.resolve(dataConf, runtimeContext, asyncHostPropertyEntries, routePath), this.type, (0, _isStrictMode.isStrictMode)(runtimeContext));
|
|
224
224
|
if (Array.isArray(routePath)) {
|
|
225
|
-
for (const
|
|
225
|
+
for (const {
|
|
226
|
+
route
|
|
227
|
+
} of routePath) {
|
|
226
228
|
const stack = this.routeStackMap.get(route);
|
|
227
229
|
if (stack) {
|
|
228
230
|
stack.add(pending);
|
|
@@ -388,7 +390,9 @@ class DataStore {
|
|
|
388
390
|
});
|
|
389
391
|
this.data.set(dataConf.name, newData);
|
|
390
392
|
if (Array.isArray(routePath)) {
|
|
391
|
-
for (const
|
|
393
|
+
for (const {
|
|
394
|
+
route
|
|
395
|
+
} of routePath) {
|
|
392
396
|
const names = this.routeMap.get(route);
|
|
393
397
|
if (names) {
|
|
394
398
|
names.add(dataConf.name);
|