@xuda.io/runtime-bundle 1.0.1045 → 1.0.1047
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.
|
@@ -32372,9 +32372,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32372
32372
|
// }
|
|
32373
32373
|
|
|
32374
32374
|
////////////
|
|
32375
|
-
const
|
|
32375
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
32376
32376
|
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
32377
|
-
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[
|
|
32377
|
+
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[xu_render_cache_id]?.$container.clone(true);
|
|
32378
32378
|
|
|
32379
32379
|
/////////////
|
|
32380
32380
|
// let new_$div = original_data_obj.$container.clone(true);
|
|
@@ -32394,7 +32394,12 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32394
32394
|
null,
|
|
32395
32395
|
$root_container,
|
|
32396
32396
|
);
|
|
32397
|
+
|
|
32398
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = { $div: new_$div.clone(true) };
|
|
32399
|
+
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
32400
|
+
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
32397
32401
|
}
|
|
32402
|
+
new_$div.appendTo($container);
|
|
32398
32403
|
// ////////////
|
|
32399
32404
|
// if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
|
|
32400
32405
|
// UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|