@magic-xpa/engine 4.1100.0-dev4110.23 → 4.1100.0-dev4110.236
Sign up to get free protection for your applications and to get access to all the features.
- package/{esm2020 → esm2022}/index.mjs +188 -188
- package/{esm2020 → esm2022}/magic-xpa-engine.mjs +1 -1
- package/esm2022/src/AccessHelper.mjs +15 -0
- package/esm2022/src/ClientManager.mjs +416 -0
- package/esm2022/src/CommandsProcessorBase.mjs +56 -0
- package/esm2022/src/CommandsProcessorManager.mjs +26 -0
- package/esm2022/src/CommandsTable.mjs +162 -0
- package/esm2022/src/ConstInterface.mjs +517 -0
- package/{esm2020 → esm2022}/src/CurrentClientVersion.mjs +2 -2
- package/esm2022/src/FlowMonitorInterface.mjs +16 -0
- package/esm2022/src/GUIManager.mjs +62 -0
- package/esm2022/src/GlobalCommandsManager.mjs +34 -0
- package/esm2022/src/GuiEventsProcessor.mjs +156 -0
- package/{esm2020 → esm2022}/src/ICommandsTable.mjs +1 -1
- package/esm2022/src/ServerConfig.mjs +122 -0
- package/{esm2020 → esm2022}/src/bridge/IGuiEvent.mjs +19 -19
- package/esm2022/src/bridge/MagicBridge.mjs +41 -0
- package/esm2022/src/commands/ClientOriginatedCommandTaskTag.mjs +12 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/AddUserLocateDataViewCommand.mjs +8 -8
- package/{esm2020 → esm2022}/src/commands/ClientToServer/AddUserRangeDataviewCommand.mjs +9 -9
- package/{esm2020 → esm2022}/src/commands/ClientToServer/AddUserSortDataViewCommand.mjs +9 -9
- package/{esm2020 → esm2022}/src/commands/ClientToServer/BrowserEscEventCommand.mjs +23 -23
- package/{esm2020 → esm2022}/src/commands/ClientToServer/ClientOriginatedCommand.mjs +14 -14
- package/esm2022/src/commands/ClientToServer/ClientOriginatedCommandSerializer.mjs +60 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/ColumnSortEventCommand.mjs +26 -26
- package/esm2022/src/commands/ClientToServer/CommandFactory.mjs +260 -0
- package/esm2022/src/commands/ClientToServer/CommandSerializationHelper.mjs +67 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/ComputeEventCommand.mjs +23 -23
- package/{esm2020 → esm2022}/src/commands/ClientToServer/ContextTerminationEventCommand.mjs +20 -20
- package/{esm2020 → esm2022}/src/commands/ClientToServer/ContextTimeoutResetCommand.mjs +19 -19
- package/{esm2020 → esm2022}/src/commands/ClientToServer/ControlItemsRefreshCommand.mjs +8 -8
- package/esm2022/src/commands/ClientToServer/DataViewOutputCommand.mjs +13 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/DataviewCommand.mjs +44 -44
- package/esm2022/src/commands/ClientToServer/EvaluateCommand.mjs +37 -0
- package/esm2022/src/commands/ClientToServer/EventCommand.mjs +40 -0
- package/esm2022/src/commands/ClientToServer/ExecOperCommand.mjs +67 -0
- package/esm2022/src/commands/ClientToServer/FetchDataControlValuesEventCommand.mjs +22 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/GlobalParamsQueryCommand.mjs +10 -10
- package/{esm2020 → esm2022}/src/commands/ClientToServer/ICommandTaskTag.mjs +1 -1
- package/{esm2020 → esm2022}/src/commands/ClientToServer/IndexChangeEventCommand.mjs +21 -21
- package/esm2022/src/commands/ClientToServer/IniputForceWriteCommand.mjs +23 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/NonReversibleExitEventCommand.mjs +23 -23
- package/{esm2020 → esm2022}/src/commands/ClientToServer/QueryCommand.mjs +20 -20
- package/esm2022/src/commands/ClientToServer/RecomputeCommand.mjs +27 -0
- package/esm2022/src/commands/ClientToServer/RefreshEventCommand.mjs +27 -0
- package/esm2022/src/commands/ClientToServer/RefreshScreenEventCommand.mjs +24 -0
- package/esm2022/src/commands/ClientToServer/RollbackEventCommand.mjs +40 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/SelectProgramCommand.mjs +14 -14
- package/{esm2020 → esm2022}/src/commands/ClientToServer/SetTransactionStateDataviewCommand.mjs +9 -9
- package/{esm2020 → esm2022}/src/commands/ClientToServer/SubformOpenEventCommand.mjs +21 -21
- package/esm2022/src/commands/ClientToServer/SubformRefreshEventCommand.mjs +24 -0
- package/esm2022/src/commands/ClientToServer/TransactionCommand.mjs +30 -0
- package/{esm2020 → esm2022}/src/commands/ClientToServer/UnloadCommand.mjs +14 -14
- package/esm2022/src/commands/ClientToServer/WriteMessageToServerLogCommand.mjs +18 -0
- package/esm2022/src/commands/DataViewCommandBase.mjs +8 -0
- package/{esm2020 → esm2022}/src/commands/IClientCommand.mjs +1 -1
- package/esm2022/src/commands/IClientTargetedCommand.mjs +13 -0
- package/{esm2020 → esm2022}/src/commands/IClientToServerCommandInfo.mjs +1 -1
- package/esm2022/src/commands/ServerToClient/AbortCommand.mjs +65 -0
- package/{esm2020 → esm2022}/src/commands/ServerToClient/AddLocateCommand.mjs +21 -21
- package/esm2022/src/commands/ServerToClient/AddRangeCommand.mjs +62 -0
- package/esm2022/src/commands/ServerToClient/AddSortCommand.mjs +33 -0
- package/esm2022/src/commands/ServerToClient/ClientRefreshCommand.mjs +25 -0
- package/esm2022/src/commands/ServerToClient/ClientTargetedCommandBase.mjs +24 -0
- package/esm2022/src/commands/ServerToClient/EnhancedVerifyCommand.mjs +45 -0
- package/esm2022/src/commands/ServerToClient/OpenURLCommand.mjs +221 -0
- package/{esm2020 → esm2022}/src/commands/ServerToClient/ResetLocateCommand.mjs +14 -14
- package/{esm2020 → esm2022}/src/commands/ServerToClient/ResetRangeCommand.mjs +14 -14
- package/{esm2020 → esm2022}/src/commands/ServerToClient/ResetSortCommand.mjs +14 -14
- package/esm2022/src/commands/ServerToClient/ResultCommand.mjs +37 -0
- package/esm2022/src/commands/ServerToClient/VerifyCommand.mjs +83 -0
- package/esm2022/src/commands/ServerToClient/XMLBasedCommandBuilder.mjs +132 -0
- package/{esm2020 → esm2022}/src/communications/IConnectionStateManager.mjs +1 -1
- package/esm2022/src/communications/InteractiveCommunicationsFailureHandler.mjs +15 -0
- package/{esm2020 → esm2022}/src/data/DataSourceIdKey.mjs +2 -2
- package/esm2022/src/data/DataView.mjs +1613 -0
- package/{esm2020 → esm2022}/src/data/DataViewBase.mjs +3 -3
- package/esm2022/src/data/DataviewManager.mjs +28 -0
- package/esm2022/src/data/DataviewManagerBase.mjs +15 -0
- package/esm2022/src/data/DvCache.mjs +67 -0
- package/esm2022/src/data/Field.mjs +646 -0
- package/esm2022/src/data/FieldBase.mjs +15 -0
- package/esm2022/src/data/FieldsTable.mjs +103 -0
- package/{esm2020 → esm2022}/src/data/IRecordsTable.mjs +1 -1
- package/esm2022/src/data/Key.mjs +88 -0
- package/esm2022/src/data/Record.mjs +866 -0
- package/{esm2020 → esm2022}/src/data/RecordOutOfDataViewException.mjs +15 -15
- package/esm2022/src/data/RecordsTable.mjs +267 -0
- package/esm2022/src/data/TaskTransactionManager.mjs +103 -0
- package/esm2022/src/data/XMLBasedDcValuesBuilder.mjs +74 -0
- package/{esm2020 → esm2022}/src/enums.mjs +23 -23
- package/esm2022/src/env/EnvVariablesTable.mjs +340 -0
- package/esm2022/src/env/Environment.mjs +487 -0
- package/{esm2020 → esm2022}/src/env/ILanguageData.mjs +1 -1
- package/esm2022/src/env/LanguageData.mjs +227 -0
- package/esm2022/src/env/MirrorString.mjs +65 -0
- package/esm2022/src/event/ActionManager.mjs +91 -0
- package/esm2022/src/event/Event.mjs +1333 -0
- package/esm2022/src/event/EventHandler.mjs +766 -0
- package/esm2022/src/event/EventHandlerPosition.mjs +204 -0
- package/esm2022/src/event/EventsManager.mjs +2988 -0
- package/{esm2020 → esm2022}/src/event/IEventsManager.mjs +6 -6
- package/esm2022/src/event/RunTimeEvent.mjs +399 -0
- package/{esm2020 → esm2022}/src/event/RunTimeEventBase.mjs +3 -3
- package/esm2022/src/event/UserEventsTable.mjs +47 -0
- package/esm2022/src/exp/ExpTable.mjs +57 -0
- package/esm2022/src/exp/Expression.mjs +200 -0
- package/esm2022/src/exp/ExpressionDict.mjs +727 -0
- package/esm2022/src/exp/ExpressionEvaluator.mjs +4206 -0
- package/esm2022/src/exp/ExpressionLocalJpn.mjs +314 -0
- package/esm2022/src/exp/GlobalParamsTable.mjs +85 -0
- package/esm2022/src/exp/YesNoExp.mjs +36 -0
- package/esm2022/src/gui/CreatedFormVector.mjs +23 -0
- package/esm2022/src/gui/FormsTable.mjs +66 -0
- package/esm2022/src/gui/MgControl.mjs +363 -0
- package/esm2022/src/gui/MgForm.mjs +1224 -0
- package/esm2022/src/http/HttpManager.mjs +97 -0
- package/esm2022/src/http/client/HttpClientAsync.mjs +68 -0
- package/esm2022/src/http/client/HttpClientBase.mjs +132 -0
- package/esm2022/src/http/client/HttpClientEvents.mjs +39 -0
- package/esm2022/src/http/client/HttpClientSync.mjs +42 -0
- package/esm2022/src/http/client/HttpUtility.mjs +84 -0
- package/{esm2020 → esm2022}/src/http/client/ICommunicationsFailureHandler.mjs +1 -1
- package/esm2022/src/remote/AddUserLocateRemoteDataViewCommand.mjs +18 -0
- package/esm2022/src/remote/AddUserRangeRemoteDataViewCommand.mjs +18 -0
- package/esm2022/src/remote/AddUserSortRemoteDataViewCommand.mjs +18 -0
- package/esm2022/src/remote/RemoteCommandsProcessor.mjs +880 -0
- package/esm2022/src/remote/RemoteControlItemsRefreshCommand.mjs +25 -0
- package/esm2022/src/remote/RemoteDataViewCommandBase.mjs +24 -0
- package/esm2022/src/remote/RemoteDataViewCommandFactory.mjs +61 -0
- package/{esm2020 → esm2022}/src/remote/RemoteDataViewCommandUpdateNonModifiable.mjs +15 -15
- package/{esm2020 → esm2022}/src/remote/RemoteDataviewManager.mjs +17 -17
- package/{esm2020 → esm2022}/src/remote/RemoteInitDataViewCommand.mjs +10 -10
- package/esm2022/src/remote/ResetUserLocateRemoteDataviewCommand.mjs +17 -0
- package/{esm2020 → esm2022}/src/remote/ResetUserRangeRemoteDataviewCommand.mjs +12 -12
- package/esm2022/src/remote/ResetUserSortRemoteDataviewCommand.mjs +16 -0
- package/esm2022/src/remote/ServerError.mjs +40 -0
- package/esm2022/src/remote/SetTransactionStateRemoteDataViewCommand.mjs +20 -0
- package/esm2022/src/rt/Argument.mjs +265 -0
- package/esm2022/src/rt/ArgumentsList.mjs +103 -0
- package/esm2022/src/rt/Boundary.mjs +152 -0
- package/esm2022/src/rt/CompMainPrgTable.mjs +63 -0
- package/{esm2020 → esm2022}/src/rt/DataviewHeaderBase.mjs +98 -96
- package/{esm2020 → esm2022}/src/rt/DataviewHeaderFactory.mjs +6 -6
- package/esm2022/src/rt/DataviewHeaders.mjs +53 -0
- package/esm2022/src/rt/DataviewHeadersSaxHandler.mjs +38 -0
- package/esm2022/src/rt/ExecutionStack.mjs +94 -0
- package/{esm2020 → esm2022}/src/rt/ExecutionStackEntry.mjs +17 -17
- package/esm2022/src/rt/HandlersTable.mjs +96 -0
- package/{esm2020 → esm2022}/src/rt/IDataSourceViewDefinition.mjs +1 -1
- package/{esm2020 → esm2022}/src/rt/IDataviewHeader.mjs +1 -1
- package/{esm2020 → esm2022}/src/rt/IResultValue.mjs +1 -1
- package/esm2022/src/rt/LastFocusedManager.mjs +65 -0
- package/esm2022/src/rt/Operation.mjs +735 -0
- package/esm2022/src/rt/OperationTable.mjs +67 -0
- package/esm2022/src/rt/Recompute.mjs +355 -0
- package/esm2022/src/rt/RecomputeTable.mjs +63 -0
- package/esm2022/src/rt/RemoteDataviewHeader.mjs +108 -0
- package/esm2022/src/rt/ResultValue.mjs +10 -0
- package/esm2022/src/rt/TableCache.mjs +177 -0
- package/esm2022/src/rt/TableCacheManager.mjs +67 -0
- package/esm2022/src/rt/Transaction.mjs +53 -0
- package/esm2022/src/security/UserDetails.mjs +71 -0
- package/{esm2020 → esm2022}/src/tasks/IMGDataCollection.mjs +1 -1
- package/esm2022/src/tasks/MGData.mjs +552 -0
- package/esm2022/src/tasks/MGDataCollection.mjs +252 -0
- package/esm2022/src/tasks/RCTimer.mjs +63 -0
- package/esm2022/src/tasks/RemoteTaskService.mjs +45 -0
- package/esm2022/src/tasks/Task.mjs +2499 -0
- package/esm2022/src/tasks/TaskBase.mjs +83 -0
- package/esm2022/src/tasks/TaskServiceBase.mjs +25 -0
- package/esm2022/src/tasks/TasksTable.mjs +80 -0
- package/esm2022/src/tasks/sort/Sort.mjs +5 -0
- package/esm2022/src/tasks/sort/SortCollection.mjs +67 -0
- package/esm2022/src/util/ConstUtils.mjs +14 -0
- package/esm2022/src/util/FlowMonitorQueue.mjs +451 -0
- package/esm2022/src/util/HeapSort.mjs +70 -0
- package/{esm2020 → esm2022}/src/util/IMirrorXML.mjs +1 -1
- package/{esm2020 → esm2022}/src/util/IServerConfig.mjs +1 -1
- package/{esm2020 → esm2022}/src/util/MgBlockingQueue.mjs +1 -1
- package/esm2022/src/util/MgPriorityBlockingQueue.mjs +74 -0
- package/esm2022/src/util/MgPriorityQueue.mjs +66 -0
- package/{esm2020 → esm2022}/src/util/ParamParseResult.mjs +7 -7
- package/esm2022/src/util/PrmMap.mjs +152 -0
- package/esm2022/src/util/ReturnResult.mjs +46 -0
- package/esm2022/src/util/ReturnResultBase.mjs +18 -0
- package/esm2022/src/util/Scrambler.mjs +89 -0
- package/esm2022/src/util/UniqueIDUtils.mjs +13 -0
- package/esm2022/src/util/cookie.service.mjs +92 -0
- package/{fesm2020 → fesm2022}/magic-xpa-engine.mjs +29797 -29693
- package/fesm2022/magic-xpa-engine.mjs.map +1 -0
- package/index.d.ts +187 -187
- package/package.json +8 -14
- package/src/AccessHelper.d.ts +20 -20
- package/src/ClientManager.d.ts +35 -32
- package/src/CommandsProcessorBase.d.ts +23 -23
- package/src/CommandsProcessorManager.d.ts +6 -6
- package/src/CommandsTable.d.ts +22 -22
- package/src/ConstInterface.d.ts +516 -515
- package/src/CurrentClientVersion.d.ts +1 -1
- package/src/FlowMonitorInterface.d.ts +15 -15
- package/src/GUIManager.d.ts +17 -17
- package/src/GlobalCommandsManager.d.ts +17 -17
- package/src/GuiEventsProcessor.d.ts +24 -24
- package/src/ICommandsTable.d.ts +9 -9
- package/src/ServerConfig.d.ts +35 -34
- package/src/bridge/IGuiEvent.d.ts +19 -19
- package/src/bridge/MagicBridge.d.ts +16 -16
- package/src/commands/ClientOriginatedCommandTaskTag.d.ts +8 -8
- package/src/commands/ClientToServer/AddUserLocateDataViewCommand.d.ts +4 -4
- package/src/commands/ClientToServer/AddUserRangeDataviewCommand.d.ts +6 -6
- package/src/commands/ClientToServer/AddUserSortDataViewCommand.d.ts +6 -6
- package/src/commands/ClientToServer/BrowserEscEventCommand.d.ts +8 -8
- package/src/commands/ClientToServer/ClientOriginatedCommand.d.ts +8 -8
- package/src/commands/ClientToServer/ClientOriginatedCommandSerializer.d.ts +6 -6
- package/src/commands/ClientToServer/ColumnSortEventCommand.d.ts +10 -10
- package/src/commands/ClientToServer/CommandFactory.d.ts +64 -64
- package/src/commands/ClientToServer/CommandSerializationHelper.d.ts +20 -20
- package/src/commands/ClientToServer/ComputeEventCommand.d.ts +8 -8
- package/src/commands/ClientToServer/ContextTerminationEventCommand.d.ts +7 -7
- package/src/commands/ClientToServer/ContextTimeoutResetCommand.d.ts +7 -7
- package/src/commands/ClientToServer/ControlItemsRefreshCommand.d.ts +6 -6
- package/src/commands/ClientToServer/DataViewOutputCommand.d.ts +9 -9
- package/src/commands/ClientToServer/DataviewCommand.d.ts +32 -32
- package/src/commands/ClientToServer/EvaluateCommand.d.ts +15 -15
- package/src/commands/ClientToServer/EventCommand.d.ts +15 -15
- package/src/commands/ClientToServer/ExecOperCommand.d.ts +23 -23
- package/src/commands/ClientToServer/FetchDataControlValuesEventCommand.d.ts +8 -8
- package/src/commands/ClientToServer/GlobalParamsQueryCommand.d.ts +5 -5
- package/src/commands/ClientToServer/ICommandTaskTag.d.ts +3 -3
- package/src/commands/ClientToServer/IndexChangeEventCommand.d.ts +8 -8
- package/src/commands/ClientToServer/IniputForceWriteCommand.d.ts +10 -10
- package/src/commands/ClientToServer/NonReversibleExitEventCommand.d.ts +8 -8
- package/src/commands/ClientToServer/QueryCommand.d.ts +8 -8
- package/src/commands/ClientToServer/RecomputeCommand.d.ts +11 -11
- package/src/commands/ClientToServer/RefreshEventCommand.d.ts +12 -12
- package/src/commands/ClientToServer/RefreshScreenEventCommand.d.ts +10 -10
- package/src/commands/ClientToServer/RollbackEventCommand.d.ts +14 -14
- package/src/commands/ClientToServer/SelectProgramCommand.d.ts +6 -6
- package/src/commands/ClientToServer/SetTransactionStateDataviewCommand.d.ts +5 -5
- package/src/commands/ClientToServer/SubformOpenEventCommand.d.ts +8 -8
- package/src/commands/ClientToServer/SubformRefreshEventCommand.d.ts +9 -9
- package/src/commands/ClientToServer/TransactionCommand.d.ts +12 -12
- package/src/commands/ClientToServer/UnloadCommand.d.ts +7 -7
- package/src/commands/ClientToServer/WriteMessageToServerLogCommand.d.ts +6 -6
- package/src/commands/DataViewCommandBase.d.ts +6 -6
- package/src/commands/IClientCommand.d.ts +2 -2
- package/src/commands/IClientTargetedCommand.d.ts +12 -12
- package/src/commands/IClientToServerCommandInfo.d.ts +3 -3
- package/src/commands/ServerToClient/AbortCommand.d.ts +11 -11
- package/src/commands/ServerToClient/AddLocateCommand.d.ts +6 -6
- package/src/commands/ServerToClient/AddRangeCommand.d.ts +10 -10
- package/src/commands/ServerToClient/AddSortCommand.d.ts +9 -9
- package/src/commands/ServerToClient/ClientRefreshCommand.d.ts +7 -7
- package/src/commands/ServerToClient/ClientTargetedCommandBase.d.ts +12 -12
- package/src/commands/ServerToClient/EnhancedVerifyCommand.d.ts +13 -13
- package/src/commands/ServerToClient/OpenURLCommand.d.ts +21 -21
- package/src/commands/ServerToClient/ResetLocateCommand.d.ts +6 -6
- package/src/commands/ServerToClient/ResetRangeCommand.d.ts +6 -6
- package/src/commands/ServerToClient/ResetSortCommand.d.ts +6 -6
- package/src/commands/ServerToClient/ResultCommand.d.ts +10 -10
- package/src/commands/ServerToClient/VerifyCommand.d.ts +17 -17
- package/src/commands/ServerToClient/XMLBasedCommandBuilder.d.ts +11 -11
- package/src/communications/IConnectionStateManager.d.ts +4 -4
- package/src/communications/InteractiveCommunicationsFailureHandler.d.ts +6 -6
- package/src/data/DataSourceIdKey.d.ts +2 -2
- package/src/data/DataView.d.ts +162 -162
- package/src/data/DataViewBase.d.ts +12 -12
- package/src/data/DataviewManager.d.ts +14 -14
- package/src/data/DataviewManagerBase.d.ts +11 -11
- package/src/data/DvCache.d.ts +15 -15
- package/src/data/Field.d.ts +103 -103
- package/src/data/FieldBase.d.ts +23 -23
- package/src/data/FieldsTable.d.ts +27 -27
- package/src/data/IRecordsTable.d.ts +7 -7
- package/src/data/Key.d.ts +15 -15
- package/src/data/Record.d.ts +156 -156
- package/src/data/RecordOutOfDataViewException.d.ts +10 -10
- package/src/data/RecordsTable.d.ts +38 -38
- package/src/data/TaskTransactionManager.d.ts +17 -17
- package/src/data/XMLBasedDcValuesBuilder.d.ts +11 -11
- package/src/enums.d.ts +21 -21
- package/src/env/EnvVariablesTable.d.ts +17 -17
- package/src/env/Environment.d.ts +118 -118
- package/src/env/ILanguageData.d.ts +3 -3
- package/src/env/LanguageData.d.ts +20 -20
- package/src/env/MirrorString.d.ts +15 -15
- package/src/event/ActionManager.d.ts +14 -14
- package/src/event/Event.d.ts +79 -79
- package/src/event/EventHandler.d.ts +66 -66
- package/src/event/EventHandlerPosition.d.ts +25 -25
- package/src/event/EventsManager.d.ts +205 -204
- package/src/event/IEventsManager.d.ts +77 -77
- package/src/event/RunTimeEvent.d.ts +126 -123
- package/src/event/RunTimeEventBase.d.ts +5 -5
- package/src/event/UserEventsTable.d.ts +11 -11
- package/src/exp/ExpTable.d.ts +11 -11
- package/src/exp/Expression.d.ts +37 -37
- package/src/exp/ExpressionDict.d.ts +12 -12
- package/src/exp/ExpressionEvaluator.d.ts +198 -198
- package/src/exp/ExpressionLocalJpn.d.ts +18 -18
- package/src/exp/GlobalParamsTable.d.ts +19 -19
- package/src/exp/YesNoExp.d.ts +9 -9
- package/src/gui/CreatedFormVector.d.ts +10 -10
- package/src/gui/FormsTable.d.ts +15 -15
- package/src/gui/MgControl.d.ts +60 -60
- package/src/gui/MgForm.d.ts +96 -93
- package/src/http/HttpManager.d.ts +25 -25
- package/src/http/client/HttpClientAsync.d.ts +16 -16
- package/src/http/client/HttpClientBase.d.ts +30 -30
- package/src/http/client/HttpClientEvents.d.ts +18 -18
- package/src/http/client/HttpClientSync.d.ts +17 -17
- package/src/http/client/HttpUtility.d.ts +10 -10
- package/src/http/client/ICommunicationsFailureHandler.d.ts +5 -5
- package/src/remote/AddUserLocateRemoteDataViewCommand.d.ts +8 -8
- package/src/remote/AddUserRangeRemoteDataViewCommand.d.ts +8 -8
- package/src/remote/AddUserSortRemoteDataViewCommand.d.ts +8 -8
- package/src/remote/RemoteCommandsProcessor.d.ts +51 -51
- package/src/remote/RemoteControlItemsRefreshCommand.d.ts +8 -8
- package/src/remote/RemoteDataViewCommandBase.d.ts +10 -10
- package/src/remote/RemoteDataViewCommandFactory.d.ts +6 -6
- package/src/remote/RemoteDataViewCommandUpdateNonModifiable.d.ts +8 -8
- package/src/remote/RemoteDataviewManager.d.ts +9 -9
- package/src/remote/RemoteInitDataViewCommand.d.ts +7 -7
- package/src/remote/ResetUserLocateRemoteDataviewCommand.d.ts +7 -7
- package/src/remote/ResetUserRangeRemoteDataviewCommand.d.ts +7 -7
- package/src/remote/ResetUserSortRemoteDataviewCommand.d.ts +7 -7
- package/src/remote/ServerError.d.ts +16 -16
- package/src/remote/SetTransactionStateRemoteDataViewCommand.d.ts +8 -8
- package/src/rt/Argument.d.ts +36 -36
- package/src/rt/ArgumentsList.d.ts +24 -24
- package/src/rt/Boundary.d.ts +27 -27
- package/src/rt/CompMainPrgTable.d.ts +10 -10
- package/src/rt/DataviewHeaderBase.d.ts +34 -34
- package/src/rt/DataviewHeaderFactory.d.ts +5 -5
- package/src/rt/DataviewHeaders.d.ts +12 -12
- package/src/rt/DataviewHeadersSaxHandler.d.ts +10 -10
- package/src/rt/ExecutionStack.d.ts +22 -22
- package/src/rt/ExecutionStackEntry.d.ts +7 -7
- package/src/rt/HandlersTable.d.ts +19 -19
- package/src/rt/IDataSourceViewDefinition.d.ts +6 -6
- package/src/rt/IDataviewHeader.d.ts +10 -10
- package/src/rt/IResultValue.d.ts +4 -4
- package/src/rt/LastFocusedManager.d.ts +23 -23
- package/src/rt/Operation.d.ts +97 -97
- package/src/rt/OperationTable.d.ts +15 -15
- package/src/rt/Recompute.d.ts +41 -41
- package/src/rt/RecomputeTable.d.ts +9 -9
- package/src/rt/RemoteDataviewHeader.d.ts +14 -14
- package/src/rt/ResultValue.d.ts +7 -7
- package/src/rt/TableCache.d.ts +29 -29
- package/src/rt/TableCacheManager.d.ts +10 -10
- package/src/rt/Transaction.d.ts +23 -23
- package/src/security/UserDetails.d.ts +16 -16
- package/src/tasks/IMGDataCollection.d.ts +26 -26
- package/src/tasks/MGData.d.ts +63 -63
- package/src/tasks/MGDataCollection.d.ts +42 -42
- package/src/tasks/RCTimer.d.ts +13 -13
- package/src/tasks/RemoteTaskService.d.ts +16 -16
- package/src/tasks/Task.d.ts +312 -312
- package/src/tasks/TaskBase.d.ts +123 -123
- package/src/tasks/TaskServiceBase.d.ts +16 -16
- package/src/tasks/TasksTable.d.ts +21 -21
- package/src/tasks/sort/Sort.d.ts +4 -4
- package/src/tasks/sort/SortCollection.d.ts +11 -11
- package/src/util/ConstUtils.d.ts +3 -3
- package/src/util/FlowMonitorQueue.d.ts +70 -70
- package/src/util/HeapSort.d.ts +6 -6
- package/src/util/IMirrorXML.d.ts +6 -6
- package/src/util/IServerConfig.d.ts +11 -11
- package/src/util/MgBlockingQueue.d.ts +5 -5
- package/src/util/MgPriorityBlockingQueue.d.ts +17 -17
- package/src/util/MgPriorityQueue.d.ts +13 -13
- package/src/util/ParamParseResult.d.ts +6 -6
- package/src/util/PrmMap.d.ts +28 -28
- package/src/util/ReturnResult.d.ts +18 -18
- package/src/util/ReturnResultBase.d.ts +11 -11
- package/src/util/Scrambler.d.ts +10 -10
- package/src/util/UniqueIDUtils.d.ts +4 -4
- package/src/util/cookie.service.d.ts +8 -8
- package/esm2020/src/AccessHelper.mjs +0 -9
- package/esm2020/src/ClientManager.mjs +0 -399
- package/esm2020/src/CommandsProcessorBase.mjs +0 -58
- package/esm2020/src/CommandsProcessorManager.mjs +0 -26
- package/esm2020/src/CommandsTable.mjs +0 -162
- package/esm2020/src/ConstInterface.mjs +0 -516
- package/esm2020/src/FlowMonitorInterface.mjs +0 -16
- package/esm2020/src/GUIManager.mjs +0 -62
- package/esm2020/src/GlobalCommandsManager.mjs +0 -34
- package/esm2020/src/GuiEventsProcessor.mjs +0 -154
- package/esm2020/src/ServerConfig.mjs +0 -117
- package/esm2020/src/bridge/MagicBridge.mjs +0 -41
- package/esm2020/src/commands/ClientOriginatedCommandTaskTag.mjs +0 -11
- package/esm2020/src/commands/ClientToServer/ClientOriginatedCommandSerializer.mjs +0 -60
- package/esm2020/src/commands/ClientToServer/CommandFactory.mjs +0 -260
- package/esm2020/src/commands/ClientToServer/CommandSerializationHelper.mjs +0 -69
- package/esm2020/src/commands/ClientToServer/DataViewOutputCommand.mjs +0 -13
- package/esm2020/src/commands/ClientToServer/EvaluateCommand.mjs +0 -36
- package/esm2020/src/commands/ClientToServer/EventCommand.mjs +0 -40
- package/esm2020/src/commands/ClientToServer/ExecOperCommand.mjs +0 -67
- package/esm2020/src/commands/ClientToServer/FetchDataControlValuesEventCommand.mjs +0 -22
- package/esm2020/src/commands/ClientToServer/IniputForceWriteCommand.mjs +0 -23
- package/esm2020/src/commands/ClientToServer/RecomputeCommand.mjs +0 -27
- package/esm2020/src/commands/ClientToServer/RefreshEventCommand.mjs +0 -27
- package/esm2020/src/commands/ClientToServer/RefreshScreenEventCommand.mjs +0 -24
- package/esm2020/src/commands/ClientToServer/RollbackEventCommand.mjs +0 -39
- package/esm2020/src/commands/ClientToServer/SubformRefreshEventCommand.mjs +0 -24
- package/esm2020/src/commands/ClientToServer/TransactionCommand.mjs +0 -28
- package/esm2020/src/commands/ClientToServer/WriteMessageToServerLogCommand.mjs +0 -18
- package/esm2020/src/commands/DataViewCommandBase.mjs +0 -10
- package/esm2020/src/commands/IClientTargetedCommand.mjs +0 -9
- package/esm2020/src/commands/ServerToClient/AbortCommand.mjs +0 -65
- package/esm2020/src/commands/ServerToClient/AddRangeCommand.mjs +0 -62
- package/esm2020/src/commands/ServerToClient/AddSortCommand.mjs +0 -33
- package/esm2020/src/commands/ServerToClient/ClientRefreshCommand.mjs +0 -25
- package/esm2020/src/commands/ServerToClient/ClientTargetedCommandBase.mjs +0 -27
- package/esm2020/src/commands/ServerToClient/EnhancedVerifyCommand.mjs +0 -45
- package/esm2020/src/commands/ServerToClient/OpenURLCommand.mjs +0 -221
- package/esm2020/src/commands/ServerToClient/ResultCommand.mjs +0 -37
- package/esm2020/src/commands/ServerToClient/VerifyCommand.mjs +0 -83
- package/esm2020/src/commands/ServerToClient/XMLBasedCommandBuilder.mjs +0 -132
- package/esm2020/src/communications/InteractiveCommunicationsFailureHandler.mjs +0 -17
- package/esm2020/src/data/DataView.mjs +0 -1610
- package/esm2020/src/data/DataviewManager.mjs +0 -28
- package/esm2020/src/data/DataviewManagerBase.mjs +0 -15
- package/esm2020/src/data/DvCache.mjs +0 -67
- package/esm2020/src/data/Field.mjs +0 -646
- package/esm2020/src/data/FieldBase.mjs +0 -18
- package/esm2020/src/data/FieldsTable.mjs +0 -103
- package/esm2020/src/data/Key.mjs +0 -88
- package/esm2020/src/data/Record.mjs +0 -846
- package/esm2020/src/data/RecordsTable.mjs +0 -267
- package/esm2020/src/data/TaskTransactionManager.mjs +0 -103
- package/esm2020/src/data/XMLBasedDcValuesBuilder.mjs +0 -74
- package/esm2020/src/env/EnvVariablesTable.mjs +0 -340
- package/esm2020/src/env/Environment.mjs +0 -489
- package/esm2020/src/env/LanguageData.mjs +0 -226
- package/esm2020/src/env/MirrorString.mjs +0 -65
- package/esm2020/src/event/ActionManager.mjs +0 -91
- package/esm2020/src/event/Event.mjs +0 -1333
- package/esm2020/src/event/EventHandler.mjs +0 -766
- package/esm2020/src/event/EventHandlerPosition.mjs +0 -204
- package/esm2020/src/event/EventsManager.mjs +0 -2975
- package/esm2020/src/event/RunTimeEvent.mjs +0 -392
- package/esm2020/src/event/UserEventsTable.mjs +0 -47
- package/esm2020/src/exp/ExpTable.mjs +0 -59
- package/esm2020/src/exp/Expression.mjs +0 -200
- package/esm2020/src/exp/ExpressionDict.mjs +0 -727
- package/esm2020/src/exp/ExpressionEvaluator.mjs +0 -4212
- package/esm2020/src/exp/ExpressionLocalJpn.mjs +0 -314
- package/esm2020/src/exp/GlobalParamsTable.mjs +0 -85
- package/esm2020/src/exp/YesNoExp.mjs +0 -36
- package/esm2020/src/gui/CreatedFormVector.mjs +0 -23
- package/esm2020/src/gui/FormsTable.mjs +0 -66
- package/esm2020/src/gui/MgControl.mjs +0 -353
- package/esm2020/src/gui/MgForm.mjs +0 -1181
- package/esm2020/src/http/HttpManager.mjs +0 -97
- package/esm2020/src/http/client/HttpClientAsync.mjs +0 -67
- package/esm2020/src/http/client/HttpClientBase.mjs +0 -132
- package/esm2020/src/http/client/HttpClientEvents.mjs +0 -39
- package/esm2020/src/http/client/HttpClientSync.mjs +0 -42
- package/esm2020/src/http/client/HttpUtility.mjs +0 -84
- package/esm2020/src/remote/AddUserLocateRemoteDataViewCommand.mjs +0 -18
- package/esm2020/src/remote/AddUserRangeRemoteDataViewCommand.mjs +0 -18
- package/esm2020/src/remote/AddUserSortRemoteDataViewCommand.mjs +0 -18
- package/esm2020/src/remote/RemoteCommandsProcessor.mjs +0 -880
- package/esm2020/src/remote/RemoteControlItemsRefreshCommand.mjs +0 -25
- package/esm2020/src/remote/RemoteDataViewCommandBase.mjs +0 -24
- package/esm2020/src/remote/RemoteDataViewCommandFactory.mjs +0 -61
- package/esm2020/src/remote/ResetUserLocateRemoteDataviewCommand.mjs +0 -17
- package/esm2020/src/remote/ResetUserSortRemoteDataviewCommand.mjs +0 -16
- package/esm2020/src/remote/ServerError.mjs +0 -40
- package/esm2020/src/remote/SetTransactionStateRemoteDataViewCommand.mjs +0 -20
- package/esm2020/src/rt/Argument.mjs +0 -265
- package/esm2020/src/rt/ArgumentsList.mjs +0 -103
- package/esm2020/src/rt/Boundary.mjs +0 -152
- package/esm2020/src/rt/CompMainPrgTable.mjs +0 -65
- package/esm2020/src/rt/DataviewHeaders.mjs +0 -53
- package/esm2020/src/rt/DataviewHeadersSaxHandler.mjs +0 -38
- package/esm2020/src/rt/ExecutionStack.mjs +0 -94
- package/esm2020/src/rt/HandlersTable.mjs +0 -96
- package/esm2020/src/rt/LastFocusedManager.mjs +0 -67
- package/esm2020/src/rt/Operation.mjs +0 -735
- package/esm2020/src/rt/OperationTable.mjs +0 -67
- package/esm2020/src/rt/Recompute.mjs +0 -355
- package/esm2020/src/rt/RecomputeTable.mjs +0 -63
- package/esm2020/src/rt/RemoteDataviewHeader.mjs +0 -108
- package/esm2020/src/rt/ResultValue.mjs +0 -12
- package/esm2020/src/rt/TableCache.mjs +0 -177
- package/esm2020/src/rt/TableCacheManager.mjs +0 -67
- package/esm2020/src/rt/Transaction.mjs +0 -53
- package/esm2020/src/security/UserDetails.mjs +0 -71
- package/esm2020/src/tasks/MGData.mjs +0 -552
- package/esm2020/src/tasks/MGDataCollection.mjs +0 -252
- package/esm2020/src/tasks/RCTimer.mjs +0 -63
- package/esm2020/src/tasks/RemoteTaskService.mjs +0 -45
- package/esm2020/src/tasks/Task.mjs +0 -2495
- package/esm2020/src/tasks/TaskBase.mjs +0 -87
- package/esm2020/src/tasks/TaskServiceBase.mjs +0 -25
- package/esm2020/src/tasks/TasksTable.mjs +0 -80
- package/esm2020/src/tasks/sort/Sort.mjs +0 -7
- package/esm2020/src/tasks/sort/SortCollection.mjs +0 -67
- package/esm2020/src/util/ConstUtils.mjs +0 -14
- package/esm2020/src/util/FlowMonitorQueue.mjs +0 -453
- package/esm2020/src/util/HeapSort.mjs +0 -70
- package/esm2020/src/util/MgPriorityBlockingQueue.mjs +0 -74
- package/esm2020/src/util/MgPriorityQueue.mjs +0 -66
- package/esm2020/src/util/PrmMap.mjs +0 -151
- package/esm2020/src/util/ReturnResult.mjs +0 -46
- package/esm2020/src/util/ReturnResultBase.mjs +0 -18
- package/esm2020/src/util/Scrambler.mjs +0 -89
- package/esm2020/src/util/UniqueIDUtils.mjs +0 -12
- package/esm2020/src/util/cookie.service.mjs +0 -92
- package/fesm2015/magic-xpa-engine.mjs +0 -30835
- package/fesm2015/magic-xpa-engine.mjs.map +0 -1
- package/fesm2020/magic-xpa-engine.mjs.map +0 -1
package/src/gui/MgControl.d.ts
CHANGED
@@ -1,60 +1,60 @@
|
|
1
|
-
import { CommandType, MgControlBase, MgFormBase, PropParentInterface } from '@magic-xpa/gui';
|
2
|
-
import { MgControlType, TableBehaviour, XmlParser } from '@magic-xpa/utils';
|
3
|
-
import { ArgumentsList } from '../rt/ArgumentsList';
|
4
|
-
import { TaskBase } from '../tasks/TaskBase';
|
5
|
-
import { MgForm } from './MgForm';
|
6
|
-
export declare class MgControl extends MgControlBase implements PropParentInterface {
|
7
|
-
private _focusedStopExecution;
|
8
|
-
private _inControlSuffix;
|
9
|
-
private _rtEvtTask;
|
10
|
-
private _subformTaskId;
|
11
|
-
private _subformTask;
|
12
|
-
IsInteractiveUpdate: boolean;
|
13
|
-
private refreshOnString;
|
14
|
-
SubformLoaded: boolean;
|
15
|
-
HasZoomHandler: boolean;
|
16
|
-
ArgList: ArgumentsList;
|
17
|
-
static ReturnToCtrl: MgControl;
|
18
|
-
private initialize;
|
19
|
-
constructor();
|
20
|
-
constructor(type: MgControlType);
|
21
|
-
constructor(type: MgControlType, task: TaskBase, parentControl: number);
|
22
|
-
constructor(type: MgControlType, parentMgForm: MgFormBase, parentControlIdx: number);
|
23
|
-
GetVarIndex(): number;
|
24
|
-
fillData(mgForm: MgFormBase, ditIdx: number, parser: XmlParser): Promise<void>;
|
25
|
-
SetAttribute(attribute: string, valueStr: string): boolean;
|
26
|
-
private GetArgumentList;
|
27
|
-
isDescendent(parentForm: MgForm): boolean;
|
28
|
-
refreshOnExpression(): Promise<void>;
|
29
|
-
invoke(): Promise<boolean>;
|
30
|
-
isParkable(checkEnabledAndVisible: boolean): Promise<boolean>;
|
31
|
-
getSubformTaskId(): string;
|
32
|
-
initSubformTask(): void;
|
33
|
-
getParentTable(): MgControl;
|
34
|
-
restoreOldValue(): Promise<void>;
|
35
|
-
setRtEvtTask(curTask: TaskBase): void;
|
36
|
-
getRtEvtTask(): TaskBase;
|
37
|
-
setSubformTaskId(taskId: string): void;
|
38
|
-
isFocusedStopExecution(): boolean;
|
39
|
-
setFocusedStopExecution(focusedStopExecution: boolean): void;
|
40
|
-
onTheSameSubFormControl(ctrl: MgControl): boolean;
|
41
|
-
onDiffForm(ctrl: MgControl): boolean;
|
42
|
-
isInControlSuffix(): boolean;
|
43
|
-
setInControlSuffix(inControlSuffix: boolean): void;
|
44
|
-
HasSelectProgram(): boolean;
|
45
|
-
useZoomHandler(): boolean;
|
46
|
-
updatePropertyLogicNesting(propId: number, commandType: CommandType, val: boolean, updateThis: boolean): Promise<void>;
|
47
|
-
private ShouldSetSubformInvisible;
|
48
|
-
updateSubformChildrenPropValue(propId: number, commandType: CommandType, val: boolean): Promise<void>;
|
49
|
-
Init(): void;
|
50
|
-
GetTableBehaviour(): TableBehaviour;
|
51
|
-
validateAndSetValue(NewValue: any, updateCtrl: boolean): Promise<boolean>;
|
52
|
-
private setValue;
|
53
|
-
getSubformTask(): TaskBase;
|
54
|
-
resetSubformTask(): void;
|
55
|
-
GetSubformMgForm(): MgFormBase;
|
56
|
-
IsTableWithAbsoluteScrollbar(): boolean;
|
57
|
-
static validReturnToCtrl(): boolean;
|
58
|
-
maySetValue(): boolean;
|
59
|
-
validateAndSetValueIfAllowed(NewValue: any, refreshDisplay: boolean): Promise<boolean>;
|
60
|
-
}
|
1
|
+
import { CommandType, MgControlBase, MgFormBase, PropParentInterface } from '@magic-xpa/gui';
|
2
|
+
import { MgControlType, TableBehaviour, XmlParser } from '@magic-xpa/utils';
|
3
|
+
import { ArgumentsList } from '../rt/ArgumentsList';
|
4
|
+
import { TaskBase } from '../tasks/TaskBase';
|
5
|
+
import { MgForm } from './MgForm';
|
6
|
+
export declare class MgControl extends MgControlBase implements PropParentInterface {
|
7
|
+
private _focusedStopExecution;
|
8
|
+
private _inControlSuffix;
|
9
|
+
private _rtEvtTask;
|
10
|
+
private _subformTaskId;
|
11
|
+
private _subformTask;
|
12
|
+
IsInteractiveUpdate: boolean;
|
13
|
+
private refreshOnString;
|
14
|
+
SubformLoaded: boolean;
|
15
|
+
HasZoomHandler: boolean;
|
16
|
+
ArgList: ArgumentsList;
|
17
|
+
static ReturnToCtrl: MgControl;
|
18
|
+
private initialize;
|
19
|
+
constructor();
|
20
|
+
constructor(type: MgControlType);
|
21
|
+
constructor(type: MgControlType, task: TaskBase, parentControl: number);
|
22
|
+
constructor(type: MgControlType, parentMgForm: MgFormBase, parentControlIdx: number);
|
23
|
+
GetVarIndex(): number;
|
24
|
+
fillData(mgForm: MgFormBase, ditIdx: number, parser: XmlParser): Promise<void>;
|
25
|
+
SetAttribute(attribute: string, valueStr: string): boolean;
|
26
|
+
private GetArgumentList;
|
27
|
+
isDescendent(parentForm: MgForm): boolean;
|
28
|
+
refreshOnExpression(): Promise<void>;
|
29
|
+
invoke(): Promise<boolean>;
|
30
|
+
isParkable(checkEnabledAndVisible: boolean): Promise<boolean>;
|
31
|
+
getSubformTaskId(): string;
|
32
|
+
initSubformTask(): void;
|
33
|
+
getParentTable(): MgControl;
|
34
|
+
restoreOldValue(): Promise<void>;
|
35
|
+
setRtEvtTask(curTask: TaskBase): void;
|
36
|
+
getRtEvtTask(): TaskBase;
|
37
|
+
setSubformTaskId(taskId: string): void;
|
38
|
+
isFocusedStopExecution(): boolean;
|
39
|
+
setFocusedStopExecution(focusedStopExecution: boolean): void;
|
40
|
+
onTheSameSubFormControl(ctrl: MgControl): boolean;
|
41
|
+
onDiffForm(ctrl: MgControl): boolean;
|
42
|
+
isInControlSuffix(): boolean;
|
43
|
+
setInControlSuffix(inControlSuffix: boolean): void;
|
44
|
+
HasSelectProgram(): boolean;
|
45
|
+
useZoomHandler(): boolean;
|
46
|
+
updatePropertyLogicNesting(propId: number, commandType: CommandType, val: boolean, updateThis: boolean): Promise<void>;
|
47
|
+
private ShouldSetSubformInvisible;
|
48
|
+
updateSubformChildrenPropValue(propId: number, commandType: CommandType, val: boolean): Promise<void>;
|
49
|
+
Init(): void;
|
50
|
+
GetTableBehaviour(): TableBehaviour;
|
51
|
+
validateAndSetValue(NewValue: any, updateCtrl: boolean): Promise<boolean>;
|
52
|
+
private setValue;
|
53
|
+
getSubformTask(): TaskBase;
|
54
|
+
resetSubformTask(): void;
|
55
|
+
GetSubformMgForm(): MgFormBase;
|
56
|
+
IsTableWithAbsoluteScrollbar(): boolean;
|
57
|
+
static validReturnToCtrl(): boolean;
|
58
|
+
maySetValue(): boolean;
|
59
|
+
validateAndSetValueIfAllowed(NewValue: any, refreshDisplay: boolean): Promise<boolean>;
|
60
|
+
}
|
package/src/gui/MgForm.d.ts
CHANGED
@@ -1,93 +1,96 @@
|
|
1
|
-
import { MgControlBase, MgFormBase } from '@magic-xpa/gui';
|
2
|
-
import { MgControlType } from '@magic-xpa/utils';
|
3
|
-
import { MgControl } from './MgControl';
|
4
|
-
import { Record } from '../data/Record';
|
5
|
-
import { TaskBase } from '../tasks/TaskBase';
|
6
|
-
import { CreatedFormVector } from './CreatedFormVector';
|
7
|
-
export declare class MgForm extends MgFormBase {
|
8
|
-
private static TIME_LIMIT;
|
9
|
-
IsMovingInView: boolean;
|
10
|
-
PrevDisplayLine: number;
|
11
|
-
RefreshAllRows: boolean;
|
12
|
-
IgnoreFirstRecordCycle: boolean;
|
13
|
-
MovedToFirstControl: boolean;
|
14
|
-
private _suffixDone;
|
15
|
-
private hiddenControlsIsnsList;
|
16
|
-
static _createdForms: CreatedFormVector;
|
17
|
-
private _transferringDataToGUI;
|
18
|
-
private isFetchingRecordsAhead;
|
19
|
-
constructor();
|
20
|
-
static get CreatedForms(): CreatedFormVector;
|
21
|
-
get InRestore(): boolean;
|
22
|
-
get TransferringDataToGUI(): boolean;
|
23
|
-
get shouldFetchRecordsAheadFromServer(): boolean;
|
24
|
-
FetchRecordsAheadFromServer(): Promise<void>;
|
25
|
-
private GetDataview;
|
26
|
-
moveInView(unit: string, direction: string): Promise<void>;
|
27
|
-
addRec(doSuffix: boolean, isCrelineAbove: boolean): Promise<void>;
|
28
|
-
delCurrRec(): Promise<void>;
|
29
|
-
cancelEdit(isActCancel: boolean, isQuitEvent: boolean): Promise<void>;
|
30
|
-
refreshOnExpressions(): Promise<void>;
|
31
|
-
removeRefsToCtrls(): void;
|
32
|
-
getCtrlByCtrlName(ctrlName: string): MgControl;
|
33
|
-
getSubFormCtrlByName(ctrlName: string): MgControl;
|
34
|
-
setSuffixDone(): void;
|
35
|
-
getDestinationRow(): number;
|
36
|
-
setSubFormCtrl(subFormCtrl: MgControl): void;
|
37
|
-
getSubFormCtrlForTask(taskId: string): MgControl;
|
38
|
-
removeRecordsAfterIdx(idx: number): void;
|
39
|
-
isRowValidated(idx: number): boolean;
|
40
|
-
transferDataToGui(): Promise<void>;
|
41
|
-
private checkAndCreateRowsEvent;
|
42
|
-
setRowData(desiredTopIndex: number, sendAll: boolean): Promise<void>;
|
43
|
-
private refreshRows;
|
44
|
-
getVisibleLine(): number;
|
45
|
-
bringRecordToPage(): Promise<void>;
|
46
|
-
invalidateTable(): void;
|
47
|
-
getPrevLine(line: number): number;
|
48
|
-
clearTableColumnSortMark(clearSortMark: boolean): void;
|
49
|
-
stopRowEditing(idx: number): Promise<void>;
|
50
|
-
startRowEditing(idx: number): Promise<void>;
|
51
|
-
getIsRowEditingFromGui(displayIndex: number): boolean;
|
52
|
-
RefreshDisplay(refreshType: string): Promise<boolean>;
|
53
|
-
RefreshUI(): void;
|
54
|
-
private refreshTable;
|
55
|
-
updateDisplayLineByDV(): void;
|
56
|
-
setCurrRowByDisplayLine(displayLine: number, doSuffix: boolean, ignoreCurrRec: boolean): Promise<void>;
|
57
|
-
private setCurrRowByRecIdx;
|
58
|
-
getLastValidRow(): number;
|
59
|
-
recordIdx2DisplayLine(recIdx: number): number;
|
60
|
-
displayLine2RecordIdx(displayLine: number): number;
|
61
|
-
restoreOldDisplayLine(displayLine: number): Promise<void>;
|
62
|
-
getTopIndexFromGUI(): number;
|
63
|
-
getCurrRecPosInForm(): number;
|
64
|
-
restoreBackup(oldDisplayLine: number, bkpRecord: Record): Promise<void>;
|
65
|
-
ConstructMgControl(): MgControlBase;
|
66
|
-
ConstructMgControl(type: MgControlType, task: TaskBase, parentControl: number): MgControlBase;
|
67
|
-
ConstructMgControl(type: MgControlType, parentMgForm: MgFormBase, parentControlIdx: number): MgControlBase;
|
68
|
-
private ConstructMgControl_0;
|
69
|
-
private ConstructMgControl_1;
|
70
|
-
private ConstructMgControl_2;
|
71
|
-
alreadyMovedToFirstControl(): boolean;
|
72
|
-
firstTableRefresh(): Promise<void>;
|
73
|
-
InsertTableItems(idx: number, count: number): void;
|
74
|
-
setTableItemsCount(removeAll: boolean): void;
|
75
|
-
InitTableControl(): void;
|
76
|
-
InitTableControl(dvSize: number, tableItemsCount: number, removeAll: boolean): void;
|
77
|
-
private InitTableControl_00;
|
78
|
-
private InitTableControl_01;
|
79
|
-
SetTableTopIndex(): void;
|
80
|
-
createForm(): void
|
81
|
-
UpdateStatusBar(): void;
|
82
|
-
initInnerObjects(foundTagName: string): boolean;
|
83
|
-
toString(): string;
|
84
|
-
GetHiddenControlListXML(): string;
|
85
|
-
ShouldBehaveAsModal(): boolean;
|
86
|
-
isTableWithPagination(): boolean;
|
87
|
-
isTableWithAbsoluteScrollbar(): boolean;
|
88
|
-
private SetRecordsBeforeCurrentView;
|
89
|
-
buildFormName(): string;
|
90
|
-
private fetchPrevChunkForCurrentPage;
|
91
|
-
getGuiRowidx(dvRowIdx: number): number;
|
92
|
-
getDvRowIdx(guiRowIdx: number): number;
|
93
|
-
|
1
|
+
import { MgControlBase, MgFormBase } from '@magic-xpa/gui';
|
2
|
+
import { MgControlType } from '@magic-xpa/utils';
|
3
|
+
import { MgControl } from './MgControl';
|
4
|
+
import { Record } from '../data/Record';
|
5
|
+
import { TaskBase } from '../tasks/TaskBase';
|
6
|
+
import { CreatedFormVector } from './CreatedFormVector';
|
7
|
+
export declare class MgForm extends MgFormBase {
|
8
|
+
private static TIME_LIMIT;
|
9
|
+
IsMovingInView: boolean;
|
10
|
+
PrevDisplayLine: number;
|
11
|
+
RefreshAllRows: boolean;
|
12
|
+
IgnoreFirstRecordCycle: boolean;
|
13
|
+
MovedToFirstControl: boolean;
|
14
|
+
private _suffixDone;
|
15
|
+
private hiddenControlsIsnsList;
|
16
|
+
static _createdForms: CreatedFormVector;
|
17
|
+
private _transferringDataToGUI;
|
18
|
+
private isFetchingRecordsAhead;
|
19
|
+
constructor();
|
20
|
+
static get CreatedForms(): CreatedFormVector;
|
21
|
+
get InRestore(): boolean;
|
22
|
+
get TransferringDataToGUI(): boolean;
|
23
|
+
get shouldFetchRecordsAheadFromServer(): boolean;
|
24
|
+
FetchRecordsAheadFromServer(): Promise<void>;
|
25
|
+
private GetDataview;
|
26
|
+
moveInView(unit: string, direction: string): Promise<void>;
|
27
|
+
addRec(doSuffix: boolean, isCrelineAbove: boolean): Promise<void>;
|
28
|
+
delCurrRec(): Promise<void>;
|
29
|
+
cancelEdit(isActCancel: boolean, isQuitEvent: boolean): Promise<void>;
|
30
|
+
refreshOnExpressions(): Promise<void>;
|
31
|
+
removeRefsToCtrls(): void;
|
32
|
+
getCtrlByCtrlName(ctrlName: string): MgControl;
|
33
|
+
getSubFormCtrlByName(ctrlName: string): MgControl;
|
34
|
+
setSuffixDone(): void;
|
35
|
+
getDestinationRow(): number;
|
36
|
+
setSubFormCtrl(subFormCtrl: MgControl): void;
|
37
|
+
getSubFormCtrlForTask(taskId: string): MgControl;
|
38
|
+
removeRecordsAfterIdx(idx: number): void;
|
39
|
+
isRowValidated(idx: number): boolean;
|
40
|
+
transferDataToGui(): Promise<void>;
|
41
|
+
private checkAndCreateRowsEvent;
|
42
|
+
setRowData(desiredTopIndex: number, sendAll: boolean): Promise<void>;
|
43
|
+
private refreshRows;
|
44
|
+
getVisibleLine(): number;
|
45
|
+
bringRecordToPage(): Promise<void>;
|
46
|
+
invalidateTable(): void;
|
47
|
+
getPrevLine(line: number): number;
|
48
|
+
clearTableColumnSortMark(clearSortMark: boolean): void;
|
49
|
+
stopRowEditing(idx: number): Promise<void>;
|
50
|
+
startRowEditing(idx: number): Promise<void>;
|
51
|
+
getIsRowEditingFromGui(displayIndex: number): boolean;
|
52
|
+
RefreshDisplay(refreshType: string): Promise<boolean>;
|
53
|
+
RefreshUI(): void;
|
54
|
+
private refreshTable;
|
55
|
+
updateDisplayLineByDV(): void;
|
56
|
+
setCurrRowByDisplayLine(displayLine: number, doSuffix: boolean, ignoreCurrRec: boolean): Promise<void>;
|
57
|
+
private setCurrRowByRecIdx;
|
58
|
+
getLastValidRow(): number;
|
59
|
+
recordIdx2DisplayLine(recIdx: number): number;
|
60
|
+
displayLine2RecordIdx(displayLine: number): number;
|
61
|
+
restoreOldDisplayLine(displayLine: number): Promise<void>;
|
62
|
+
getTopIndexFromGUI(): number;
|
63
|
+
getCurrRecPosInForm(): number;
|
64
|
+
restoreBackup(oldDisplayLine: number, bkpRecord: Record): Promise<void>;
|
65
|
+
ConstructMgControl(): MgControlBase;
|
66
|
+
ConstructMgControl(type: MgControlType, task: TaskBase, parentControl: number): MgControlBase;
|
67
|
+
ConstructMgControl(type: MgControlType, parentMgForm: MgFormBase, parentControlIdx: number): MgControlBase;
|
68
|
+
private ConstructMgControl_0;
|
69
|
+
private ConstructMgControl_1;
|
70
|
+
private ConstructMgControl_2;
|
71
|
+
alreadyMovedToFirstControl(): boolean;
|
72
|
+
firstTableRefresh(): Promise<void>;
|
73
|
+
InsertTableItems(idx: number, count: number): void;
|
74
|
+
setTableItemsCount(removeAll: boolean): void;
|
75
|
+
InitTableControl(): void;
|
76
|
+
InitTableControl(dvSize: number, tableItemsCount: number, removeAll: boolean): void;
|
77
|
+
private InitTableControl_00;
|
78
|
+
private InitTableControl_01;
|
79
|
+
SetTableTopIndex(): void;
|
80
|
+
createForm(): Promise<void>;
|
81
|
+
UpdateStatusBar(): void;
|
82
|
+
initInnerObjects(foundTagName: string): boolean;
|
83
|
+
toString(): string;
|
84
|
+
GetHiddenControlListXML(): string;
|
85
|
+
ShouldBehaveAsModal(): boolean;
|
86
|
+
isTableWithPagination(): boolean;
|
87
|
+
isTableWithAbsoluteScrollbar(): boolean;
|
88
|
+
private SetRecordsBeforeCurrentView;
|
89
|
+
buildFormName(): string;
|
90
|
+
private fetchPrevChunkForCurrentPage;
|
91
|
+
getGuiRowidx(dvRowIdx: number): number;
|
92
|
+
getDvRowIdx(guiRowIdx: number): number;
|
93
|
+
moveToFirstParkabelControl(callByDestSubForm: boolean): Promise<void>;
|
94
|
+
private getValidParkableControl;
|
95
|
+
private getFirstParkableControlName;
|
96
|
+
}
|
@@ -1,25 +1,25 @@
|
|
1
|
-
import { RefParam } from "@magic-xpa/mscorelib";
|
2
|
-
import { HttpClient } from "@angular/common/http";
|
3
|
-
import { ICommunicationsFailureHandler } from "./client/ICommunicationsFailureHandler";
|
4
|
-
export declare class HttpManager {
|
5
|
-
private static _instance;
|
6
|
-
static readonly DEFAULT_HTTP_COMMUNICATION_TIMEOUT: number;
|
7
|
-
static readonly DEFAULT_OFFLINE_HTTP_COMMUNICATION_TIMEOUT: number;
|
8
|
-
private _httpCommunicationTimeoutMS;
|
9
|
-
private _httpClientAsync;
|
10
|
-
private getHttpClient;
|
11
|
-
set HttpCommunicationTimeoutMS(value: number);
|
12
|
-
private static _nativeHttpClient;
|
13
|
-
static setNativeHttpClient(httpClient: HttpClient): void;
|
14
|
-
static GetInstance(): HttpManager;
|
15
|
-
private _isAbortingMagicEngine;
|
16
|
-
get IsAbortingMagicEngine(): boolean;
|
17
|
-
set IsAbortingMagicEngine(isAbortingMagicEngine: boolean);
|
18
|
-
private constructor();
|
19
|
-
private RegisterBasicDelegates;
|
20
|
-
GetHttpCommunicationTimeoutMS(): number;
|
21
|
-
SetCommunicationsFailureHandler(handler: ICommunicationsFailureHandler): void;
|
22
|
-
GetContent(requestedURL: string, requestContent: string, useCache: boolean, isError: RefParam<boolean>): Promise<string>;
|
23
|
-
private static CheckAndGetErrorResponse;
|
24
|
-
private static LogAccessToServer;
|
25
|
-
}
|
1
|
+
import { RefParam } from "@magic-xpa/mscorelib";
|
2
|
+
import { HttpClient } from "@angular/common/http";
|
3
|
+
import { ICommunicationsFailureHandler } from "./client/ICommunicationsFailureHandler";
|
4
|
+
export declare class HttpManager {
|
5
|
+
private static _instance;
|
6
|
+
static readonly DEFAULT_HTTP_COMMUNICATION_TIMEOUT: number;
|
7
|
+
static readonly DEFAULT_OFFLINE_HTTP_COMMUNICATION_TIMEOUT: number;
|
8
|
+
private _httpCommunicationTimeoutMS;
|
9
|
+
private _httpClientAsync;
|
10
|
+
private getHttpClient;
|
11
|
+
set HttpCommunicationTimeoutMS(value: number);
|
12
|
+
private static _nativeHttpClient;
|
13
|
+
static setNativeHttpClient(httpClient: HttpClient): void;
|
14
|
+
static GetInstance(): HttpManager;
|
15
|
+
private _isAbortingMagicEngine;
|
16
|
+
get IsAbortingMagicEngine(): boolean;
|
17
|
+
set IsAbortingMagicEngine(isAbortingMagicEngine: boolean);
|
18
|
+
private constructor();
|
19
|
+
private RegisterBasicDelegates;
|
20
|
+
GetHttpCommunicationTimeoutMS(): number;
|
21
|
+
SetCommunicationsFailureHandler(handler: ICommunicationsFailureHandler): void;
|
22
|
+
GetContent(requestedURL: string, requestContent: string, useCache: boolean, isError: RefParam<boolean>): Promise<string>;
|
23
|
+
private static CheckAndGetErrorResponse;
|
24
|
+
private static LogAccessToServer;
|
25
|
+
}
|
@@ -1,16 +1,16 @@
|
|
1
|
-
import { HttpClient, HttpHeaders, HttpResponse } from "@angular/common/http";
|
2
|
-
import { RefParam } from "@magic-xpa/mscorelib";
|
3
|
-
import { HttpClientBase, RequestMethod } from "./HttpClientBase";
|
4
|
-
import { ICommunicationsFailureHandler } from "./ICommunicationsFailureHandler";
|
5
|
-
export declare class HttpClientAsync extends HttpClientBase {
|
6
|
-
private httpClient;
|
7
|
-
constructor(httpClient: HttpClient);
|
8
|
-
prepareRequest(): void;
|
9
|
-
addHeaders(urlString: string, useCache: boolean, httpHeaders: HttpHeaders, clientID: string): HttpHeaders;
|
10
|
-
sendRequestToServer(httpMethod: RequestMethod, urlString: string, httpHeaders: HttpHeaders, requestContent: string, contentFromServer: RefParam<string>): Promise<any>;
|
11
|
-
logResponse(httpResponse: HttpResponse<string>, clientID: string, urlString: string, contentFromServer: RefParam<any>, timeBeforeRequest: number): void;
|
12
|
-
handleHttpErrorException(ex: any, urlString: string): void;
|
13
|
-
shouldRetry(httpCommunicationTimeoutMS: number, urlString: string, communicationsFailureHandler: ICommunicationsFailureHandler, ex: any, startTimeRef: RefParam<number>): Promise<boolean>;
|
14
|
-
logAndThrowException(ex: any): void;
|
15
|
-
logExecutionAttempts(executionAttempts: number): void;
|
16
|
-
}
|
1
|
+
import { HttpClient, HttpHeaders, HttpResponse } from "@angular/common/http";
|
2
|
+
import { RefParam } from "@magic-xpa/mscorelib";
|
3
|
+
import { HttpClientBase, RequestMethod } from "./HttpClientBase";
|
4
|
+
import { ICommunicationsFailureHandler } from "./ICommunicationsFailureHandler";
|
5
|
+
export declare class HttpClientAsync extends HttpClientBase {
|
6
|
+
private httpClient;
|
7
|
+
constructor(httpClient: HttpClient);
|
8
|
+
prepareRequest(): void;
|
9
|
+
addHeaders(urlString: string, useCache: boolean, httpHeaders: HttpHeaders, clientID: string): HttpHeaders;
|
10
|
+
sendRequestToServer(httpMethod: RequestMethod, urlString: string, httpHeaders: HttpHeaders, requestContent: string, contentFromServer: RefParam<string>): Promise<any>;
|
11
|
+
logResponse(httpResponse: HttpResponse<string>, clientID: string, urlString: string, contentFromServer: RefParam<any>, timeBeforeRequest: number): void;
|
12
|
+
handleHttpErrorException(ex: any, urlString: string): void;
|
13
|
+
shouldRetry(httpCommunicationTimeoutMS: number, urlString: string, communicationsFailureHandler: ICommunicationsFailureHandler, ex: any, startTimeRef: RefParam<number>): Promise<boolean>;
|
14
|
+
logAndThrowException(ex: any): void;
|
15
|
+
logExecutionAttempts(executionAttempts: number): void;
|
16
|
+
}
|
@@ -1,30 +1,30 @@
|
|
1
|
-
import { RefParam } from "@magic-xpa/mscorelib";
|
2
|
-
import { ICommunicationsFailureHandler } from "./ICommunicationsFailureHandler";
|
3
|
-
import { HttpHeaders, HttpResponse } from "@angular/common/http";
|
4
|
-
export declare enum RequestMethod {
|
5
|
-
Get = 0,
|
6
|
-
Post = 1,
|
7
|
-
Put = 2,
|
8
|
-
Delete = 3,
|
9
|
-
Options = 4,
|
10
|
-
Head = 5,
|
11
|
-
Patch = 6
|
12
|
-
}
|
13
|
-
export declare abstract class HttpClientBase {
|
14
|
-
private _HTTPMaxURLLength;
|
15
|
-
CommunicationsFailureHandler: ICommunicationsFailureHandler;
|
16
|
-
constructor();
|
17
|
-
private DecideOnRequestMethod;
|
18
|
-
GetContent(requestURL: string, requestContent: any, useCache: boolean): Promise<string>;
|
19
|
-
private ExecuteHttpRequest;
|
20
|
-
private LogRequestInfo;
|
21
|
-
private static HeadersToString;
|
22
|
-
abstract prepareRequest(): any;
|
23
|
-
abstract addHeaders(urlString: string, useCache: boolean, httpHeaders: HttpHeaders, clientID: string): HttpHeaders;
|
24
|
-
sendRequestToServer(httpMethod: RequestMethod, urlString: string, httpHeaders: HttpHeaders, requestContent: string, contentFromServer: RefParam<string>): Promise<any>;
|
25
|
-
abstract logResponse(httpResponse: HttpResponse<string>, clientID: string, urlString: string, contentFromServer: RefParam<any>, timeBeforeRequest: number): any;
|
26
|
-
abstract handleHttpErrorException(ex: any, urlString: string): any;
|
27
|
-
shouldRetry(httpCommunicationTimeoutMS: number, urlString: string, communicationsFailureHandler: ICommunicationsFailureHandler, ex: any, startTimeRef: RefParam<number>): Promise<boolean>;
|
28
|
-
abstract logAndThrowException(ex: any): any;
|
29
|
-
abstract logExecutionAttempts(executionAttempts: number): any;
|
30
|
-
}
|
1
|
+
import { RefParam } from "@magic-xpa/mscorelib";
|
2
|
+
import { ICommunicationsFailureHandler } from "./ICommunicationsFailureHandler";
|
3
|
+
import { HttpHeaders, HttpResponse } from "@angular/common/http";
|
4
|
+
export declare enum RequestMethod {
|
5
|
+
Get = 0,
|
6
|
+
Post = 1,
|
7
|
+
Put = 2,
|
8
|
+
Delete = 3,
|
9
|
+
Options = 4,
|
10
|
+
Head = 5,
|
11
|
+
Patch = 6
|
12
|
+
}
|
13
|
+
export declare abstract class HttpClientBase {
|
14
|
+
private _HTTPMaxURLLength;
|
15
|
+
CommunicationsFailureHandler: ICommunicationsFailureHandler;
|
16
|
+
constructor();
|
17
|
+
private DecideOnRequestMethod;
|
18
|
+
GetContent(requestURL: string, requestContent: any, useCache: boolean): Promise<string>;
|
19
|
+
private ExecuteHttpRequest;
|
20
|
+
private LogRequestInfo;
|
21
|
+
private static HeadersToString;
|
22
|
+
abstract prepareRequest(): any;
|
23
|
+
abstract addHeaders(urlString: string, useCache: boolean, httpHeaders: HttpHeaders, clientID: string): HttpHeaders;
|
24
|
+
sendRequestToServer(httpMethod: RequestMethod, urlString: string, httpHeaders: HttpHeaders, requestContent: string, contentFromServer: RefParam<string>): Promise<any>;
|
25
|
+
abstract logResponse(httpResponse: HttpResponse<string>, clientID: string, urlString: string, contentFromServer: RefParam<any>, timeBeforeRequest: number): any;
|
26
|
+
abstract handleHttpErrorException(ex: any, urlString: string): any;
|
27
|
+
shouldRetry(httpCommunicationTimeoutMS: number, urlString: string, communicationsFailureHandler: ICommunicationsFailureHandler, ex: any, startTimeRef: RefParam<number>): Promise<boolean>;
|
28
|
+
abstract logAndThrowException(ex: any): any;
|
29
|
+
abstract logExecutionAttempts(executionAttempts: number): any;
|
30
|
+
}
|
@@ -1,18 +1,18 @@
|
|
1
|
-
export declare class HttpClientEvents {
|
2
|
-
static GetHttpCommunicationTimeout_Event: () => number;
|
3
|
-
static GetExecutionProperty_Event: (propertyName: string) => string;
|
4
|
-
static GetGlobalUniqueSessionID_Event: () => string;
|
5
|
-
static ShouldDisplayGenericError_Event: () => boolean;
|
6
|
-
static GetRuntimeCtxID_Event: () => string;
|
7
|
-
static GetSessionCounter_Event: () => number;
|
8
|
-
static CheckAndSetSessionCounter_Event: (value: number) => void;
|
9
|
-
static ComputeAndLogRequestInfo_Event: (contentLength: number, roundTrip: number, isLoggingResponse: boolean) => void;
|
10
|
-
static GetHttpCommunicationTimeout(): number;
|
11
|
-
static GetExecutionProperty(propertyName: string): string;
|
12
|
-
static GetGlobalUniqueSessionID(): string;
|
13
|
-
static ShouldDisplayGenericError(): boolean;
|
14
|
-
static GetRuntimeCtxID(): string;
|
15
|
-
static GetSessionCounter(): number;
|
16
|
-
static CheckAndSetSessionCounter(value: number): void;
|
17
|
-
static ComputeAndLogRequestInfo(contentLength: number, roundTrip: number, isLoggingResponse: boolean): void;
|
18
|
-
}
|
1
|
+
export declare class HttpClientEvents {
|
2
|
+
static GetHttpCommunicationTimeout_Event: () => number;
|
3
|
+
static GetExecutionProperty_Event: (propertyName: string) => string;
|
4
|
+
static GetGlobalUniqueSessionID_Event: () => string;
|
5
|
+
static ShouldDisplayGenericError_Event: () => boolean;
|
6
|
+
static GetRuntimeCtxID_Event: () => string;
|
7
|
+
static GetSessionCounter_Event: () => number;
|
8
|
+
static CheckAndSetSessionCounter_Event: (value: number) => void;
|
9
|
+
static ComputeAndLogRequestInfo_Event: (contentLength: number, roundTrip: number, isLoggingResponse: boolean) => void;
|
10
|
+
static GetHttpCommunicationTimeout(): number;
|
11
|
+
static GetExecutionProperty(propertyName: string): string;
|
12
|
+
static GetGlobalUniqueSessionID(): string;
|
13
|
+
static ShouldDisplayGenericError(): boolean;
|
14
|
+
static GetRuntimeCtxID(): string;
|
15
|
+
static GetSessionCounter(): number;
|
16
|
+
static CheckAndSetSessionCounter(value: number): void;
|
17
|
+
static ComputeAndLogRequestInfo(contentLength: number, roundTrip: number, isLoggingResponse: boolean): void;
|
18
|
+
}
|
@@ -1,17 +1,17 @@
|
|
1
|
-
import { HttpHeaders, HttpResponse } from "@angular/common/http";
|
2
|
-
import { RefParam } from "@magic-xpa/mscorelib";
|
3
|
-
import { HttpClientBase, RequestMethod } from "./HttpClientBase";
|
4
|
-
import { ICommunicationsFailureHandler } from "./ICommunicationsFailureHandler";
|
5
|
-
export declare class HttpClientSync extends HttpClientBase {
|
6
|
-
private httpRequest;
|
7
|
-
private headers;
|
8
|
-
constructor();
|
9
|
-
prepareRequest(): void;
|
10
|
-
addHeaders(urlString: string, useCache: boolean, httpHeaders: HttpHeaders, clientID: string): HttpHeaders;
|
11
|
-
sendRequestToServer(httpMethod: RequestMethod, urlString: string, httpHeaders: HttpHeaders, requestContent: string, contentFromServer: RefParam<string>): Promise<any>;
|
12
|
-
logResponse(httpResponse: HttpResponse<string>, clientID: string, urlString: string, contentFromServer: RefParam<any>, timeBeforeRequest: number): void;
|
13
|
-
handleHttpErrorException(ex: any, urlString: string): void;
|
14
|
-
shouldRetry(httpCommunicationTimeoutMS: number, urlString: string, communicationsFailureHandler: ICommunicationsFailureHandler, ex: any, startTimeRef: RefParam<number>): Promise<boolean>;
|
15
|
-
logAndThrowException(ex: any): void;
|
16
|
-
logExecutionAttempts(executionAttempts: number): void;
|
17
|
-
}
|
1
|
+
import { HttpHeaders, HttpResponse } from "@angular/common/http";
|
2
|
+
import { RefParam } from "@magic-xpa/mscorelib";
|
3
|
+
import { HttpClientBase, RequestMethod } from "./HttpClientBase";
|
4
|
+
import { ICommunicationsFailureHandler } from "./ICommunicationsFailureHandler";
|
5
|
+
export declare class HttpClientSync extends HttpClientBase {
|
6
|
+
private httpRequest;
|
7
|
+
private headers;
|
8
|
+
constructor();
|
9
|
+
prepareRequest(): void;
|
10
|
+
addHeaders(urlString: string, useCache: boolean, httpHeaders: HttpHeaders, clientID: string): HttpHeaders;
|
11
|
+
sendRequestToServer(httpMethod: RequestMethod, urlString: string, httpHeaders: HttpHeaders, requestContent: string, contentFromServer: RefParam<string>): Promise<any>;
|
12
|
+
logResponse(httpResponse: HttpResponse<string>, clientID: string, urlString: string, contentFromServer: RefParam<any>, timeBeforeRequest: number): void;
|
13
|
+
handleHttpErrorException(ex: any, urlString: string): void;
|
14
|
+
shouldRetry(httpCommunicationTimeoutMS: number, urlString: string, communicationsFailureHandler: ICommunicationsFailureHandler, ex: any, startTimeRef: RefParam<number>): Promise<boolean>;
|
15
|
+
logAndThrowException(ex: any): void;
|
16
|
+
logExecutionAttempts(executionAttempts: number): void;
|
17
|
+
}
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import { Encoding } from "@magic-xpa/mscorelib";
|
2
|
-
export declare class HttpUtility {
|
3
|
-
static EncodingEnabled: boolean;
|
4
|
-
private static ASCIIGetString;
|
5
|
-
private static IntToHexCharCode;
|
6
|
-
private static IsSafe;
|
7
|
-
static UrlEncode(str: string, e: Encoding): string;
|
8
|
-
private static UrlEncodeToBytes;
|
9
|
-
private static UrlEncodeBytesToBytesInternal;
|
10
|
-
}
|
1
|
+
import { Encoding } from "@magic-xpa/mscorelib";
|
2
|
+
export declare class HttpUtility {
|
3
|
+
static EncodingEnabled: boolean;
|
4
|
+
private static ASCIIGetString;
|
5
|
+
private static IntToHexCharCode;
|
6
|
+
private static IsSafe;
|
7
|
+
static UrlEncode(str: string, e: Encoding): string;
|
8
|
+
private static UrlEncodeToBytes;
|
9
|
+
private static UrlEncodeBytesToBytesInternal;
|
10
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
export interface ICommunicationsFailureHandler {
|
2
|
-
ShouldRetryLastRequest: boolean;
|
3
|
-
ShowCommunicationErrors: boolean;
|
4
|
-
CommunicationFailed(url: string, failureException: Error): void;
|
5
|
-
}
|
1
|
+
export interface ICommunicationsFailureHandler {
|
2
|
+
ShouldRetryLastRequest: boolean;
|
3
|
+
ShowCommunicationErrors: boolean;
|
4
|
+
CommunicationFailed(url: string, failureException: Error): void;
|
5
|
+
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { RemoteDataViewCommandBase } from "./RemoteDataViewCommandBase";
|
2
|
-
import { AddUserLocateDataViewCommand } from "../commands/ClientToServer/AddUserLocateDataViewCommand";
|
3
|
-
import { ReturnResultBase } from "../util/ReturnResultBase";
|
4
|
-
export declare class AddUserLocateRemoteDataViewCommand extends RemoteDataViewCommandBase {
|
5
|
-
private userRange;
|
6
|
-
constructor(command: AddUserLocateDataViewCommand);
|
7
|
-
Execute(): Promise<ReturnResultBase>;
|
8
|
-
}
|
1
|
+
import { RemoteDataViewCommandBase } from "./RemoteDataViewCommandBase";
|
2
|
+
import { AddUserLocateDataViewCommand } from "../commands/ClientToServer/AddUserLocateDataViewCommand";
|
3
|
+
import { ReturnResultBase } from "../util/ReturnResultBase";
|
4
|
+
export declare class AddUserLocateRemoteDataViewCommand extends RemoteDataViewCommandBase {
|
5
|
+
private userRange;
|
6
|
+
constructor(command: AddUserLocateDataViewCommand);
|
7
|
+
Execute(): Promise<ReturnResultBase>;
|
8
|
+
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { RemoteDataViewCommandBase } from "./RemoteDataViewCommandBase";
|
2
|
-
import { AddUserRangeDataviewCommand } from "../commands/ClientToServer/AddUserRangeDataviewCommand";
|
3
|
-
import { ReturnResultBase } from "../util/ReturnResultBase";
|
4
|
-
export declare class AddUserRangeRemoteDataViewCommand extends RemoteDataViewCommandBase {
|
5
|
-
private userRange;
|
6
|
-
constructor(command: AddUserRangeDataviewCommand);
|
7
|
-
Execute(): Promise<ReturnResultBase>;
|
8
|
-
}
|
1
|
+
import { RemoteDataViewCommandBase } from "./RemoteDataViewCommandBase";
|
2
|
+
import { AddUserRangeDataviewCommand } from "../commands/ClientToServer/AddUserRangeDataviewCommand";
|
3
|
+
import { ReturnResultBase } from "../util/ReturnResultBase";
|
4
|
+
export declare class AddUserRangeRemoteDataViewCommand extends RemoteDataViewCommandBase {
|
5
|
+
private userRange;
|
6
|
+
constructor(command: AddUserRangeDataviewCommand);
|
7
|
+
Execute(): Promise<ReturnResultBase>;
|
8
|
+
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { RemoteDataViewCommandBase } from "./RemoteDataViewCommandBase";
|
2
|
-
import { AddUserSortDataViewCommand } from "../commands/ClientToServer/AddUserSortDataViewCommand";
|
3
|
-
import { ReturnResultBase } from "../util/ReturnResultBase";
|
4
|
-
export declare class AddUserSortRemoteDataViewCommand extends RemoteDataViewCommandBase {
|
5
|
-
private sort;
|
6
|
-
constructor(command: AddUserSortDataViewCommand);
|
7
|
-
Execute(): Promise<ReturnResultBase>;
|
8
|
-
}
|
1
|
+
import { RemoteDataViewCommandBase } from "./RemoteDataViewCommandBase";
|
2
|
+
import { AddUserSortDataViewCommand } from "../commands/ClientToServer/AddUserSortDataViewCommand";
|
3
|
+
import { ReturnResultBase } from "../util/ReturnResultBase";
|
4
|
+
export declare class AddUserSortRemoteDataViewCommand extends RemoteDataViewCommandBase {
|
5
|
+
private sort;
|
6
|
+
constructor(command: AddUserSortDataViewCommand);
|
7
|
+
Execute(): Promise<ReturnResultBase>;
|
8
|
+
}
|