@xuda.io/runtime-bundle 1.0.1046 → 1.0.1048
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -12672,6 +12672,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12672
12672
|
};
|
|
12673
12673
|
|
|
12674
12674
|
const post_render = async function () {
|
|
12675
|
+
let nodeP = $container.data().xuData.node[keyP];
|
|
12675
12676
|
nodeP.xu_render_made = value;
|
|
12676
12677
|
if (value) {
|
|
12677
12678
|
try {
|
|
@@ -12688,9 +12689,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12688
12689
|
// }
|
|
12689
12690
|
|
|
12690
12691
|
////////////
|
|
12691
|
-
const
|
|
12692
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
12692
12693
|
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
12693
|
-
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[
|
|
12694
|
+
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[xu_render_cache_id]?.$container.clone(true);
|
|
12694
12695
|
|
|
12695
12696
|
/////////////
|
|
12696
12697
|
// let new_$div = original_data_obj.$container.clone(true);
|
|
@@ -12710,6 +12711,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12710
12711
|
null,
|
|
12711
12712
|
$root_container,
|
|
12712
12713
|
);
|
|
12714
|
+
|
|
12715
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = { $div: new_$div.clone(true) };
|
|
12716
|
+
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
12717
|
+
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
12713
12718
|
}
|
|
12714
12719
|
new_$div.appendTo($container);
|
|
12715
12720
|
// ////////////
|
|
@@ -10397,6 +10397,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10397
10397
|
};
|
|
10398
10398
|
|
|
10399
10399
|
const post_render = async function () {
|
|
10400
|
+
let nodeP = $container.data().xuData.node[keyP];
|
|
10400
10401
|
nodeP.xu_render_made = value;
|
|
10401
10402
|
if (value) {
|
|
10402
10403
|
try {
|
|
@@ -10413,9 +10414,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10413
10414
|
// }
|
|
10414
10415
|
|
|
10415
10416
|
////////////
|
|
10416
|
-
const
|
|
10417
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
10417
10418
|
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
10418
|
-
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[
|
|
10419
|
+
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[xu_render_cache_id]?.$container.clone(true);
|
|
10419
10420
|
|
|
10420
10421
|
/////////////
|
|
10421
10422
|
// let new_$div = original_data_obj.$container.clone(true);
|
|
@@ -10435,6 +10436,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10435
10436
|
null,
|
|
10436
10437
|
$root_container,
|
|
10437
10438
|
);
|
|
10439
|
+
|
|
10440
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = { $div: new_$div.clone(true) };
|
|
10441
|
+
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
10442
|
+
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
10438
10443
|
}
|
|
10439
10444
|
new_$div.appendTo($container);
|
|
10440
10445
|
// ////////////
|