@xuda.io/runtime-bundle 1.0.1074 → 1.0.1076
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
|
@@ -12654,7 +12654,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12654
12654
|
const init_render = async function () {
|
|
12655
12655
|
nodeP.xu_render_made = value;
|
|
12656
12656
|
if (!value) {
|
|
12657
|
-
return { has_xu_render_attribute: true, xu_render_in_process: true };
|
|
12657
|
+
return { has_xu_render_attribute: true, xu_render_in_process: true, abort: true };
|
|
12658
12658
|
}
|
|
12659
12659
|
return { has_xu_render_attribute: true };
|
|
12660
12660
|
};
|
|
@@ -12665,7 +12665,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12665
12665
|
nodeP.xu_render_made = value;
|
|
12666
12666
|
if (value) {
|
|
12667
12667
|
try {
|
|
12668
|
-
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData
|
|
12668
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
12669
12669
|
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
12670
12670
|
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id + xu_render_cache_id]?.$div.clone(true);
|
|
12671
12671
|
let found_parent_vars = false;
|
|
@@ -12729,7 +12729,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12729
12729
|
// if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
|
|
12730
12730
|
// UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
12731
12731
|
// }
|
|
12732
|
-
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData
|
|
12732
|
+
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
12733
12733
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + cache_str] = { $div: $elm.clone(true) };
|
|
12734
12734
|
$elm.remove();
|
|
12735
12735
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
@@ -14749,7 +14749,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14749
14749
|
// UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
14750
14750
|
// }
|
|
14751
14751
|
|
|
14752
|
-
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData
|
|
14752
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
14753
14753
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + xu_render_cache_id] = { $div: $div.clone(true), paramsP };
|
|
14754
14754
|
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
14755
14755
|
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
@@ -10379,7 +10379,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10379
10379
|
const init_render = async function () {
|
|
10380
10380
|
nodeP.xu_render_made = value;
|
|
10381
10381
|
if (!value) {
|
|
10382
|
-
return { has_xu_render_attribute: true, xu_render_in_process: true };
|
|
10382
|
+
return { has_xu_render_attribute: true, xu_render_in_process: true, abort: true };
|
|
10383
10383
|
}
|
|
10384
10384
|
return { has_xu_render_attribute: true };
|
|
10385
10385
|
};
|
|
@@ -10390,7 +10390,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10390
10390
|
nodeP.xu_render_made = value;
|
|
10391
10391
|
if (value) {
|
|
10392
10392
|
try {
|
|
10393
|
-
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData
|
|
10393
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
10394
10394
|
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
10395
10395
|
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id + xu_render_cache_id]?.$div.clone(true);
|
|
10396
10396
|
let found_parent_vars = false;
|
|
@@ -10454,7 +10454,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10454
10454
|
// if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
|
|
10455
10455
|
// UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
10456
10456
|
// }
|
|
10457
|
-
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData
|
|
10457
|
+
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
10458
10458
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + cache_str] = { $div: $elm.clone(true) };
|
|
10459
10459
|
$elm.remove();
|
|
10460
10460
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
@@ -12474,7 +12474,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12474
12474
|
// UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
12475
12475
|
// }
|
|
12476
12476
|
|
|
12477
|
-
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData
|
|
12477
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
12478
12478
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + xu_render_cache_id] = { $div: $div.clone(true), paramsP };
|
|
12479
12479
|
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
12480
12480
|
nodeP.xu_render_cache_id = xu_render_cache_id;
|