@xuda.io/runtime-bundle 1.0.1023 → 1.0.1025
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.
|
@@ -33769,7 +33769,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33769
33769
|
node_promises.push(
|
|
33770
33770
|
new Promise(async (resolve, reject) => {
|
|
33771
33771
|
const ret = await func.UI.screen.render_ui_tree(SESSION_ID, $divP, nodeP.children[key], parent_infoP, paramsP, jobNoP, is_skeleton, Number(key), null, nodeP, null, $root_container);
|
|
33772
|
-
|
|
33772
|
+
|
|
33773
33773
|
resolve();
|
|
33774
33774
|
}),
|
|
33775
33775
|
);
|
|
@@ -34448,7 +34448,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34448
34448
|
if (glb.new_xu_render) {
|
|
34449
34449
|
if (ret.xu_render_in_process) {
|
|
34450
34450
|
debugger;
|
|
34451
|
-
|
|
34451
|
+
const xu_ui_id = $div.attr('xu-ui-id');
|
|
34452
|
+
if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
|
|
34453
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
34454
|
+
}
|
|
34455
|
+
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
34456
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = $div.clone(true);
|
|
34452
34457
|
return $div;
|
|
34453
34458
|
} else {
|
|
34454
34459
|
$container.append(temp_$container.children());
|