@xuda.io/runtime-bundle 1.0.625 → 1.0.626
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.
|
@@ -34247,20 +34247,21 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34247
34247
|
var $wrapper = $('<div>');
|
|
34248
34248
|
$div = func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, null, $wrapper, '');
|
|
34249
34249
|
|
|
34250
|
-
let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div.clone(true), true, undefined, refreshed_ds);
|
|
34251
|
-
if (ret.abort) {
|
|
34252
|
-
|
|
34253
|
-
|
|
34254
|
-
|
|
34255
|
-
// }
|
|
34250
|
+
// let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div.clone(true), true, undefined, refreshed_ds);
|
|
34251
|
+
// if (ret.abort) {
|
|
34252
|
+
// // render N
|
|
34253
|
+
// return (ret.$new_div = $('<template>').append($div));
|
|
34254
|
+
// }
|
|
34256
34255
|
|
|
34257
|
-
|
|
34258
|
-
return (ret.$new_div = $('<template>').append($div));
|
|
34256
|
+
// let ret_done = await done(ret.$new_div);
|
|
34259
34257
|
|
|
34260
|
-
|
|
34258
|
+
// return ret_done;
|
|
34259
|
+
|
|
34260
|
+
////// render default children tree
|
|
34261
|
+
if (nodeP.children.length) {
|
|
34262
|
+
const default_children_ret = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP.children[0], parent_infoP, paramsP, jobNoP, null, 0, null, nodeP, null, $root_container);
|
|
34263
|
+
debugger;
|
|
34261
34264
|
}
|
|
34262
|
-
let ret_done = await done(ret.$new_div);
|
|
34263
|
-
return ret_done;
|
|
34264
34265
|
},
|
|
34265
34266
|
};
|
|
34266
34267
|
|