@xuda.io/runtime-bundle 1.0.809 → 1.0.810
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
|
@@ -8746,11 +8746,13 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8746
8746
|
const { nodeP, $div, parent_infoP, $root_container, jobNoP, is_skeleton, paramsP, $container } = queue_obj?.paramsP || {};
|
|
8747
8747
|
if (nodeP?.children?.length) {
|
|
8748
8748
|
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
8749
|
-
|
|
8750
|
-
|
|
8751
|
-
|
|
8749
|
+
setTimeout(async () => {
|
|
8750
|
+
for await (const [key, val] of Object.entries(nodeP.children)) {
|
|
8751
|
+
const ret = await func.UI.screen.render_ui_tree(SESSION_ID, $div, nodeP.children[key], parent_infoP, paramsP, jobNoP, is_skeleton, Number(key), null, nodeP, null, $root_container);
|
|
8752
|
+
}
|
|
8753
|
+
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8754
|
+
}, 1000);
|
|
8752
8755
|
}
|
|
8753
|
-
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8754
8756
|
},
|
|
8755
8757
|
};
|
|
8756
8758
|
|
|
@@ -8747,11 +8747,13 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8747
8747
|
const { nodeP, $div, parent_infoP, $root_container, jobNoP, is_skeleton, paramsP, $container } = queue_obj?.paramsP || {};
|
|
8748
8748
|
if (nodeP?.children?.length) {
|
|
8749
8749
|
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
8750
|
-
|
|
8751
|
-
|
|
8752
|
-
|
|
8750
|
+
setTimeout(async () => {
|
|
8751
|
+
for await (const [key, val] of Object.entries(nodeP.children)) {
|
|
8752
|
+
const ret = await func.UI.screen.render_ui_tree(SESSION_ID, $div, nodeP.children[key], parent_infoP, paramsP, jobNoP, is_skeleton, Number(key), null, nodeP, null, $root_container);
|
|
8753
|
+
}
|
|
8754
|
+
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8755
|
+
}, 1000);
|
|
8753
8756
|
}
|
|
8754
|
-
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8755
8757
|
},
|
|
8756
8758
|
};
|
|
8757
8759
|
|