@xuda.io/runtime-bundle 1.0.782 → 1.0.784
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-bundle.js +27 -23
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-mini-bundle.js +0 -1
- package/js/xuda-runtime-mini-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +27 -23
- package/js/xuda-runtime-slim.min.es.js +27 -23
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -3
- package/js/xuda-worker-bundle.js +1 -3
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -25237,7 +25237,6 @@ func.utils.job_worker = function (session_id) {
|
|
|
25237
25237
|
val.prog_id,
|
|
25238
25238
|
val.nodeId,
|
|
25239
25239
|
val.parentDataSourceNo,
|
|
25240
|
-
'', //dismissed val.$div creating bug in alter ui
|
|
25241
25240
|
val.$container,
|
|
25242
25241
|
);
|
|
25243
25242
|
}
|
|
@@ -29421,7 +29420,6 @@ func.datasource.execute_field_init_events = async function (SESSION_ID, dataSour
|
|
|
29421
29420
|
val.eventInfo.id, //eventInfo[2],
|
|
29422
29421
|
sourceP,
|
|
29423
29422
|
true,
|
|
29424
|
-
// check_count,
|
|
29425
29423
|
null,
|
|
29426
29424
|
null,
|
|
29427
29425
|
args.jobNoP,
|
|
@@ -29433,6 +29431,7 @@ func.datasource.execute_field_init_events = async function (SESSION_ID, dataSour
|
|
|
29433
29431
|
null,
|
|
29434
29432
|
null,
|
|
29435
29433
|
ds.parentDataSourceNo,
|
|
29434
|
+
null,
|
|
29436
29435
|
);
|
|
29437
29436
|
}
|
|
29438
29437
|
}
|
|
@@ -33410,7 +33409,6 @@ func.UI.screen.execute_screen_ready_events = async function (SESSION_ID, paramsP
|
|
|
33410
33409
|
val.eventInfo, // val.eventInfo[8],
|
|
33411
33410
|
null,
|
|
33412
33411
|
null,
|
|
33413
|
-
null,
|
|
33414
33412
|
_ds.prog_id,
|
|
33415
33413
|
_ds.nodeId,
|
|
33416
33414
|
_ds.parentDataSourceNo,
|
|
@@ -33506,26 +33504,33 @@ func.UI.screen.execute_screen_ready_events = async function (SESSION_ID, paramsP
|
|
|
33506
33504
|
};
|
|
33507
33505
|
func.UI.screen.screen_loading_done = async function (SESSION_ID, paramsP, $div, jobNoP) {
|
|
33508
33506
|
// await
|
|
33509
|
-
|
|
33510
|
-
|
|
33511
|
-
|
|
33512
|
-
|
|
33513
|
-
|
|
33514
|
-
|
|
33515
|
-
|
|
33516
|
-
|
|
33517
|
-
|
|
33518
|
-
|
|
33519
|
-
|
|
33520
|
-
|
|
33521
|
-
|
|
33522
|
-
|
|
33523
|
-
|
|
33524
|
-
|
|
33525
|
-
|
|
33526
|
-
|
|
33507
|
+
|
|
33508
|
+
let interval = setInterval(() => {
|
|
33509
|
+
if (!$(SESSION_OBJ[SESSION_ID].root_element).find(`[xu-ui-id=${ret_render_$container.attr('xu-ui-id')}]`).length) return;
|
|
33510
|
+
|
|
33511
|
+
clearInterval(interval);
|
|
33512
|
+
|
|
33513
|
+
func.UI.screen.execute_screen_ready_events(SESSION_ID, paramsP, paramsP.screenInfo.properties?.renderType, $div, jobNoP);
|
|
33514
|
+
var _session = SESSION_OBJ[SESSION_ID];
|
|
33515
|
+
func.events.delete_job(SESSION_ID, jobNoP);
|
|
33516
|
+
func.UI.utils.screen_blocker(false, paramsP.prog_id + (paramsP.sourceScreenP ? '_' + paramsP.sourceScreenP : ''));
|
|
33517
|
+
if (_session.prog_id === paramsP.prog_id) {
|
|
33518
|
+
_session.system_ready = true;
|
|
33519
|
+
if (_session.engine_mode === 'live_preview' && STUDIO_PEER_CONN_SEND_METHOD) {
|
|
33520
|
+
STUDIO_PEER_CONN_SEND_METHOD({
|
|
33521
|
+
service: 'system_ready',
|
|
33522
|
+
data: {},
|
|
33523
|
+
id: STUDIO_PEER.id,
|
|
33524
|
+
source: 'runtime',
|
|
33525
|
+
session_id: SESSION_ID,
|
|
33526
|
+
app_id: _session.app_id,
|
|
33527
|
+
gtp_token: _session.gtp_token,
|
|
33528
|
+
app_token: _session.app_token,
|
|
33529
|
+
});
|
|
33530
|
+
// }
|
|
33531
|
+
}
|
|
33527
33532
|
}
|
|
33528
|
-
}
|
|
33533
|
+
}, 100);
|
|
33529
33534
|
|
|
33530
33535
|
return $div;
|
|
33531
33536
|
};
|
|
@@ -36330,7 +36335,6 @@ func.events.execute = async function (
|
|
|
36330
36335
|
argumentsP,
|
|
36331
36336
|
NA_viewIdP,
|
|
36332
36337
|
NA_nodeIdP,
|
|
36333
|
-
NA_filler,
|
|
36334
36338
|
NA_parentDataSourceNoP,
|
|
36335
36339
|
$div,
|
|
36336
36340
|
) {
|