@magic-xpa/engine 4.801.0-dev481.280 → 4.801.0-dev481.284
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/esm2020/src/AccessHelper.mjs +7 -1
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/data/DataView.mjs +4 -4
- package/esm2020/src/event/EventsManager.mjs +8 -7
- package/esm2020/src/event/IEventsManager.mjs +1 -1
- package/esm2020/src/rt/Operation.mjs +4 -4
- package/fesm2015/magic-xpa-engine.mjs +17 -11
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +17 -11
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/AccessHelper.d.ts +5 -0
- package/src/event/EventsManager.d.ts +2 -1
- package/src/event/IEventsManager.d.ts +2 -1
|
@@ -5,7 +5,13 @@ import { HttpHeaders, HttpErrorResponse } from '@angular/common/http';
|
|
|
5
5
|
import { timer, Subject } from 'rxjs';
|
|
6
6
|
|
|
7
7
|
class AccessHelper {
|
|
8
|
-
}
|
|
8
|
+
}
|
|
9
|
+
var ClearEventsOnStopExecution;
|
|
10
|
+
(function (ClearEventsOnStopExecution) {
|
|
11
|
+
ClearEventsOnStopExecution["NONE"] = " ";
|
|
12
|
+
ClearEventsOnStopExecution["SERVER"] = "S";
|
|
13
|
+
ClearEventsOnStopExecution["ALL"] = "A";
|
|
14
|
+
})(ClearEventsOnStopExecution || (ClearEventsOnStopExecution = {}));
|
|
9
15
|
|
|
10
16
|
var EventSubType;
|
|
11
17
|
(function (EventSubType) {
|
|
@@ -9837,7 +9843,7 @@ class Operation {
|
|
|
9837
9843
|
let rtEvnt = AccessHelper.eventsManager.getLastRtEvent();
|
|
9838
9844
|
if (this._isRoute && rtEvnt !== null && rtEvnt.isGuiTriggeredEvent()) {
|
|
9839
9845
|
terminateTaskGracefully = false;
|
|
9840
|
-
AccessHelper.eventsManager.setStopExecution(true);
|
|
9846
|
+
AccessHelper.eventsManager.setStopExecution(true, ClearEventsOnStopExecution.NONE);
|
|
9841
9847
|
}
|
|
9842
9848
|
if (await subformTask.endTask(true, false, !terminateTaskGracefully, true)) {
|
|
9843
9849
|
let parentTask = destSubForm.getForm().getTask();
|
|
@@ -18983,7 +18989,7 @@ class DataView extends DataViewBase {
|
|
|
18983
18989
|
if (temporaryResetInCtrlPrefix)
|
|
18984
18990
|
this._task.InCtrlPrefix = true;
|
|
18985
18991
|
if (orgAction !== RECOVERY_ACT_NONE)
|
|
18986
|
-
AccessHelper.eventsManager.setStopExecution(true, orgAction !== RECOVERY_ACT_BEGIN_TABLE);
|
|
18992
|
+
AccessHelper.eventsManager.setStopExecution(true, orgAction !== RECOVERY_ACT_BEGIN_TABLE ? ClearEventsOnStopExecution.ALL : ClearEventsOnStopExecution.SERVER);
|
|
18987
18993
|
}
|
|
18988
18994
|
}
|
|
18989
18995
|
replicate() {
|
|
@@ -28712,20 +28718,20 @@ class EventsManager {
|
|
|
28712
28718
|
return null;
|
|
28713
28719
|
return this._currField.getTask();
|
|
28714
28720
|
}
|
|
28715
|
-
setStopExecution(stop,
|
|
28721
|
+
setStopExecution(stop, clearEventsOnStopExecution) {
|
|
28716
28722
|
if (arguments.length === 1)
|
|
28717
28723
|
this.setStopExecution_0(stop);
|
|
28718
28724
|
else
|
|
28719
|
-
this.setStopExecution_1(stop,
|
|
28725
|
+
this.setStopExecution_1(stop, clearEventsOnStopExecution);
|
|
28720
28726
|
}
|
|
28721
28727
|
setStopExecution_0(stop) {
|
|
28722
|
-
this.setStopExecution(stop,
|
|
28728
|
+
this.setStopExecution(stop, ClearEventsOnStopExecution.ALL);
|
|
28723
28729
|
}
|
|
28724
|
-
setStopExecution_1(stop,
|
|
28730
|
+
setStopExecution_1(stop, clearEventsOnStopExecution) {
|
|
28725
28731
|
if (stop)
|
|
28726
|
-
if (
|
|
28732
|
+
if (clearEventsOnStopExecution == ClearEventsOnStopExecution.ALL)
|
|
28727
28733
|
this._eventsQueue.clear();
|
|
28728
|
-
else {
|
|
28734
|
+
else if (clearEventsOnStopExecution == ClearEventsOnStopExecution.SERVER) {
|
|
28729
28735
|
let tmpVec = new List();
|
|
28730
28736
|
let rtEvt;
|
|
28731
28737
|
let i;
|
|
@@ -30247,7 +30253,7 @@ class CommandsTable {
|
|
|
30247
30253
|
}
|
|
30248
30254
|
}
|
|
30249
30255
|
|
|
30250
|
-
let CurrentClientVersion = '4.801.0-dev481.
|
|
30256
|
+
let CurrentClientVersion = '4.801.0-dev481.284';
|
|
30251
30257
|
|
|
30252
30258
|
class ClientManager {
|
|
30253
30259
|
constructor() {
|
|
@@ -30701,5 +30707,5 @@ class Process {
|
|
|
30701
30707
|
}
|
|
30702
30708
|
}
|
|
30703
30709
|
|
|
30704
|
-
export { AbortCommand, AccessHelper, ActionManager, AddLocateCommand, AddRangeCommand, AddSortCommand, AddUserLocateDataViewCommand, AddUserLocateRemoteDataViewCommand, AddUserRangeDataviewCommand, AddUserRangeRemoteDataViewCommand, AddUserSortDataViewCommand, AddUserSortRemoteDataViewCommand, Argument, ArgumentsList, Boundary, BrowserEscEventCommand, ClientManager, ClientOriginatedCommand, ClientOriginatedCommandSerializer, ClientOriginatedCommandTaskTag, ClientRefreshCommand, ClientTargetedCommandBase, ClientTargetedCommandType, ColumnSortEventCommand, CommandFactory, CommandSerializationHelper, CommandsProcessorBase, CommandsProcessorBase_SendingInstruction, CommandsProcessorBase_SessionStage, CommandsProcessorManager, CommandsTable, CompMainPrgTable, ComputeEventCommand, ConstInterface, ConstUtils, ContextTerminationEventCommand, ContextTimeoutResetCommand, ControlItemsRefreshCommand, CookieService, CreatedFormVector, CurrentClientVersion, DataSourceIdKey, DataView, DataViewBase, DataViewCommandBase, DataViewCommandType, DataViewOutputCommand, DataviewCommand, DataviewHeaderBase, DataviewHeaderFactory, DataviewHeaders, DataviewHeadersSaxHandler, DataviewManager, DataviewManagerBase, DcValuesReference, DummyDataViewCommand, DvCache, EnhancedVerifyCommand, EnvParamsTable, Environment, EnvironmentDetails, EvaluateCommand, Event, EventCommand, EventHandler, EventHandlerPosition, EventSubType, EventsAllowedType, EventsManager, ExecOperCommand, ExecutionStack, ExecutionStackEntry, ExpDesc, ExpStrTracker, ExpTable, Expression, ExpressionDict, ExpressionEvaluator, ExpressionLocalJpn, Expression_ReturnValue, FetchDataControlValuesEventCommand, Field, FieldBase, FieldsTable as FieldsTableExt, FlowMonitorInterface, FlowMonitorQueue, FormsTable, GUIManager, GlobalCommandsManager, GlobalParams, GlobalParamsQueryCommand, GuiEventsProcessor, HandlersTable, HeapSort, HttpClientAsync, HttpClientBase, HttpClientEvents, HttpClientSync, HttpManager, HttpUtility, IClientTargetedCommand, IndexChangeEventCommand, IniputForceWriteCommand, InteractiveCommunicationsFailureHandler, Key, LanguageData, LastFocusedManager, MGData, MGDataCollection, MagicBridge, MenusDeserializer, MgControl, MgForm, MgPriorityBlockingQueue, MgPriorityQueue, MirrorExpVal, MirrorPrmMap, MirrorString, NonReversibleExitEventCommand, NullValueException, OpenURLCommand, OpeningTaskDetails, Operation, OperationTable, ParamParseResult, PrmMap, Process, QueryCommand, RCTimer, Recompute, RecomputeCommand, RecomputeTable, Recompute_RcmpBy, Record, RecordOutOfDataViewException, RecordOutOfDataViewException_ExceptionType, RecordsTable, RefreshEventCommand, RefreshScreenEventCommand, RemoteCommandsProcessor, RemoteControlItemsRefreshCommand, RemoteDataViewCommandBase, RemoteDataViewCommandFactory, RemoteDataViewCommandUpdateNonModifiable, RemoteDataviewHeader, RemoteDataviewManager, RemoteTaskService, RequestMethod, ResetLocateCommand, ResetRangeCommand, ResetSortCommand, ResetUserLocateRemoteDataviewCommand, ResetUserRangeRemoteDataviewCommand, ResetUserSortRemoteDataviewCommand, ResultCommand, ResultValue, RetVals, ReturnResult, ReturnResultBase, RollbackEventCommand, RollbackEventCommand_RollbackType, RunTimeEvent, RunTimeEventBase, SET_DISPLAYLINE_BY_DV, Scrambler, SelectProgramCommand, ServerConfig, ServerError, SetTransactionStateDataviewCommand, SetTransactionStateRemoteDataViewCommand, Sort, SortCollection, SubformOpenEventCommand, SubformRefreshEventCommand, TableCache, TableCacheManager, Task, TaskBase, TaskServiceBase, TaskTransactionManager, Task_Direction, Task_Flow, Task_SubformExecModeEnum, TasksTable, Transaction, TransactionCommand, UniqueIDUtils, UnloadCommand, UserDetails, UserEventsTable, UserRange, VerifyCommand, WriteMessageToServerLogCommand, XMLBasedCommandBuilder, XMLBasedDcValuesBuilder, YesNoExp, getGuiEventObj };
|
|
30710
|
+
export { AbortCommand, AccessHelper, ActionManager, AddLocateCommand, AddRangeCommand, AddSortCommand, AddUserLocateDataViewCommand, AddUserLocateRemoteDataViewCommand, AddUserRangeDataviewCommand, AddUserRangeRemoteDataViewCommand, AddUserSortDataViewCommand, AddUserSortRemoteDataViewCommand, Argument, ArgumentsList, Boundary, BrowserEscEventCommand, ClearEventsOnStopExecution, ClientManager, ClientOriginatedCommand, ClientOriginatedCommandSerializer, ClientOriginatedCommandTaskTag, ClientRefreshCommand, ClientTargetedCommandBase, ClientTargetedCommandType, ColumnSortEventCommand, CommandFactory, CommandSerializationHelper, CommandsProcessorBase, CommandsProcessorBase_SendingInstruction, CommandsProcessorBase_SessionStage, CommandsProcessorManager, CommandsTable, CompMainPrgTable, ComputeEventCommand, ConstInterface, ConstUtils, ContextTerminationEventCommand, ContextTimeoutResetCommand, ControlItemsRefreshCommand, CookieService, CreatedFormVector, CurrentClientVersion, DataSourceIdKey, DataView, DataViewBase, DataViewCommandBase, DataViewCommandType, DataViewOutputCommand, DataviewCommand, DataviewHeaderBase, DataviewHeaderFactory, DataviewHeaders, DataviewHeadersSaxHandler, DataviewManager, DataviewManagerBase, DcValuesReference, DummyDataViewCommand, DvCache, EnhancedVerifyCommand, EnvParamsTable, Environment, EnvironmentDetails, EvaluateCommand, Event, EventCommand, EventHandler, EventHandlerPosition, EventSubType, EventsAllowedType, EventsManager, ExecOperCommand, ExecutionStack, ExecutionStackEntry, ExpDesc, ExpStrTracker, ExpTable, Expression, ExpressionDict, ExpressionEvaluator, ExpressionLocalJpn, Expression_ReturnValue, FetchDataControlValuesEventCommand, Field, FieldBase, FieldsTable as FieldsTableExt, FlowMonitorInterface, FlowMonitorQueue, FormsTable, GUIManager, GlobalCommandsManager, GlobalParams, GlobalParamsQueryCommand, GuiEventsProcessor, HandlersTable, HeapSort, HttpClientAsync, HttpClientBase, HttpClientEvents, HttpClientSync, HttpManager, HttpUtility, IClientTargetedCommand, IndexChangeEventCommand, IniputForceWriteCommand, InteractiveCommunicationsFailureHandler, Key, LanguageData, LastFocusedManager, MGData, MGDataCollection, MagicBridge, MenusDeserializer, MgControl, MgForm, MgPriorityBlockingQueue, MgPriorityQueue, MirrorExpVal, MirrorPrmMap, MirrorString, NonReversibleExitEventCommand, NullValueException, OpenURLCommand, OpeningTaskDetails, Operation, OperationTable, ParamParseResult, PrmMap, Process, QueryCommand, RCTimer, Recompute, RecomputeCommand, RecomputeTable, Recompute_RcmpBy, Record, RecordOutOfDataViewException, RecordOutOfDataViewException_ExceptionType, RecordsTable, RefreshEventCommand, RefreshScreenEventCommand, RemoteCommandsProcessor, RemoteControlItemsRefreshCommand, RemoteDataViewCommandBase, RemoteDataViewCommandFactory, RemoteDataViewCommandUpdateNonModifiable, RemoteDataviewHeader, RemoteDataviewManager, RemoteTaskService, RequestMethod, ResetLocateCommand, ResetRangeCommand, ResetSortCommand, ResetUserLocateRemoteDataviewCommand, ResetUserRangeRemoteDataviewCommand, ResetUserSortRemoteDataviewCommand, ResultCommand, ResultValue, RetVals, ReturnResult, ReturnResultBase, RollbackEventCommand, RollbackEventCommand_RollbackType, RunTimeEvent, RunTimeEventBase, SET_DISPLAYLINE_BY_DV, Scrambler, SelectProgramCommand, ServerConfig, ServerError, SetTransactionStateDataviewCommand, SetTransactionStateRemoteDataViewCommand, Sort, SortCollection, SubformOpenEventCommand, SubformRefreshEventCommand, TableCache, TableCacheManager, Task, TaskBase, TaskServiceBase, TaskTransactionManager, Task_Direction, Task_Flow, Task_SubformExecModeEnum, TasksTable, Transaction, TransactionCommand, UniqueIDUtils, UnloadCommand, UserDetails, UserEventsTable, UserRange, VerifyCommand, WriteMessageToServerLogCommand, XMLBasedCommandBuilder, XMLBasedDcValuesBuilder, YesNoExp, getGuiEventObj };
|
|
30705
30711
|
//# sourceMappingURL=magic-xpa-engine.mjs.map
|