@next-core/runtime 1.57.5 → 1.58.1

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.
@@ -7,6 +7,7 @@ exports.StoryboardFunctionRegistryFactory = StoryboardFunctionRegistryFactory;
7
7
  var _cook = require("@next-core/cook");
8
8
  var _supply = require("@next-core/supply");
9
9
  var _storyboard = require("@next-core/utils/storyboard");
10
+ var _general = require("@next-core/utils/general");
10
11
  var _getGeneralGlobals = require("./internal/compute/getGeneralGlobals.js");
11
12
  /** @internal */
12
13
 
@@ -59,12 +60,23 @@ function StoryboardFunctionRegistryFactory({
59
60
  registeredFunctions.set(fn.name, {
60
61
  source: fn.source,
61
62
  typescript: fn.typescript,
63
+ transformed: fn.transformed,
62
64
  deps,
63
65
  hasPermissionsCheck
64
66
  });
65
67
  }
66
68
  }
67
69
  }
70
+ function getGlobalVariables(globals) {
71
+ return (0, _supply.supply)(globals, (0, _getGeneralGlobals.getGeneralGlobals)(globals, {
72
+ collectCoverage,
73
+ widgetId,
74
+ widgetVersion,
75
+ app: currentApp,
76
+ storyboardFunctions,
77
+ isStoryboardFunction: true
78
+ }), !!collectCoverage);
79
+ }
68
80
  function getStoryboardFunction(name) {
69
81
  const fn = registeredFunctions.get(name);
70
82
  if (!fn) {
@@ -77,51 +89,55 @@ function StoryboardFunctionRegistryFactory({
77
89
  if (collectCoverage) {
78
90
  collector = collectCoverage.createCollector(name);
79
91
  }
80
- const precooked = (0, _cook.precookFunction)(fn.source, {
81
- typescript: fn.typescript,
82
- hooks: collector && {
83
- beforeVisit: collector.beforeVisit
84
- },
85
- cacheKey: fn
86
- });
87
- const globalVariables = (0, _supply.supply)(precooked.attemptToVisitGlobals, (0, _getGeneralGlobals.getGeneralGlobals)(precooked.attemptToVisitGlobals, {
88
- collectCoverage,
89
- widgetId,
90
- widgetVersion,
91
- app: currentApp,
92
- storyboardFunctions,
93
- isStoryboardFunction: true
94
- }), !!collectCoverage);
95
- fn.cooked = (0, _cook.cook)(precooked.function, fn.source, {
96
- rules: {
97
- noVar: true
98
- },
99
- globalVariables: overrides ? {
100
- ...globalVariables,
101
- ...(overrides !== null && overrides !== void 0 && overrides.LodashWithStaticFields && precooked.attemptToVisitGlobals.has("_") ? {
102
- _: {
103
- ...globalVariables._,
104
- ...overrides.LodashWithStaticFields
105
- }
106
- } : null),
107
- ...(overrides !== null && overrides !== void 0 && overrides.ArrayConstructor && precooked.attemptToVisitGlobals.has("Array") ? {
108
- Array: overrides.ArrayConstructor
109
- } : null),
110
- ...(overrides !== null && overrides !== void 0 && overrides.ObjectWithStaticFields && precooked.attemptToVisitGlobals.has("Object") ? {
111
- Object: {
112
- ...globalVariables.Object,
113
- ...overrides.ObjectWithStaticFields
114
- }
115
- } : null)
116
- } : globalVariables,
117
- ArrayConstructor: overrides === null || overrides === void 0 ? void 0 : overrides.ArrayConstructor,
118
- hooks: collector && {
119
- beforeEvaluate: collector.beforeEvaluate,
120
- beforeCall: collector.beforeCall,
121
- beforeBranch: collector.beforeBranch
122
- },
123
- debug: !!debuggerOverrides
124
- });
92
+
93
+ // Do not use transformed functions when debugging.
94
+ const transformed = !overrides && !collector && fn.transformed;
95
+ if (transformed) {
96
+ const globalVariables = getGlobalVariables(transformed.globals);
97
+ // Spread globals as params to prevent accessing forbidden globals.
98
+ // NOTE: in native mode, forbidden globals are declared as `undefined`,
99
+ // thus accessing them will not throw a ReferenceError.
100
+ fn.cooked = new Function(...transformed.globals, `"use strict";return (${transformed.source})`)(...transformed.globals.map(key => (0, _general.hasOwnProperty)(globalVariables, key) ? globalVariables[key] : undefined));
101
+ } else {
102
+ const precooked = (0, _cook.precookFunction)(fn.source, {
103
+ typescript: fn.typescript,
104
+ hooks: collector && {
105
+ beforeVisit: collector.beforeVisit
106
+ },
107
+ cacheKey: fn
108
+ });
109
+ const globalVariables = getGlobalVariables(precooked.attemptToVisitGlobals);
110
+ fn.cooked = (0, _cook.cook)(precooked.function, fn.source, {
111
+ rules: {
112
+ noVar: true
113
+ },
114
+ globalVariables: overrides ? {
115
+ ...globalVariables,
116
+ ...(overrides !== null && overrides !== void 0 && overrides.LodashWithStaticFields && precooked.attemptToVisitGlobals.has("_") ? {
117
+ _: {
118
+ ...globalVariables._,
119
+ ...overrides.LodashWithStaticFields
120
+ }
121
+ } : null),
122
+ ...(overrides !== null && overrides !== void 0 && overrides.ArrayConstructor && precooked.attemptToVisitGlobals.has("Array") ? {
123
+ Array: overrides.ArrayConstructor
124
+ } : null),
125
+ ...(overrides !== null && overrides !== void 0 && overrides.ObjectWithStaticFields && precooked.attemptToVisitGlobals.has("Object") ? {
126
+ Object: {
127
+ ...globalVariables.Object,
128
+ ...overrides.ObjectWithStaticFields
129
+ }
130
+ } : null)
131
+ } : globalVariables,
132
+ ArrayConstructor: overrides === null || overrides === void 0 ? void 0 : overrides.ArrayConstructor,
133
+ hooks: collector && {
134
+ beforeEvaluate: collector.beforeEvaluate,
135
+ beforeCall: collector.beforeCall,
136
+ beforeBranch: collector.beforeBranch
137
+ },
138
+ debug: !!debuggerOverrides
139
+ });
140
+ }
125
141
  fn.processed = true;
126
142
  return fn.cooked;
127
143
  }
@@ -138,6 +154,7 @@ function StoryboardFunctionRegistryFactory({
138
154
  registeredFunctions.set(name, {
139
155
  source: data.source,
140
156
  typescript: data.typescript,
157
+ transformed: data.transformed,
141
158
  deps,
142
159
  hasPermissionsCheck
143
160
  });
@@ -1 +1 @@
1
- {"version":3,"file":"StoryboardFunctionRegistry.js","names":["_cook","require","_supply","_storyboard","_getGeneralGlobals","StoryboardFunctionRegistryFactory","widgetId","widgetVersion","collectCoverage","debuggerOverrides","registeredFunctions","Map","overrides","precookFunction","cook","supply","storyboardFunctions","Proxy","Object","freeze","get","_target","key","getStoryboardFunction","currentApp","registerStoryboardFunctions","functions","app","clear","Array","isArray","fn","deps","collectMemberUsageInFunction","delete","name","hasPermissionsCheck","perm","has","set","source","typescript","undefined","processed","cooked","collector","createCollector","precooked","hooks","beforeVisit","cacheKey","globalVariables","attemptToVisitGlobals","getGeneralGlobals","isStoryboardFunction","function","rules","noVar","LodashWithStaticFields","_","ArrayConstructor","ObjectWithStaticFields","beforeEvaluate","beforeCall","beforeBranch","debug","updateStoryboardFunction","data","newFn","checkPermissionsUsage","functionNames","checkedFunctions","Set","add","some","clearGlobalExecutionContextStack","__dev_only_clearGlobalExecutionContextStack","getGlobalExecutionContextStack","__dev_only_getGlobalExecutionContextStack"],"sources":["../../src/StoryboardFunctionRegistry.ts"],"sourcesContent":["import type { MicroApp, StoryboardFunction } from \"@next-core/types\";\nimport {\n cook,\n precookFunction,\n EstreeNode,\n __dev_only_clearGlobalExecutionContextStack,\n __dev_only_getGlobalExecutionContextStack,\n} from \"@next-core/cook\";\nimport { supply } from \"@next-core/supply\";\nimport { collectMemberUsageInFunction } from \"@next-core/utils/storyboard\";\nimport type _ from \"lodash\";\nimport { getGeneralGlobals } from \"./internal/compute/getGeneralGlobals.js\";\n\n/** @internal */\nexport type ReadonlyStoryboardFunctions = Readonly<Record<string, Function>>;\n\n/** @internal */\nexport type StoryboardFunctionPatch = Pick<\n StoryboardFunction,\n \"source\" | \"typescript\"\n>;\n\n/** @internal */\nexport interface StoryboardFunctionRegistry {\n /** A readonly proxy for accessing cooked storyboard functions. */\n storyboardFunctions: ReadonlyStoryboardFunctions;\n\n /** Register storyboard functions. */\n registerStoryboardFunctions(\n functions: StoryboardFunction[] | undefined,\n app?: PartialMicroApp\n ): void;\n\n /** Update a storyboard function during debugging. */\n updateStoryboardFunction(name: string, data: StoryboardFunctionPatch): void;\n\n checkPermissionsUsage(functionNames: string[]): boolean;\n\n clearGlobalExecutionContextStack(): void;\n getGlobalExecutionContextStack(): ReturnType<\n typeof __dev_only_getGlobalExecutionContextStack\n >;\n}\n\n/** @internal */\nexport interface RuntimeStoryboardFunction {\n source: string;\n typescript?: boolean;\n processed?: boolean;\n cooked?: Function;\n deps: Set<string> | string[];\n hasPermissionsCheck: boolean;\n}\n\n/** @internal */\nexport interface FunctionCoverageCollector {\n beforeVisit(node: EstreeNode): void;\n beforeEvaluate(node: EstreeNode): void;\n beforeCall(node: EstreeNode): void;\n beforeBranch(node: EstreeNode, branch: string): void;\n}\n\n/** @internal */\nexport interface FunctionCoverageSettings {\n createCollector(name: string): FunctionCoverageCollector;\n}\n\n/** @internal */\nexport type PartialMicroApp = Pick<MicroApp, \"id\" | \"isBuildPush\">;\n\n/** @internal */\nexport function StoryboardFunctionRegistryFactory({\n widgetId,\n widgetVersion,\n collectCoverage,\n debuggerOverrides,\n}: {\n widgetId?: string;\n widgetVersion?: string;\n collectCoverage?: FunctionCoverageSettings;\n debuggerOverrides?: (ctx: {\n precookFunction: typeof precookFunction;\n cook: typeof cook;\n supply: typeof supply;\n }) => {\n LodashWithStaticFields?: Partial<typeof _>;\n ArrayConstructor?: typeof Array;\n ObjectWithStaticFields?: Partial<typeof Object>;\n };\n} = {}): StoryboardFunctionRegistry {\n const registeredFunctions = new Map<string, RuntimeStoryboardFunction>();\n\n const overrides = debuggerOverrides?.({\n precookFunction,\n cook,\n supply,\n });\n\n // Use `Proxy` with a frozen target, to make a readonly function registry.\n const storyboardFunctions = new Proxy(Object.freeze({}), {\n get(_target, key) {\n return getStoryboardFunction(key as string);\n },\n }) as ReadonlyStoryboardFunctions;\n\n let currentApp: PartialMicroApp | undefined;\n\n function registerStoryboardFunctions(\n functions: StoryboardFunction[],\n app?: PartialMicroApp\n ): void {\n if (app) {\n currentApp = app;\n }\n registeredFunctions.clear();\n if (Array.isArray(functions)) {\n for (const fn of functions) {\n let deps: Set<string> | string[] | undefined = fn.deps;\n if (deps == null) {\n deps = collectMemberUsageInFunction(fn, \"FN\", !!collectCoverage);\n (deps as Set<string>).delete(fn.name);\n }\n const hasPermissionsCheck =\n fn.perm ??\n collectMemberUsageInFunction(\n fn,\n \"PERMISSIONS\",\n !!collectCoverage\n ).has(\"check\");\n registeredFunctions.set(fn.name, {\n source: fn.source,\n typescript: fn.typescript,\n deps,\n hasPermissionsCheck,\n });\n }\n }\n }\n\n function getStoryboardFunction(name: string): Function | undefined {\n const fn = registeredFunctions.get(name);\n if (!fn) {\n return undefined;\n }\n if (fn.processed) {\n return fn.cooked;\n }\n let collector: FunctionCoverageCollector | undefined;\n if (collectCoverage) {\n collector = collectCoverage.createCollector(name);\n }\n const precooked = precookFunction(fn.source, {\n typescript: fn.typescript,\n hooks: collector && {\n beforeVisit: collector.beforeVisit,\n },\n cacheKey: fn,\n });\n const globalVariables = supply(\n precooked.attemptToVisitGlobals,\n getGeneralGlobals(precooked.attemptToVisitGlobals, {\n collectCoverage,\n widgetId,\n widgetVersion,\n app: currentApp,\n storyboardFunctions,\n isStoryboardFunction: true,\n }),\n !!collectCoverage\n );\n\n fn.cooked = cook(precooked.function, fn.source, {\n rules: {\n noVar: true,\n },\n globalVariables: overrides\n ? {\n ...globalVariables,\n ...(overrides?.LodashWithStaticFields &&\n precooked.attemptToVisitGlobals.has(\"_\")\n ? {\n _: {\n ...(globalVariables._ as typeof _),\n ...overrides.LodashWithStaticFields,\n },\n }\n : null),\n ...(overrides?.ArrayConstructor &&\n precooked.attemptToVisitGlobals.has(\"Array\")\n ? {\n Array: overrides.ArrayConstructor,\n }\n : null),\n ...(overrides?.ObjectWithStaticFields &&\n precooked.attemptToVisitGlobals.has(\"Object\")\n ? {\n Object: {\n ...(globalVariables.Object as typeof Object),\n ...overrides.ObjectWithStaticFields,\n },\n }\n : null),\n }\n : globalVariables,\n ArrayConstructor: overrides?.ArrayConstructor,\n hooks: collector && {\n beforeEvaluate: collector.beforeEvaluate,\n beforeCall: collector.beforeCall,\n beforeBranch: collector.beforeBranch,\n },\n debug: !!debuggerOverrides,\n }) as Function;\n fn.processed = true;\n return fn.cooked;\n }\n\n return {\n storyboardFunctions,\n registerStoryboardFunctions,\n updateStoryboardFunction(\n name: string,\n data: StoryboardFunctionPatch\n ): void {\n const newFn = {\n ...data,\n name,\n };\n const deps = collectMemberUsageInFunction(newFn, \"FN\", true);\n const hasPermissionsCheck = collectMemberUsageInFunction(\n newFn,\n \"PERMISSIONS\",\n true\n ).has(\"check\");\n registeredFunctions.set(name, {\n source: data.source,\n typescript: data.typescript,\n deps,\n hasPermissionsCheck,\n });\n },\n /**\n * Check whether listed functions attempt to call `PERMISSIONS.check()`,\n * includes in nested `FN.*()` calls.\n */\n checkPermissionsUsage(functionNames) {\n const checkedFunctions = new Set<string>();\n const hasPermissionsCheck = (name: string): boolean => {\n if (!checkedFunctions.has(name)) {\n checkedFunctions.add(name);\n const fn = registeredFunctions.get(name);\n return (\n !!fn &&\n (fn.hasPermissionsCheck || [...fn.deps].some(hasPermissionsCheck))\n );\n }\n return false;\n };\n return functionNames.some(hasPermissionsCheck);\n },\n clearGlobalExecutionContextStack() {\n __dev_only_clearGlobalExecutionContextStack();\n },\n getGlobalExecutionContextStack() {\n return __dev_only_getGlobalExecutionContextStack();\n },\n };\n}\n"],"mappings":";;;;;;AACA,IAAAA,KAAA,GAAAC,OAAA;AAOA,IAAAC,OAAA,GAAAD,OAAA;AACA,IAAAE,WAAA,GAAAF,OAAA;AAEA,IAAAG,kBAAA,GAAAH,OAAA;AAEA;;AAGA;;AAMA;;AAsBA;;AAUA;;AAQA;;AAKA;;AAGA;AACO,SAASI,iCAAiCA,CAAC;EAChDC,QAAQ;EACRC,aAAa;EACbC,eAAe;EACfC;AAcF,CAAC,GAAG,CAAC,CAAC,EAA8B;EAClC,MAAMC,mBAAmB,GAAG,IAAIC,GAAG,CAAoC,CAAC;EAExE,MAAMC,SAAS,GAAGH,iBAAiB,aAAjBA,iBAAiB,uBAAjBA,iBAAiB,CAAG;IACpCI,eAAe,EAAfA,qBAAe;IACfC,IAAI,EAAJA,UAAI;IACJC,MAAM,EAANA;EACF,CAAC,CAAC;;EAEF;EACA,MAAMC,mBAAmB,GAAG,IAAIC,KAAK,CAACC,MAAM,CAACC,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE;IACvDC,GAAGA,CAACC,OAAO,EAAEC,GAAG,EAAE;MAChB,OAAOC,qBAAqB,CAACD,GAAa,CAAC;IAC7C;EACF,CAAC,CAAgC;EAEjC,IAAIE,UAAuC;EAE3C,SAASC,2BAA2BA,CAClCC,SAA+B,EAC/BC,GAAqB,EACf;IACN,IAAIA,GAAG,EAAE;MACPH,UAAU,GAAGG,GAAG;IAClB;IACAjB,mBAAmB,CAACkB,KAAK,CAAC,CAAC;IAC3B,IAAIC,KAAK,CAACC,OAAO,CAACJ,SAAS,CAAC,EAAE;MAC5B,KAAK,MAAMK,EAAE,IAAIL,SAAS,EAAE;QAC1B,IAAIM,IAAwC,GAAGD,EAAE,CAACC,IAAI;QACtD,IAAIA,IAAI,IAAI,IAAI,EAAE;UAChBA,IAAI,GAAG,IAAAC,wCAA4B,EAACF,EAAE,EAAE,IAAI,EAAE,CAAC,CAACvB,eAAe,CAAC;UAC/DwB,IAAI,CAAiBE,MAAM,CAACH,EAAE,CAACI,IAAI,CAAC;QACvC;QACA,MAAMC,mBAAmB,GACvBL,EAAE,CAACM,IAAI,IACP,IAAAJ,wCAA4B,EAC1BF,EAAE,EACF,aAAa,EACb,CAAC,CAACvB,eACJ,CAAC,CAAC8B,GAAG,CAAC,OAAO,CAAC;QAChB5B,mBAAmB,CAAC6B,GAAG,CAACR,EAAE,CAACI,IAAI,EAAE;UAC/BK,MAAM,EAAET,EAAE,CAACS,MAAM;UACjBC,UAAU,EAAEV,EAAE,CAACU,UAAU;UACzBT,IAAI;UACJI;QACF,CAAC,CAAC;MACJ;IACF;EACF;EAEA,SAASb,qBAAqBA,CAACY,IAAY,EAAwB;IACjE,MAAMJ,EAAE,GAAGrB,mBAAmB,CAACU,GAAG,CAACe,IAAI,CAAC;IACxC,IAAI,CAACJ,EAAE,EAAE;MACP,OAAOW,SAAS;IAClB;IACA,IAAIX,EAAE,CAACY,SAAS,EAAE;MAChB,OAAOZ,EAAE,CAACa,MAAM;IAClB;IACA,IAAIC,SAAgD;IACpD,IAAIrC,eAAe,EAAE;MACnBqC,SAAS,GAAGrC,eAAe,CAACsC,eAAe,CAACX,IAAI,CAAC;IACnD;IACA,MAAMY,SAAS,GAAG,IAAAlC,qBAAe,EAACkB,EAAE,CAACS,MAAM,EAAE;MAC3CC,UAAU,EAAEV,EAAE,CAACU,UAAU;MACzBO,KAAK,EAAEH,SAAS,IAAI;QAClBI,WAAW,EAAEJ,SAAS,CAACI;MACzB,CAAC;MACDC,QAAQ,EAAEnB;IACZ,CAAC,CAAC;IACF,MAAMoB,eAAe,GAAG,IAAApC,cAAM,EAC5BgC,SAAS,CAACK,qBAAqB,EAC/B,IAAAC,oCAAiB,EAACN,SAAS,CAACK,qBAAqB,EAAE;MACjD5C,eAAe;MACfF,QAAQ;MACRC,aAAa;MACboB,GAAG,EAAEH,UAAU;MACfR,mBAAmB;MACnBsC,oBAAoB,EAAE;IACxB,CAAC,CAAC,EACF,CAAC,CAAC9C,eACJ,CAAC;IAEDuB,EAAE,CAACa,MAAM,GAAG,IAAA9B,UAAI,EAACiC,SAAS,CAACQ,QAAQ,EAAExB,EAAE,CAACS,MAAM,EAAE;MAC9CgB,KAAK,EAAE;QACLC,KAAK,EAAE;MACT,CAAC;MACDN,eAAe,EAAEvC,SAAS,GACtB;QACE,GAAGuC,eAAe;QAClB,IAAIvC,SAAS,aAATA,SAAS,eAATA,SAAS,CAAE8C,sBAAsB,IACrCX,SAAS,CAACK,qBAAqB,CAACd,GAAG,CAAC,GAAG,CAAC,GACpC;UACEqB,CAAC,EAAE;YACD,GAAIR,eAAe,CAACQ,CAAc;YAClC,GAAG/C,SAAS,CAAC8C;UACf;QACF,CAAC,GACD,IAAI,CAAC;QACT,IAAI9C,SAAS,aAATA,SAAS,eAATA,SAAS,CAAEgD,gBAAgB,IAC/Bb,SAAS,CAACK,qBAAqB,CAACd,GAAG,CAAC,OAAO,CAAC,GACxC;UACET,KAAK,EAAEjB,SAAS,CAACgD;QACnB,CAAC,GACD,IAAI,CAAC;QACT,IAAIhD,SAAS,aAATA,SAAS,eAATA,SAAS,CAAEiD,sBAAsB,IACrCd,SAAS,CAACK,qBAAqB,CAACd,GAAG,CAAC,QAAQ,CAAC,GACzC;UACEpB,MAAM,EAAE;YACN,GAAIiC,eAAe,CAACjC,MAAwB;YAC5C,GAAGN,SAAS,CAACiD;UACf;QACF,CAAC,GACD,IAAI;MACV,CAAC,GACDV,eAAe;MACnBS,gBAAgB,EAAEhD,SAAS,aAATA,SAAS,uBAATA,SAAS,CAAEgD,gBAAgB;MAC7CZ,KAAK,EAAEH,SAAS,IAAI;QAClBiB,cAAc,EAAEjB,SAAS,CAACiB,cAAc;QACxCC,UAAU,EAAElB,SAAS,CAACkB,UAAU;QAChCC,YAAY,EAAEnB,SAAS,CAACmB;MAC1B,CAAC;MACDC,KAAK,EAAE,CAAC,CAACxD;IACX,CAAC,CAAa;IACdsB,EAAE,CAACY,SAAS,GAAG,IAAI;IACnB,OAAOZ,EAAE,CAACa,MAAM;EAClB;EAEA,OAAO;IACL5B,mBAAmB;IACnBS,2BAA2B;IAC3ByC,wBAAwBA,CACtB/B,IAAY,EACZgC,IAA6B,EACvB;MACN,MAAMC,KAAK,GAAG;QACZ,GAAGD,IAAI;QACPhC;MACF,CAAC;MACD,MAAMH,IAAI,GAAG,IAAAC,wCAA4B,EAACmC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;MAC5D,MAAMhC,mBAAmB,GAAG,IAAAH,wCAA4B,EACtDmC,KAAK,EACL,aAAa,EACb,IACF,CAAC,CAAC9B,GAAG,CAAC,OAAO,CAAC;MACd5B,mBAAmB,CAAC6B,GAAG,CAACJ,IAAI,EAAE;QAC5BK,MAAM,EAAE2B,IAAI,CAAC3B,MAAM;QACnBC,UAAU,EAAE0B,IAAI,CAAC1B,UAAU;QAC3BT,IAAI;QACJI;MACF,CAAC,CAAC;IACJ,CAAC;IACD;AACJ;AACA;AACA;IACIiC,qBAAqBA,CAACC,aAAa,EAAE;MACnC,MAAMC,gBAAgB,GAAG,IAAIC,GAAG,CAAS,CAAC;MAC1C,MAAMpC,mBAAmB,GAAID,IAAY,IAAc;QACrD,IAAI,CAACoC,gBAAgB,CAACjC,GAAG,CAACH,IAAI,CAAC,EAAE;UAC/BoC,gBAAgB,CAACE,GAAG,CAACtC,IAAI,CAAC;UAC1B,MAAMJ,EAAE,GAAGrB,mBAAmB,CAACU,GAAG,CAACe,IAAI,CAAC;UACxC,OACE,CAAC,CAACJ,EAAE,KACHA,EAAE,CAACK,mBAAmB,IAAI,CAAC,GAAGL,EAAE,CAACC,IAAI,CAAC,CAAC0C,IAAI,CAACtC,mBAAmB,CAAC,CAAC;QAEtE;QACA,OAAO,KAAK;MACd,CAAC;MACD,OAAOkC,aAAa,CAACI,IAAI,CAACtC,mBAAmB,CAAC;IAChD,CAAC;IACDuC,gCAAgCA,CAAA,EAAG;MACjC,IAAAC,iDAA2C,EAAC,CAAC;IAC/C,CAAC;IACDC,8BAA8BA,CAAA,EAAG;MAC/B,OAAO,IAAAC,+CAAyC,EAAC,CAAC;IACpD;EACF,CAAC;AACH","ignoreList":[]}
1
+ {"version":3,"file":"StoryboardFunctionRegistry.js","names":["_cook","require","_supply","_storyboard","_general","_getGeneralGlobals","StoryboardFunctionRegistryFactory","widgetId","widgetVersion","collectCoverage","debuggerOverrides","registeredFunctions","Map","overrides","precookFunction","cook","supply","storyboardFunctions","Proxy","Object","freeze","get","_target","key","getStoryboardFunction","currentApp","registerStoryboardFunctions","functions","app","clear","Array","isArray","fn","deps","collectMemberUsageInFunction","delete","name","hasPermissionsCheck","perm","has","set","source","typescript","transformed","getGlobalVariables","globals","getGeneralGlobals","isStoryboardFunction","undefined","processed","cooked","collector","createCollector","globalVariables","Function","map","hasOwnProperty","precooked","hooks","beforeVisit","cacheKey","attemptToVisitGlobals","function","rules","noVar","LodashWithStaticFields","_","ArrayConstructor","ObjectWithStaticFields","beforeEvaluate","beforeCall","beforeBranch","debug","updateStoryboardFunction","data","newFn","checkPermissionsUsage","functionNames","checkedFunctions","Set","add","some","clearGlobalExecutionContextStack","__dev_only_clearGlobalExecutionContextStack","getGlobalExecutionContextStack","__dev_only_getGlobalExecutionContextStack"],"sources":["../../src/StoryboardFunctionRegistry.ts"],"sourcesContent":["import type {\n MicroApp,\n StoryboardFunction,\n TransformedFunction,\n} from \"@next-core/types\";\nimport {\n cook,\n precookFunction,\n EstreeNode,\n __dev_only_clearGlobalExecutionContextStack,\n __dev_only_getGlobalExecutionContextStack,\n} from \"@next-core/cook\";\nimport { supply } from \"@next-core/supply\";\nimport { collectMemberUsageInFunction } from \"@next-core/utils/storyboard\";\nimport { hasOwnProperty } from \"@next-core/utils/general\";\nimport type _ from \"lodash\";\nimport { getGeneralGlobals } from \"./internal/compute/getGeneralGlobals.js\";\n\n/** @internal */\nexport type ReadonlyStoryboardFunctions = Readonly<Record<string, Function>>;\n\n/** @internal */\nexport type StoryboardFunctionPatch = Pick<\n StoryboardFunction,\n \"source\" | \"typescript\" | \"transformed\"\n>;\n\n/** @internal */\nexport interface StoryboardFunctionRegistry {\n /** A readonly proxy for accessing cooked storyboard functions. */\n storyboardFunctions: ReadonlyStoryboardFunctions;\n\n /** Register storyboard functions. */\n registerStoryboardFunctions(\n functions: StoryboardFunction[] | undefined,\n app?: PartialMicroApp\n ): void;\n\n /** Update a storyboard function during debugging. */\n updateStoryboardFunction(name: string, data: StoryboardFunctionPatch): void;\n\n checkPermissionsUsage(functionNames: string[]): boolean;\n\n clearGlobalExecutionContextStack(): void;\n getGlobalExecutionContextStack(): ReturnType<\n typeof __dev_only_getGlobalExecutionContextStack\n >;\n}\n\n/** @internal */\nexport interface RuntimeStoryboardFunction {\n source: string;\n typescript?: boolean;\n processed?: boolean;\n cooked?: Function;\n deps: Set<string> | string[];\n hasPermissionsCheck: boolean;\n transformed?: TransformedFunction;\n}\n\n/** @internal */\nexport interface FunctionCoverageCollector {\n beforeVisit(node: EstreeNode): void;\n beforeEvaluate(node: EstreeNode): void;\n beforeCall(node: EstreeNode): void;\n beforeBranch(node: EstreeNode, branch: string): void;\n}\n\n/** @internal */\nexport interface FunctionCoverageSettings {\n createCollector(name: string): FunctionCoverageCollector;\n}\n\n/** @internal */\nexport type PartialMicroApp = Pick<MicroApp, \"id\" | \"isBuildPush\" | \"config\">;\n\n/** @internal */\nexport function StoryboardFunctionRegistryFactory({\n widgetId,\n widgetVersion,\n collectCoverage,\n debuggerOverrides,\n}: {\n widgetId?: string;\n widgetVersion?: string;\n collectCoverage?: FunctionCoverageSettings;\n debuggerOverrides?: (ctx: {\n precookFunction: typeof precookFunction;\n cook: typeof cook;\n supply: typeof supply;\n }) => {\n LodashWithStaticFields?: Partial<typeof _>;\n ArrayConstructor?: typeof Array;\n ObjectWithStaticFields?: Partial<typeof Object>;\n };\n} = {}): StoryboardFunctionRegistry {\n const registeredFunctions = new Map<string, RuntimeStoryboardFunction>();\n\n const overrides = debuggerOverrides?.({\n precookFunction,\n cook,\n supply,\n });\n\n // Use `Proxy` with a frozen target, to make a readonly function registry.\n const storyboardFunctions = new Proxy(Object.freeze({}), {\n get(_target, key) {\n return getStoryboardFunction(key as string);\n },\n }) as ReadonlyStoryboardFunctions;\n\n let currentApp: PartialMicroApp | undefined;\n\n function registerStoryboardFunctions(\n functions: StoryboardFunction[],\n app?: PartialMicroApp\n ): void {\n if (app) {\n currentApp = app;\n }\n registeredFunctions.clear();\n if (Array.isArray(functions)) {\n for (const fn of functions) {\n let deps: Set<string> | string[] | undefined = fn.deps;\n if (deps == null) {\n deps = collectMemberUsageInFunction(fn, \"FN\", !!collectCoverage);\n (deps as Set<string>).delete(fn.name);\n }\n const hasPermissionsCheck =\n fn.perm ??\n collectMemberUsageInFunction(\n fn,\n \"PERMISSIONS\",\n !!collectCoverage\n ).has(\"check\");\n registeredFunctions.set(fn.name, {\n source: fn.source,\n typescript: fn.typescript,\n transformed: fn.transformed,\n deps,\n hasPermissionsCheck,\n });\n }\n }\n }\n\n function getGlobalVariables(globals: Set<string> | string[]) {\n return supply(\n globals,\n getGeneralGlobals(globals, {\n collectCoverage,\n widgetId,\n widgetVersion,\n app: currentApp,\n storyboardFunctions,\n isStoryboardFunction: true,\n }),\n !!collectCoverage\n );\n }\n\n function getStoryboardFunction(name: string): Function | undefined {\n const fn = registeredFunctions.get(name);\n if (!fn) {\n return undefined;\n }\n if (fn.processed) {\n return fn.cooked;\n }\n let collector: FunctionCoverageCollector | undefined;\n if (collectCoverage) {\n collector = collectCoverage.createCollector(name);\n }\n\n // Do not use transformed functions when debugging.\n const transformed = !overrides && !collector && fn.transformed;\n if (transformed) {\n const globalVariables = getGlobalVariables(transformed.globals);\n // Spread globals as params to prevent accessing forbidden globals.\n // NOTE: in native mode, forbidden globals are declared as `undefined`,\n // thus accessing them will not throw a ReferenceError.\n fn.cooked = new Function(\n ...transformed.globals,\n `\"use strict\";return (${transformed.source})`\n )(\n ...transformed.globals.map((key) =>\n hasOwnProperty(globalVariables, key)\n ? globalVariables[key]\n : undefined\n )\n );\n } else {\n const precooked = precookFunction(fn.source, {\n typescript: fn.typescript,\n hooks: collector && {\n beforeVisit: collector.beforeVisit,\n },\n cacheKey: fn,\n });\n const globalVariables = getGlobalVariables(\n precooked.attemptToVisitGlobals\n );\n fn.cooked = cook(precooked.function, fn.source, {\n rules: {\n noVar: true,\n },\n globalVariables: overrides\n ? {\n ...globalVariables,\n ...(overrides?.LodashWithStaticFields &&\n precooked.attemptToVisitGlobals.has(\"_\")\n ? {\n _: {\n ...(globalVariables._ as typeof _),\n ...overrides.LodashWithStaticFields,\n },\n }\n : null),\n ...(overrides?.ArrayConstructor &&\n precooked.attemptToVisitGlobals.has(\"Array\")\n ? {\n Array: overrides.ArrayConstructor,\n }\n : null),\n ...(overrides?.ObjectWithStaticFields &&\n precooked.attemptToVisitGlobals.has(\"Object\")\n ? {\n Object: {\n ...(globalVariables.Object as typeof Object),\n ...overrides.ObjectWithStaticFields,\n },\n }\n : null),\n }\n : globalVariables,\n ArrayConstructor: overrides?.ArrayConstructor,\n hooks: collector && {\n beforeEvaluate: collector.beforeEvaluate,\n beforeCall: collector.beforeCall,\n beforeBranch: collector.beforeBranch,\n },\n debug: !!debuggerOverrides,\n }) as Function;\n }\n fn.processed = true;\n return fn.cooked;\n }\n\n return {\n storyboardFunctions,\n registerStoryboardFunctions,\n updateStoryboardFunction(\n name: string,\n data: StoryboardFunctionPatch\n ): void {\n const newFn = {\n ...data,\n name,\n };\n const deps = collectMemberUsageInFunction(newFn, \"FN\", true);\n const hasPermissionsCheck = collectMemberUsageInFunction(\n newFn,\n \"PERMISSIONS\",\n true\n ).has(\"check\");\n registeredFunctions.set(name, {\n source: data.source,\n typescript: data.typescript,\n transformed: data.transformed,\n deps,\n hasPermissionsCheck,\n });\n },\n /**\n * Check whether listed functions attempt to call `PERMISSIONS.check()`,\n * includes in nested `FN.*()` calls.\n */\n checkPermissionsUsage(functionNames) {\n const checkedFunctions = new Set<string>();\n const hasPermissionsCheck = (name: string): boolean => {\n if (!checkedFunctions.has(name)) {\n checkedFunctions.add(name);\n const fn = registeredFunctions.get(name);\n return (\n !!fn &&\n (fn.hasPermissionsCheck || [...fn.deps].some(hasPermissionsCheck))\n );\n }\n return false;\n };\n return functionNames.some(hasPermissionsCheck);\n },\n clearGlobalExecutionContextStack() {\n __dev_only_clearGlobalExecutionContextStack();\n },\n getGlobalExecutionContextStack() {\n return __dev_only_getGlobalExecutionContextStack();\n },\n };\n}\n"],"mappings":"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","ignoreList":[]}
@@ -230,6 +230,7 @@ async function legacyRenderBrick(returnNode, brickConf, _runtimeContext, rendere
230
230
  contextNames,
231
231
  stateNames
232
232
  } = (0, _getTracks.getTracks)(dataSource);
233
+ const tracking = !!(contextNames || stateNames);
233
234
  const lowerLevelRenderControlNode = async (runtimeContext, tracker, trackDataSource) => {
234
235
  var _slots$slot;
235
236
  // First, compute the `dataSource`
@@ -311,7 +312,8 @@ async function legacyRenderBrick(returnNode, brickConf, _runtimeContext, rendere
311
312
  }
312
313
  (_ref = rawOutput).node ?? (_ref.node = {
313
314
  tag: _enums.RenderTag.PLACEHOLDER,
314
- return: returnNode
315
+ return: returnNode,
316
+ tracking
315
317
  });
316
318
  return rawOutput;
317
319
  };
@@ -323,7 +325,7 @@ async function legacyRenderBrick(returnNode, brickConf, _runtimeContext, rendere
323
325
  onMount,
324
326
  onUnmount
325
327
  } = brickConf.lifeCycle ?? {};
326
- if (contextNames || stateNames) {
328
+ if (tracking) {
327
329
  controlledOutput.hasTrackingControls = true;
328
330
  let renderId = 0;
329
331
  const listener = async () => {
@@ -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","keyPath","setupRootRuntimeContext","kPath","rendered","Promise","all","map","brickConf","index","renderBrick","Map","forEach","item","hasTrackingControls","memoize","node","legacyRenderBrick","errorBoundary","ErrorNode","_hooks$checkPermissio2","_runtimeContext$app","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","lowerLevelRenderControlNode","tracker","trackDataSource","_slots$slot","computedDataSource","trackAfterInitial","propValue","slot","String","childrenToSlots","children","renderForEach","renderControlNode","tplStateStoreScope","formStateStoreScope","_ref","changedAfterInitial","disposes","listener","rerenderCount","rawOutput","uninitialized","scopedStores","postAsyncRender","dispose","tag","RenderTag","PLACEHOLDER","controlledOutput","onMount","onUnmount","lifeCycle","renderId","currentRenderId","scopedRuntimeContext","createScopedRuntimeContext","reControlledOutput","listenerFactory","CustomEvent","detail","rerender","reRender","store","mountAsyncData","debouncedListener","debounce","leading","trailing","runtimeBrick","BRICK","contextName","onChange","tplStateStore","getTplStateStore","registerArbitraryLifeCycle","test","customTemplates","get","tplTagName","getTagNameOfCustomTemplate","app","id","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","events","portal","ref","loadProperties","listenOnTrackingContext","registerBrickLifeCycle","expandedBrickConf","expandCustomTemplate","expandFormRenderer","childRuntimeContext","loadChildren","routeSlotFromIndexToSlotId","entries","childSlotId","slotConf","parentRoute","incrementalSubRoutes","performIncrementalRender","location","prevLocation","homepage","pathname","matchHomepage","every","prevMatch","newMatch","matchRoute","isEqual","params","query","URLSearchParams","search","failed","incrementalOutput","reBailout","reMergeMenuRequestNodes","result","reCatch","childrenOutput","has","mergeSiblingRenderMenuRequest","child","isTrackAll","isPreEvaluated","getPreEvaluatedRaw","i","j","flat","getDataStores","tplStateStoreMap","values","formStateStoreMap","stores","flushStableLoadBricks","waitForAll","menuConf","warn","rest","last","sibling","assign","originalSlots","newSlots","process","env","NODE_ENV","sl","promise","name","unknownPolicy","catch","e"],"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 } from \"lodash\";\nimport { asyncCheckBrickIf } from \"./compute/checkIf.js\";\nimport {\n asyncComputeRealPropertyEntries,\n constructAsyncProperties,\n} from \"./compute/computeRealProperties.js\";\nimport { 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 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 hasTrackingControls?: boolean;\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 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 keyPath?: number[],\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n setupRootRuntimeContext(bricks, runtimeContext, true);\n const output = getEmptyRenderOutput();\n const kPath = keyPath ?? [];\n // 多个构件并行异步转换,但转换的结果按原顺序串行合并。\n const rendered = await Promise.all(\n bricks.map((brickConf, index) =>\n renderBrick(\n returnNode,\n brickConf,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n kPath.concat(index),\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n );\n\n rendered.forEach((item, index) => {\n if (item.hasTrackingControls) {\n // Memoize a render node before it's been merged.\n rendererContext.memoize(\n slotId,\n kPath.concat(index),\n item.node,\n returnNode\n );\n }\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 keyPath: number[] = [],\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 keyPath,\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 keyPath: number[],\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 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 keyPath,\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\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 if (!Array.isArray(bricks)) {\n return getEmptyRenderOutput();\n }\n\n switch (brickName) {\n case \":forEach\": {\n if (!Array.isArray(computedDataSource)) {\n return getEmptyRenderOutput();\n }\n return renderForEach(\n returnNode,\n computedDataSource,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n keyPath,\n tracker\n );\n }\n case \":if\":\n case \":switch\": {\n return renderBricks(\n returnNode,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n keyPath,\n tracker\n );\n }\n }\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 rawOutput!.node ??= {\n tag: RenderTag.PLACEHOLDER,\n return: returnNode,\n };\n return rawOutput!;\n };\n\n const controlledOutput = await renderControlNode({\n type: \"initial\",\n runtimeContext,\n });\n\n const { onMount, onUnmount } = brickConf.lifeCycle ?? {};\n\n if (contextNames || stateNames) {\n controlledOutput.hasTrackingControls = true;\n let renderId = 0;\n const listener = async () => {\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 (renderId === currentRenderId) {\n if (onUnmount) {\n listenerFactory(\n onUnmount,\n runtimeContext\n )(new CustomEvent(\"unmount\", { detail: { rerender: true } }));\n }\n\n rendererContext.reRender(\n slotId,\n keyPath,\n reControlledOutput.node,\n returnNode\n );\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.BRICK ? returnNode : null;\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(\n brickName,\n runtimeContext.app?.id\n );\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(([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 undefined,\n initialTracker\n );\n }\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 isEqual(prevMatch.params, newMatch.params))\n );\n })\n ) {\n return false;\n }\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 try {\n incrementalOutput = await renderRoutes(\n brick,\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\n await rendererContext.reMergeMenuRequestNodes(\n menuRequestReturnNode,\n slotConf.routes,\n incrementalOutput.menuRequestNode\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(error, brick);\n if (!result) {\n return true;\n }\n ({ failed, output: incrementalOutput } = result);\n\n // Assert: no errors will be throw\n await rendererContext.reMergeMenuRequestNodes(\n menuRequestReturnNode,\n slotConf.routes,\n incrementalOutput.menuRequestNode\n );\n }\n\n rendererContext.reRender(\n childSlotId,\n [],\n incrementalOutput.node,\n brick\n );\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 return renderRoutes(\n brick,\n slotConf.routes,\n childRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n undefined,\n initialTracker\n );\n })\n );\n\n const childrenOutput: RenderOutput = {\n ...output,\n node: undefined,\n blockingList: [],\n menuRequestNode: undefined,\n };\n rendered.forEach((item, index) => {\n if (routeSlotFromIndexToSlotId.has(index)) {\n // Memoize a render node before it's been merged.\n rendererContext.memoize(\n routeSlotFromIndexToSlotId.get(index),\n [],\n item.node,\n brick\n );\n }\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 keyPath: 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, j) =>\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 keyPath.concat(i * size + j),\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n )\n )\n );\n\n // 多层构件并行异步转换,但转换的结果按原顺序串行合并。\n rendered.flat().forEach((item, index) => {\n if (item.hasTrackingControls) {\n // Memoize a render node before it's been merged.\n rendererContext.memoize(\n slotId,\n keyPath.concat(index),\n item.node,\n returnNode\n );\n }\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 // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const { blockingList, node, menuRequestNode, hasTrackingControls, ...rest } =\n 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[] | 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 if (!hasOwnProperty(newSlots, slot)) {\n newSlots[slot] = {\n type: \"bricks\",\n bricks: [],\n };\n }\n (newSlots[slot] as SlotConfOfBricks).bricks.push(child);\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"],"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","keyPath","setupRootRuntimeContext","kPath","rendered","Promise","all","map","brickConf","index","renderBrick","Map","forEach","item","hasTrackingControls","memoize","node","legacyRenderBrick","errorBoundary","ErrorNode","_hooks$checkPermissio2","_runtimeContext$app","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","renderForEach","renderControlNode","tplStateStoreScope","formStateStoreScope","_ref","changedAfterInitial","disposes","listener","rerenderCount","rawOutput","uninitialized","scopedStores","postAsyncRender","dispose","tag","RenderTag","PLACEHOLDER","controlledOutput","onMount","onUnmount","lifeCycle","renderId","currentRenderId","scopedRuntimeContext","createScopedRuntimeContext","reControlledOutput","listenerFactory","CustomEvent","detail","rerender","reRender","store","mountAsyncData","debouncedListener","debounce","leading","trailing","runtimeBrick","BRICK","contextName","onChange","tplStateStore","getTplStateStore","registerArbitraryLifeCycle","test","customTemplates","get","tplTagName","getTagNameOfCustomTemplate","app","id","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","events","portal","ref","loadProperties","listenOnTrackingContext","registerBrickLifeCycle","expandedBrickConf","expandCustomTemplate","expandFormRenderer","childRuntimeContext","loadChildren","routeSlotFromIndexToSlotId","entries","childSlotId","slotConf","parentRoute","incrementalSubRoutes","performIncrementalRender","location","prevLocation","homepage","pathname","matchHomepage","every","prevMatch","newMatch","matchRoute","isEqual","params","query","URLSearchParams","search","failed","incrementalOutput","reBailout","reMergeMenuRequestNodes","result","reCatch","childrenOutput","has","mergeSiblingRenderMenuRequest","child","isTrackAll","isPreEvaluated","getPreEvaluatedRaw","i","j","flat","getDataStores","tplStateStoreMap","values","formStateStoreMap","stores","flushStableLoadBricks","waitForAll","menuConf","warn","rest","last","sibling","assign","originalSlots","newSlots","process","env","NODE_ENV","sl","promise","name","unknownPolicy","catch","e"],"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 } from \"lodash\";\nimport { asyncCheckBrickIf } from \"./compute/checkIf.js\";\nimport {\n asyncComputeRealPropertyEntries,\n constructAsyncProperties,\n} from \"./compute/computeRealProperties.js\";\nimport { 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 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 hasTrackingControls?: boolean;\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 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 keyPath?: number[],\n initialTracker?: InitialTracker\n): Promise<RenderOutput> {\n setupRootRuntimeContext(bricks, runtimeContext, true);\n const output = getEmptyRenderOutput();\n const kPath = keyPath ?? [];\n // 多个构件并行异步转换,但转换的结果按原顺序串行合并。\n const rendered = await Promise.all(\n bricks.map((brickConf, index) =>\n renderBrick(\n returnNode,\n brickConf,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n kPath.concat(index),\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n );\n\n rendered.forEach((item, index) => {\n if (item.hasTrackingControls) {\n // Memoize a render node before it's been merged.\n rendererContext.memoize(\n slotId,\n kPath.concat(index),\n item.node,\n returnNode\n );\n }\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 keyPath: number[] = [],\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 keyPath,\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 keyPath: number[],\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 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 keyPath,\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 if (!Array.isArray(bricks)) {\n return getEmptyRenderOutput();\n }\n\n switch (brickName) {\n case \":forEach\": {\n if (!Array.isArray(computedDataSource)) {\n return getEmptyRenderOutput();\n }\n return renderForEach(\n returnNode,\n computedDataSource,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n keyPath,\n tracker\n );\n }\n case \":if\":\n case \":switch\": {\n return renderBricks(\n returnNode,\n bricks,\n runtimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n slotId,\n tplStack,\n keyPath,\n tracker\n );\n }\n }\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 rawOutput!.node ??= {\n tag: RenderTag.PLACEHOLDER,\n return: returnNode,\n tracking,\n };\n return rawOutput!;\n };\n\n const controlledOutput = await renderControlNode({\n type: \"initial\",\n runtimeContext,\n });\n\n const { onMount, onUnmount } = brickConf.lifeCycle ?? {};\n\n if (tracking) {\n controlledOutput.hasTrackingControls = true;\n let renderId = 0;\n const listener = async () => {\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 (renderId === currentRenderId) {\n if (onUnmount) {\n listenerFactory(\n onUnmount,\n runtimeContext\n )(new CustomEvent(\"unmount\", { detail: { rerender: true } }));\n }\n\n rendererContext.reRender(\n slotId,\n keyPath,\n reControlledOutput.node,\n returnNode\n );\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.BRICK ? returnNode : null;\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(\n brickName,\n runtimeContext.app?.id\n );\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(([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 undefined,\n initialTracker\n );\n }\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 isEqual(prevMatch.params, newMatch.params))\n );\n })\n ) {\n return false;\n }\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 try {\n incrementalOutput = await renderRoutes(\n brick,\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\n await rendererContext.reMergeMenuRequestNodes(\n menuRequestReturnNode,\n slotConf.routes,\n incrementalOutput.menuRequestNode\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(error, brick);\n if (!result) {\n return true;\n }\n ({ failed, output: incrementalOutput } = result);\n\n // Assert: no errors will be throw\n await rendererContext.reMergeMenuRequestNodes(\n menuRequestReturnNode,\n slotConf.routes,\n incrementalOutput.menuRequestNode\n );\n }\n\n rendererContext.reRender(\n childSlotId,\n [],\n incrementalOutput.node,\n brick\n );\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 return renderRoutes(\n brick,\n slotConf.routes,\n childRuntimeContext,\n rendererContext,\n parentRoutes,\n menuRequestReturnNode,\n childSlotId,\n undefined,\n initialTracker\n );\n })\n );\n\n const childrenOutput: RenderOutput = {\n ...output,\n node: undefined,\n blockingList: [],\n menuRequestNode: undefined,\n };\n rendered.forEach((item, index) => {\n if (routeSlotFromIndexToSlotId.has(index)) {\n // Memoize a render node before it's been merged.\n rendererContext.memoize(\n routeSlotFromIndexToSlotId.get(index),\n [],\n item.node,\n brick\n );\n }\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 keyPath: 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, j) =>\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 keyPath.concat(i * size + j),\n tplStack && new Map(tplStack),\n initialTracker\n )\n )\n )\n )\n );\n\n // 多层构件并行异步转换,但转换的结果按原顺序串行合并。\n rendered.flat().forEach((item, index) => {\n if (item.hasTrackingControls) {\n // Memoize a render node before it's been merged.\n rendererContext.memoize(\n slotId,\n keyPath.concat(index),\n item.node,\n returnNode\n );\n }\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 // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const { blockingList, node, menuRequestNode, hasTrackingControls, ...rest } =\n 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[] | 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 if (!hasOwnProperty(newSlots, slot)) {\n newSlots[slot] = {\n type: \"bricks\",\n bricks: [],\n };\n }\n (newSlots[slot] as SlotConfOfBricks).bricks.push(child);\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"],"mappings":"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","ignoreList":[]}