@sapui5/sap.fe.core 1.111.1 → 1.113.0
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/package.json +1 -1
- package/src/sap/fe/core/.library +1 -1
- package/src/sap/fe/core/ActionRuntime-dbg.js +6 -5
- package/src/sap/fe/core/ActionRuntime.js +1 -1
- package/src/sap/fe/core/ActionRuntime.js.map +1 -1
- package/src/sap/fe/core/ActionRuntime.ts +12 -11
- package/src/sap/fe/core/AppComponent-dbg.js +35 -9
- package/src/sap/fe/core/AppComponent.js +1 -1
- package/src/sap/fe/core/AppComponent.js.map +1 -1
- package/src/sap/fe/core/AppComponent.ts +66 -9
- package/src/sap/fe/core/AppStateHandler-dbg.js +5 -2
- package/src/sap/fe/core/AppStateHandler.js +1 -1
- package/src/sap/fe/core/AppStateHandler.js.map +1 -1
- package/src/sap/fe/core/AppStateHandler.ts +10 -1
- package/src/sap/fe/core/BaseController-dbg.js +1 -1
- package/src/sap/fe/core/BaseController.ts +2 -1
- package/src/sap/fe/core/CommonUtils-dbg.js +202 -533
- package/src/sap/fe/core/CommonUtils.js +1 -1
- package/src/sap/fe/core/CommonUtils.js.map +1 -1
- package/src/sap/fe/core/CommonUtils.ts +260 -681
- package/src/sap/fe/core/ExtensionAPI-dbg.js +4 -1
- package/src/sap/fe/core/ExtensionAPI.js +1 -1
- package/src/sap/fe/core/ExtensionAPI.js.map +1 -1
- package/src/sap/fe/core/ExtensionAPI.ts +11 -1
- package/src/sap/fe/core/PageController-dbg.js +26 -31
- package/src/sap/fe/core/PageController.js +1 -1
- package/src/sap/fe/core/PageController.js.map +1 -1
- package/src/sap/fe/core/PageController.ts +17 -3
- package/src/sap/fe/core/ResourceModel-dbg.js +71 -0
- package/src/sap/fe/core/ResourceModel.js +6 -0
- package/src/sap/fe/core/ResourceModel.js.map +1 -0
- package/src/sap/fe/core/ResourceModel.ts +67 -0
- package/src/sap/fe/core/TemplateComponent-dbg.js +1 -1
- package/src/sap/fe/core/TemplateComponent.ts +1 -0
- package/src/sap/fe/core/TemplateModel-dbg.js +1 -1
- package/src/sap/fe/core/TemplateModel.ts +6 -1
- package/src/sap/fe/core/buildingBlocks/AttributeModel-dbg.js +5 -7
- package/src/sap/fe/core/buildingBlocks/AttributeModel.js +1 -1
- package/src/sap/fe/core/buildingBlocks/AttributeModel.js.map +1 -1
- package/src/sap/fe/core/buildingBlocks/AttributeModel.ts +6 -5
- package/src/sap/fe/core/buildingBlocks/BuildingBlockBase-dbg.js +164 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockBase.js +6 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockBase.js.map +1 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockBase.ts +170 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockSupport-dbg.js +88 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockSupport.js +6 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockSupport.js.map +1 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockSupport.ts +142 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockTemplateProcessor-dbg.js +913 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockTemplateProcessor.js +21 -0
- package/src/sap/fe/core/buildingBlocks/BuildingBlockTemplateProcessor.js.map +1 -0
- package/src/sap/fe/core/buildingBlocks/{BuildingBlockRuntime.ts → BuildingBlockTemplateProcessor.ts} +313 -373
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlock-dbg.js +79 -0
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlock.js +15 -0
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlock.js.map +1 -0
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlock.ts +68 -0
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlockFragment-dbg.js +162 -0
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlockFragment.js +6 -0
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlockFragment.js.map +1 -0
- package/src/sap/fe/core/buildingBlocks/RuntimeBuildingBlockFragment.ts +183 -0
- package/src/sap/fe/core/buildingBlocks/TraceInfo-dbg.js +4 -2
- package/src/sap/fe/core/buildingBlocks/TraceInfo.js +1 -1
- package/src/sap/fe/core/buildingBlocks/TraceInfo.js.map +1 -1
- package/src/sap/fe/core/buildingBlocks/TraceInfo.ts +5 -3
- package/src/sap/fe/core/controllerextensions/EditFlow-dbg.js +936 -231
- package/src/sap/fe/core/controllerextensions/EditFlow.js +1 -1
- package/src/sap/fe/core/controllerextensions/EditFlow.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/EditFlow.ts +1023 -255
- package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation-dbg.js +48 -98
- package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js +1 -1
- package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.ts +95 -129
- package/src/sap/fe/core/controllerextensions/InternalRouting-dbg.js +14 -17
- package/src/sap/fe/core/controllerextensions/InternalRouting.js +1 -1
- package/src/sap/fe/core/controllerextensions/InternalRouting.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/InternalRouting.ts +23 -17
- package/src/sap/fe/core/controllerextensions/KPIManagement-dbg.js +1 -1
- package/src/sap/fe/core/controllerextensions/KPIManagement.ts +2 -0
- package/src/sap/fe/core/controllerextensions/MassEdit-dbg.js +3 -3
- package/src/sap/fe/core/controllerextensions/MassEdit.js +1 -1
- package/src/sap/fe/core/controllerextensions/MassEdit.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/MassEdit.ts +2 -2
- package/src/sap/fe/core/controllerextensions/MessageHandler-dbg.js +2 -1
- package/src/sap/fe/core/controllerextensions/MessageHandler.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/MessageHandler.ts +2 -0
- package/src/sap/fe/core/controllerextensions/PageReady-dbg.js +3 -5
- package/src/sap/fe/core/controllerextensions/PageReady.js +1 -1
- package/src/sap/fe/core/controllerextensions/PageReady.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/PageReady.ts +26 -4
- package/src/sap/fe/core/controllerextensions/Paginator-dbg.js +2 -1
- package/src/sap/fe/core/controllerextensions/Paginator.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/Paginator.ts +7 -0
- package/src/sap/fe/core/controllerextensions/Placeholder-dbg.js +1 -1
- package/src/sap/fe/core/controllerextensions/Placeholder.ts +8 -0
- package/src/sap/fe/core/controllerextensions/Share-dbg.js +8 -1
- package/src/sap/fe/core/controllerextensions/Share.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/Share.ts +11 -0
- package/src/sap/fe/core/controllerextensions/SideEffects-dbg.js +14 -13
- package/src/sap/fe/core/controllerextensions/SideEffects.js +1 -1
- package/src/sap/fe/core/controllerextensions/SideEffects.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/SideEffects.ts +27 -27
- package/src/sap/fe/core/controllerextensions/ViewState-dbg.js +17 -8
- package/src/sap/fe/core/controllerextensions/ViewState.js +1 -1
- package/src/sap/fe/core/controllerextensions/ViewState.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/ViewState.ts +35 -14
- package/src/sap/fe/core/controllerextensions/collaboration/ActivityBase-dbg.js +6 -5
- package/src/sap/fe/core/controllerextensions/collaboration/ActivityBase.js +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/ActivityBase.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/ActivityBase.ts +7 -4
- package/src/sap/fe/core/controllerextensions/collaboration/ActivitySync-dbg.js +285 -82
- package/src/sap/fe/core/controllerextensions/collaboration/ActivitySync.js +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/ActivitySync.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/ActivitySync.ts +326 -89
- package/src/sap/fe/core/controllerextensions/collaboration/CollaborationCommon-dbg.js +23 -2
- package/src/sap/fe/core/controllerextensions/collaboration/CollaborationCommon.js +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/CollaborationCommon.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/CollaborationCommon.ts +32 -3
- package/src/sap/fe/core/controllerextensions/collaboration/Manage-dbg.js +4 -4
- package/src/sap/fe/core/controllerextensions/collaboration/Manage.js +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/Manage.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/Manage.ts +4 -5
- package/src/sap/fe/core/controllerextensions/collaboration/ManageDialog.fragment.xml +17 -3
- package/src/sap/fe/core/controllerextensions/dialog/OperationsDialog.block-dbg.js +65 -34
- package/src/sap/fe/core/controllerextensions/dialog/OperationsDialog.block.js +1 -1
- package/src/sap/fe/core/controllerextensions/dialog/OperationsDialog.block.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/dialog/OperationsDialog.block.tsx +33 -18
- package/src/sap/fe/core/controllerextensions/editFlow/NotApplicableContextDialog-dbg.js +103 -0
- package/src/sap/fe/core/controllerextensions/editFlow/NotApplicableContextDialog.js +6 -0
- package/src/sap/fe/core/controllerextensions/editFlow/NotApplicableContextDialog.js.map +1 -0
- package/src/sap/fe/core/controllerextensions/editFlow/NotApplicableContextDialog.tsx +124 -0
- package/src/sap/fe/core/controllerextensions/editFlow/TransactionHelper-dbg.js +78 -149
- package/src/sap/fe/core/controllerextensions/editFlow/TransactionHelper.js +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/TransactionHelper.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/TransactionHelper.ts +85 -160
- package/src/sap/fe/core/controllerextensions/editFlow/draft-dbg.js +49 -49
- package/src/sap/fe/core/controllerextensions/editFlow/draft.js +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/draft.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/draft.ts +52 -63
- package/src/sap/fe/core/controllerextensions/editFlow/draftDataLossPopup.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/operations/_internal-dbg.js +82 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/_internal.js +6 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/_internal.js.map +1 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/_internal.ts +123 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/facade-dbg.js +1508 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/facade.js +6 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/facade.js.map +1 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/facade.ts +1993 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations-dbg.js +3 -1415
- package/src/sap/fe/core/controllerextensions/editFlow/operations.js +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/operations.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/operations.ts +2 -1921
- package/src/sap/fe/core/controllerextensions/editFlow/sticky-dbg.js +10 -18
- package/src/sap/fe/core/controllerextensions/editFlow/sticky.js +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/sticky.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/sticky.ts +9 -22
- package/src/sap/fe/core/controllerextensions/messageHandler/messageHandling-dbg.js +53 -47
- package/src/sap/fe/core/controllerextensions/messageHandler/messageHandling.js +1 -1
- package/src/sap/fe/core/controllerextensions/messageHandler/messageHandling.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/messageHandler/messageHandling.ts +55 -61
- package/src/sap/fe/core/controllerextensions/pageReady/DataQueryWatcher-dbg.js +12 -1
- package/src/sap/fe/core/controllerextensions/pageReady/DataQueryWatcher.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/pageReady/DataQueryWatcher.ts +19 -0
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy-dbg.js +78 -13
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy.js +1 -1
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy.js.map +1 -1
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy.ts +100 -13
- package/src/sap/fe/core/controls/ActionParameterDialog.fragment.xml +4 -1
- package/src/sap/fe/core/controls/CommandExecution-dbg.js +16 -5
- package/src/sap/fe/core/controls/CommandExecution.js +1 -1
- package/src/sap/fe/core/controls/CommandExecution.js.map +1 -1
- package/src/sap/fe/core/controls/CommandExecution.ts +15 -3
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler-dbg.js +3 -2
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.js +1 -1
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.js.map +1 -1
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.ts +4 -1
- package/src/sap/fe/core/controls/FilterBar-dbg.js +1 -1
- package/src/sap/fe/core/controls/FilterBar.ts +5 -0
- package/src/sap/fe/core/controls/FormElementWrapper-dbg.js +1 -1
- package/src/sap/fe/core/controls/FormElementWrapper.ts +3 -0
- package/src/sap/fe/core/controls/filterbar/FilterContainer-dbg.js +1 -1
- package/src/sap/fe/core/controls/filterbar/FilterContainer.ts +7 -0
- package/src/sap/fe/core/controls/filterbar/VisualFilter-dbg.js +1 -1
- package/src/sap/fe/core/controls/filterbar/VisualFilter.ts +4 -0
- package/src/sap/fe/core/controls/filterbar/VisualFilterContainer-dbg.js +1 -1
- package/src/sap/fe/core/controls/filterbar/VisualFilterContainer.ts +10 -0
- package/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils-dbg.js +4 -3
- package/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.js +1 -1
- package/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.js.map +1 -1
- package/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.ts +3 -2
- package/src/sap/fe/core/controls/massEdit/MassEditDialog.fragment.xml +0 -1
- package/src/sap/fe/core/controls/massEdit/MassEditField.fragment.xml +2 -0
- package/src/sap/fe/core/controls/massEdit/MassEditHandlers-dbg.js +6 -1
- package/src/sap/fe/core/controls/massEdit/MassEditHandlers.js +1 -1
- package/src/sap/fe/core/controls/massEdit/MassEditHandlers.js.map +1 -1
- package/src/sap/fe/core/controls/massEdit/MassEditHandlers.ts +5 -0
- package/src/sap/fe/core/converters/ConverterContext-dbg.js +3 -5
- package/src/sap/fe/core/converters/ConverterContext.js +1 -1
- package/src/sap/fe/core/converters/ConverterContext.js.map +1 -1
- package/src/sap/fe/core/converters/ConverterContext.ts +4 -6
- package/src/sap/fe/core/converters/ManifestSettings-dbg.js +1 -8
- package/src/sap/fe/core/converters/ManifestSettings.js +1 -1
- package/src/sap/fe/core/converters/ManifestSettings.js.map +1 -1
- package/src/sap/fe/core/converters/ManifestSettings.ts +15 -6
- package/src/sap/fe/core/converters/ManifestWrapper-dbg.js +21 -3
- package/src/sap/fe/core/converters/ManifestWrapper.js +1 -1
- package/src/sap/fe/core/converters/ManifestWrapper.js.map +1 -1
- package/src/sap/fe/core/converters/ManifestWrapper.ts +23 -1
- package/src/sap/fe/core/converters/MetaModelConverter-dbg.js +67 -62
- package/src/sap/fe/core/converters/MetaModelConverter.js +1 -1
- package/src/sap/fe/core/converters/MetaModelConverter.js.map +1 -1
- package/src/sap/fe/core/converters/MetaModelConverter.ts +75 -66
- package/src/sap/fe/core/converters/TemplateConverter-dbg.js +2 -1
- package/src/sap/fe/core/converters/TemplateConverter.js.map +1 -1
- package/src/sap/fe/core/converters/TemplateConverter.ts +2 -1
- package/src/sap/fe/core/converters/annotations/DataField-dbg.js +81 -20
- package/src/sap/fe/core/converters/annotations/DataField.js +1 -1
- package/src/sap/fe/core/converters/annotations/DataField.js.map +1 -1
- package/src/sap/fe/core/converters/annotations/DataField.ts +76 -22
- package/src/sap/fe/core/converters/common/AnnotationConverter-dbg.js +1027 -956
- package/src/sap/fe/core/converters/common/AnnotationConverter.js +1 -1
- package/src/sap/fe/core/converters/common/AnnotationConverter.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/Action-dbg.js +13 -19
- package/src/sap/fe/core/converters/controls/Common/Action.js +1 -1
- package/src/sap/fe/core/converters/controls/Common/Action.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/Action.ts +37 -40
- package/src/sap/fe/core/converters/controls/Common/Chart-dbg.js +95 -33
- package/src/sap/fe/core/converters/controls/Common/Chart.js +1 -1
- package/src/sap/fe/core/converters/controls/Common/Chart.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/Chart.ts +133 -49
- package/src/sap/fe/core/converters/controls/Common/DataVisualization-dbg.js +99 -62
- package/src/sap/fe/core/converters/controls/Common/DataVisualization.js +1 -1
- package/src/sap/fe/core/converters/controls/Common/DataVisualization.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/DataVisualization.ts +140 -75
- package/src/sap/fe/core/converters/controls/Common/Form-dbg.js +7 -6
- package/src/sap/fe/core/converters/controls/Common/Form.js +1 -1
- package/src/sap/fe/core/converters/controls/Common/Form.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/Form.ts +8 -14
- package/src/sap/fe/core/converters/controls/Common/KPI-dbg.js +9 -9
- package/src/sap/fe/core/converters/controls/Common/KPI.js +1 -1
- package/src/sap/fe/core/converters/controls/Common/KPI.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/KPI.ts +17 -18
- package/src/sap/fe/core/converters/controls/Common/Table-dbg.js +143 -93
- package/src/sap/fe/core/converters/controls/Common/Table.js +1 -1
- package/src/sap/fe/core/converters/controls/Common/Table.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/Table.ts +221 -177
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions-dbg.js +23 -16
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions.js +1 -1
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions.js.map +1 -1
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions.ts +27 -23
- package/src/sap/fe/core/converters/controls/ListReport/FilterBar-dbg.js +138 -75
- package/src/sap/fe/core/converters/controls/ListReport/FilterBar.js +1 -1
- package/src/sap/fe/core/converters/controls/ListReport/FilterBar.js.map +1 -1
- package/src/sap/fe/core/converters/controls/ListReport/FilterBar.ts +223 -110
- package/src/sap/fe/core/converters/controls/ListReport/VisualFilters-dbg.js +38 -28
- package/src/sap/fe/core/converters/controls/ListReport/VisualFilters.js +1 -1
- package/src/sap/fe/core/converters/controls/ListReport/VisualFilters.js.map +1 -1
- package/src/sap/fe/core/converters/controls/ListReport/VisualFilters.ts +67 -47
- package/src/sap/fe/core/converters/controls/ObjectPage/Avatar-dbg.js +1 -1
- package/src/sap/fe/core/converters/controls/ObjectPage/Avatar.ts +1 -1
- package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet-dbg.js +6 -6
- package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.js +1 -1
- package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.js.map +1 -1
- package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.ts +5 -8
- package/src/sap/fe/core/converters/controls/ObjectPage/SubSection-dbg.js +54 -24
- package/src/sap/fe/core/converters/controls/ObjectPage/SubSection.js +1 -1
- package/src/sap/fe/core/converters/controls/ObjectPage/SubSection.js.map +1 -1
- package/src/sap/fe/core/converters/controls/ObjectPage/SubSection.ts +84 -37
- package/src/sap/fe/core/converters/helpers/Aggregation-dbg.js +12 -14
- package/src/sap/fe/core/converters/helpers/Aggregation.js +1 -1
- package/src/sap/fe/core/converters/helpers/Aggregation.js.map +1 -1
- package/src/sap/fe/core/converters/helpers/Aggregation.ts +16 -11
- package/src/sap/fe/core/converters/helpers/BindingHelper-dbg.js +8 -6
- package/src/sap/fe/core/converters/helpers/BindingHelper.js +1 -1
- package/src/sap/fe/core/converters/helpers/BindingHelper.js.map +1 -1
- package/src/sap/fe/core/converters/helpers/BindingHelper.ts +8 -6
- package/src/sap/fe/core/converters/helpers/ConfigurableObject-dbg.js +7 -6
- package/src/sap/fe/core/converters/helpers/ConfigurableObject.js +1 -1
- package/src/sap/fe/core/converters/helpers/ConfigurableObject.js.map +1 -1
- package/src/sap/fe/core/converters/helpers/ConfigurableObject.ts +19 -10
- package/src/sap/fe/core/converters/helpers/DataFieldHelper-dbg.js +1 -1
- package/src/sap/fe/core/converters/helpers/DataFieldHelper.ts +7 -2
- package/src/sap/fe/core/converters/helpers/ID-dbg.js +1 -1
- package/src/sap/fe/core/converters/helpers/ID.ts +2 -1
- package/src/sap/fe/core/converters/helpers/IssueManager-dbg.js +11 -9
- package/src/sap/fe/core/converters/helpers/IssueManager.js +1 -1
- package/src/sap/fe/core/converters/helpers/IssueManager.js.map +1 -1
- package/src/sap/fe/core/converters/helpers/IssueManager.ts +10 -8
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction-dbg.js +22 -20
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +1 -1
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js.map +1 -1
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +19 -16
- package/src/sap/fe/core/converters/templates/ListReportConverter-dbg.js +32 -35
- package/src/sap/fe/core/converters/templates/ListReportConverter.js +1 -1
- package/src/sap/fe/core/converters/templates/ListReportConverter.js.map +1 -1
- package/src/sap/fe/core/converters/templates/ListReportConverter.ts +42 -37
- package/src/sap/fe/core/converters/templates/ObjectPageConverter-dbg.js +12 -5
- package/src/sap/fe/core/converters/templates/ObjectPageConverter.js +1 -1
- package/src/sap/fe/core/converters/templates/ObjectPageConverter.js.map +1 -1
- package/src/sap/fe/core/converters/templates/ObjectPageConverter.ts +8 -2
- package/src/sap/fe/core/formatters/FPMFormatter-dbg.js +1 -1
- package/src/sap/fe/core/formatters/FPMFormatter.ts +1 -1
- package/src/sap/fe/core/formatters/FiscalFormat-dbg.js +2 -2
- package/src/sap/fe/core/formatters/FiscalFormat.ts +6 -1
- package/src/sap/fe/core/formatters/TableFormatter-dbg.js +3 -7
- package/src/sap/fe/core/formatters/TableFormatter.js +1 -1
- package/src/sap/fe/core/formatters/TableFormatter.js.map +1 -1
- package/src/sap/fe/core/formatters/TableFormatter.ts +2 -6
- package/src/sap/fe/core/formatters/ValueFormatter-dbg.js +9 -5
- package/src/sap/fe/core/formatters/ValueFormatter.js +1 -1
- package/src/sap/fe/core/formatters/ValueFormatter.js.map +1 -1
- package/src/sap/fe/core/formatters/ValueFormatter.ts +11 -4
- package/src/sap/fe/core/fpm/Component-dbg.js +1 -1
- package/src/sap/fe/core/fpm/Component.ts +1 -0
- package/src/sap/fe/core/fpm/manifest.json +1 -1
- package/src/sap/fe/core/helpers/AppStartupHelper-dbg.js +2 -2
- package/src/sap/fe/core/helpers/AppStartupHelper.js +1 -1
- package/src/sap/fe/core/helpers/AppStartupHelper.js.map +1 -1
- package/src/sap/fe/core/helpers/AppStartupHelper.ts +1 -1
- package/src/sap/fe/core/helpers/BindingToolkit-dbg.js +7 -6
- package/src/sap/fe/core/helpers/BindingToolkit.js +1 -1
- package/src/sap/fe/core/helpers/BindingToolkit.js.map +1 -1
- package/src/sap/fe/core/helpers/BindingToolkit.ts +9 -9
- package/src/sap/fe/core/helpers/ClassSupport-dbg.js +1 -1
- package/src/sap/fe/core/helpers/ClassSupport.js.map +1 -1
- package/src/sap/fe/core/helpers/ClassSupport.ts +1 -0
- package/src/sap/fe/core/helpers/DeleteHelper-dbg.js +93 -62
- package/src/sap/fe/core/helpers/DeleteHelper.js +1 -1
- package/src/sap/fe/core/helpers/DeleteHelper.js.map +1 -1
- package/src/sap/fe/core/helpers/DeleteHelper.ts +140 -185
- package/src/sap/fe/core/helpers/MassEditHelper-dbg.js +23 -20
- package/src/sap/fe/core/helpers/MassEditHelper.js +1 -1
- package/src/sap/fe/core/helpers/MassEditHelper.js.map +1 -1
- package/src/sap/fe/core/helpers/MassEditHelper.ts +26 -28
- package/src/sap/fe/core/helpers/MessageStrip-dbg.js +9 -9
- package/src/sap/fe/core/helpers/MessageStrip.js +1 -1
- package/src/sap/fe/core/helpers/MessageStrip.js.map +1 -1
- package/src/sap/fe/core/helpers/MessageStrip.ts +8 -8
- package/src/sap/fe/core/helpers/MetaModelFunction-dbg.js +517 -0
- package/src/sap/fe/core/helpers/MetaModelFunction.js +6 -0
- package/src/sap/fe/core/helpers/MetaModelFunction.js.map +1 -0
- package/src/sap/fe/core/helpers/MetaModelFunction.ts +610 -0
- package/src/sap/fe/core/helpers/ModelHelper-dbg.js +37 -73
- package/src/sap/fe/core/helpers/ModelHelper.js +1 -1
- package/src/sap/fe/core/helpers/ModelHelper.js.map +1 -1
- package/src/sap/fe/core/helpers/ModelHelper.ts +47 -74
- package/src/sap/fe/core/helpers/PasteHelper-dbg.js +5 -5
- package/src/sap/fe/core/helpers/PasteHelper.js +1 -1
- package/src/sap/fe/core/helpers/PasteHelper.js.map +1 -1
- package/src/sap/fe/core/helpers/PasteHelper.ts +6 -10
- package/src/sap/fe/core/helpers/ResourceModelHelper-dbg.js +39 -0
- package/src/sap/fe/core/helpers/ResourceModelHelper.js +6 -0
- package/src/sap/fe/core/helpers/ResourceModelHelper.js.map +1 -0
- package/src/sap/fe/core/helpers/ResourceModelHelper.ts +35 -0
- package/src/sap/fe/core/helpers/SemanticDateOperators-dbg.js +132 -23
- package/src/sap/fe/core/helpers/SemanticDateOperators.js +1 -1
- package/src/sap/fe/core/helpers/SemanticDateOperators.js.map +1 -1
- package/src/sap/fe/core/helpers/SemanticDateOperators.ts +109 -22
- package/src/sap/fe/core/helpers/SemanticKeyHelper-dbg.js +2 -2
- package/src/sap/fe/core/helpers/SemanticKeyHelper.js +1 -1
- package/src/sap/fe/core/helpers/SemanticKeyHelper.js.map +1 -1
- package/src/sap/fe/core/helpers/SemanticKeyHelper.ts +1 -1
- package/src/sap/fe/core/helpers/SizeHelper-dbg.js +53 -0
- package/src/sap/fe/core/helpers/SizeHelper.js +6 -0
- package/src/sap/fe/core/helpers/SizeHelper.js.map +1 -0
- package/src/sap/fe/core/helpers/SizeHelper.ts +51 -0
- package/src/sap/fe/core/helpers/StableIdHelper-dbg.js +29 -25
- package/src/sap/fe/core/helpers/StableIdHelper.js +1 -1
- package/src/sap/fe/core/helpers/StableIdHelper.js.map +1 -1
- package/src/sap/fe/core/helpers/StableIdHelper.ts +26 -24
- package/src/sap/fe/core/helpers/Synchronization-dbg.js +1 -1
- package/src/sap/fe/core/helpers/Synchronization.ts +2 -0
- package/src/sap/fe/core/helpers/TypeGuards-dbg.js +151 -1
- package/src/sap/fe/core/helpers/TypeGuards.js +1 -1
- package/src/sap/fe/core/helpers/TypeGuards.js.map +1 -1
- package/src/sap/fe/core/helpers/TypeGuards.ts +162 -1
- package/src/sap/fe/core/jsx-runtime/ViewLoader-dbg.js +2 -1
- package/src/sap/fe/core/jsx-runtime/ViewLoader.js.map +1 -1
- package/src/sap/fe/core/jsx-runtime/ViewLoader.tsx +6 -2
- package/src/sap/fe/core/jsx-runtime/jsx-control-dbg.js +1 -1
- package/src/sap/fe/core/jsx-runtime/jsx-control.ts +3 -1
- package/src/sap/fe/core/jsx-runtime/useMDXComponents-dbg.js +3 -3
- package/src/sap/fe/core/jsx-runtime/useMDXComponents.js +1 -1
- package/src/sap/fe/core/jsx-runtime/useMDXComponents.js.map +1 -1
- package/src/sap/fe/core/jsx-runtime/useMDXComponents.tsx +1 -1
- package/src/sap/fe/core/library-dbg.js +2 -2
- package/src/sap/fe/core/library-preload.js +156 -140
- package/src/sap/fe/core/library-preload.js.map +1 -1
- package/src/sap/fe/core/library.js +1 -1
- package/src/sap/fe/core/library.ts +7 -0
- package/src/sap/fe/core/manifest.json +1 -1
- package/src/sap/fe/core/manifestMerger/ChangePageConfiguration-dbg.js +67 -15
- package/src/sap/fe/core/manifestMerger/ChangePageConfiguration.js +1 -1
- package/src/sap/fe/core/manifestMerger/ChangePageConfiguration.js.map +1 -1
- package/src/sap/fe/core/manifestMerger/ChangePageConfiguration.ts +66 -14
- package/src/sap/fe/core/messagebundle.properties +35 -0
- package/src/sap/fe/core/messagebundle_ar.properties +15 -12
- package/src/sap/fe/core/messagebundle_bg.properties +20 -17
- package/src/sap/fe/core/messagebundle_ca.properties +12 -9
- package/src/sap/fe/core/messagebundle_cs.properties +12 -9
- package/src/sap/fe/core/messagebundle_cy.properties +12 -9
- package/src/sap/fe/core/messagebundle_da.properties +12 -9
- package/src/sap/fe/core/messagebundle_de.properties +13 -10
- package/src/sap/fe/core/messagebundle_el.properties +14 -11
- package/src/sap/fe/core/messagebundle_en.properties +4 -1
- package/src/sap/fe/core/messagebundle_en_GB.properties +4 -1
- package/src/sap/fe/core/messagebundle_en_US_sappsd.properties +2 -0
- package/src/sap/fe/core/messagebundle_en_US_saprigi.properties +21 -0
- package/src/sap/fe/core/messagebundle_en_US_saptrc.properties +23 -3
- package/src/sap/fe/core/messagebundle_es.properties +12 -9
- package/src/sap/fe/core/messagebundle_es_MX.properties +12 -9
- package/src/sap/fe/core/messagebundle_et.properties +12 -9
- package/src/sap/fe/core/messagebundle_fi.properties +12 -9
- package/src/sap/fe/core/messagebundle_fr.properties +12 -9
- package/src/sap/fe/core/messagebundle_fr_CA.properties +13 -10
- package/src/sap/fe/core/messagebundle_hi.properties +12 -9
- package/src/sap/fe/core/messagebundle_hr.properties +12 -9
- package/src/sap/fe/core/messagebundle_hu.properties +12 -9
- package/src/sap/fe/core/messagebundle_id.properties +13 -10
- package/src/sap/fe/core/messagebundle_it.properties +12 -9
- package/src/sap/fe/core/messagebundle_iw.properties +12 -9
- package/src/sap/fe/core/messagebundle_ja.properties +13 -10
- package/src/sap/fe/core/messagebundle_kk.properties +12 -9
- package/src/sap/fe/core/messagebundle_ko.properties +12 -9
- package/src/sap/fe/core/messagebundle_lt.properties +12 -9
- package/src/sap/fe/core/messagebundle_lv.properties +12 -9
- package/src/sap/fe/core/messagebundle_ms.properties +13 -10
- package/src/sap/fe/core/messagebundle_nl.properties +13 -10
- package/src/sap/fe/core/messagebundle_no.properties +12 -9
- package/src/sap/fe/core/messagebundle_pl.properties +12 -9
- package/src/sap/fe/core/messagebundle_pt.properties +12 -9
- package/src/sap/fe/core/messagebundle_pt_PT.properties +12 -9
- package/src/sap/fe/core/messagebundle_ro.properties +16 -13
- package/src/sap/fe/core/messagebundle_ru.properties +13 -10
- package/src/sap/fe/core/messagebundle_sh.properties +12 -9
- package/src/sap/fe/core/messagebundle_sk.properties +12 -9
- package/src/sap/fe/core/messagebundle_sl.properties +12 -9
- package/src/sap/fe/core/messagebundle_sv.properties +12 -9
- package/src/sap/fe/core/messagebundle_th.properties +12 -9
- package/src/sap/fe/core/messagebundle_tr.properties +12 -9
- package/src/sap/fe/core/messagebundle_uk.properties +12 -9
- package/src/sap/fe/core/messagebundle_vi.properties +13 -10
- package/src/sap/fe/core/messagebundle_zh_CN.properties +12 -9
- package/src/sap/fe/core/messagebundle_zh_TW.properties +12 -9
- package/src/sap/fe/core/operationsHelper-dbg.js +70 -44
- package/src/sap/fe/core/operationsHelper.js +1 -1
- package/src/sap/fe/core/operationsHelper.js.map +1 -1
- package/src/sap/fe/core/operationsHelper.ts +88 -63
- package/src/sap/fe/core/rootView/Fcl-dbg.controller.js +1 -1
- package/src/sap/fe/core/rootView/Fcl.controller.ts +10 -0
- package/src/sap/fe/core/rootView/NavContainer-dbg.controller.js +2 -2
- package/src/sap/fe/core/rootView/NavContainer.controller.js +1 -1
- package/src/sap/fe/core/rootView/NavContainer.controller.js.map +1 -1
- package/src/sap/fe/core/rootView/NavContainer.controller.ts +5 -3
- package/src/sap/fe/core/rootView/RootViewBaseController-dbg.js +10 -5
- package/src/sap/fe/core/rootView/RootViewBaseController.js +1 -1
- package/src/sap/fe/core/rootView/RootViewBaseController.js.map +1 -1
- package/src/sap/fe/core/rootView/RootViewBaseController.ts +22 -8
- package/src/sap/fe/core/services/AsyncComponentServiceFactory-dbg.js +1 -1
- package/src/sap/fe/core/services/AsyncComponentServiceFactory.ts +3 -1
- package/src/sap/fe/core/services/CacheHandlerServiceFactory-dbg.js +1 -1
- package/src/sap/fe/core/services/CacheHandlerServiceFactory.js.map +1 -1
- package/src/sap/fe/core/services/CacheHandlerServiceFactory.ts +15 -1
- package/src/sap/fe/core/services/EnvironmentServiceFactory-dbg.js +1 -1
- package/src/sap/fe/core/services/EnvironmentServiceFactory.js.map +1 -1
- package/src/sap/fe/core/services/EnvironmentServiceFactory.ts +4 -1
- package/src/sap/fe/core/services/NavigationServiceFactory-dbg.js +9 -1
- package/src/sap/fe/core/services/NavigationServiceFactory.js.map +1 -1
- package/src/sap/fe/core/services/NavigationServiceFactory.ts +19 -1
- package/src/sap/fe/core/services/ResourceModelServiceFactory-dbg.js +2 -2
- package/src/sap/fe/core/services/ResourceModelServiceFactory.js +1 -1
- package/src/sap/fe/core/services/ResourceModelServiceFactory.js.map +1 -1
- package/src/sap/fe/core/services/ResourceModelServiceFactory.ts +10 -3
- package/src/sap/fe/core/services/RoutingServiceFactory-dbg.js +9 -3
- package/src/sap/fe/core/services/RoutingServiceFactory.js +1 -1
- package/src/sap/fe/core/services/RoutingServiceFactory.js.map +1 -1
- package/src/sap/fe/core/services/RoutingServiceFactory.ts +35 -3
- package/src/sap/fe/core/services/ShellServicesFactory-dbg.js +7 -1
- package/src/sap/fe/core/services/ShellServicesFactory.js +1 -1
- package/src/sap/fe/core/services/ShellServicesFactory.js.map +1 -1
- package/src/sap/fe/core/services/ShellServicesFactory.ts +24 -2
- package/src/sap/fe/core/services/SideEffectsServiceFactory-dbg.js +448 -279
- package/src/sap/fe/core/services/SideEffectsServiceFactory.js +1 -1
- package/src/sap/fe/core/services/SideEffectsServiceFactory.js.map +1 -1
- package/src/sap/fe/core/services/SideEffectsServiceFactory.ts +497 -333
- package/src/sap/fe/core/services/TemplatedViewServiceFactory-dbg.js +26 -6
- package/src/sap/fe/core/services/TemplatedViewServiceFactory.js +1 -1
- package/src/sap/fe/core/services/TemplatedViewServiceFactory.js.map +1 -1
- package/src/sap/fe/core/services/TemplatedViewServiceFactory.ts +54 -13
- package/src/sap/fe/core/support/Diagnostics-dbg.js +1 -1
- package/src/sap/fe/core/support/Diagnostics.ts +5 -0
- package/src/sap/fe/core/templating/CommonFormatters-dbg.js +4 -3
- package/src/sap/fe/core/templating/CommonFormatters.js +1 -1
- package/src/sap/fe/core/templating/CommonFormatters.js.map +1 -1
- package/src/sap/fe/core/templating/CommonFormatters.ts +2 -2
- package/src/sap/fe/core/templating/DataModelPathHelper-dbg.js +195 -95
- package/src/sap/fe/core/templating/DataModelPathHelper.js +1 -1
- package/src/sap/fe/core/templating/DataModelPathHelper.js.map +1 -1
- package/src/sap/fe/core/templating/DataModelPathHelper.ts +210 -96
- package/src/sap/fe/core/templating/DisplayModeFormatter-dbg.js +5 -5
- package/src/sap/fe/core/templating/DisplayModeFormatter.js +1 -1
- package/src/sap/fe/core/templating/DisplayModeFormatter.js.map +1 -1
- package/src/sap/fe/core/templating/DisplayModeFormatter.ts +2 -2
- package/src/sap/fe/core/templating/EntitySetHelper-dbg.js +19 -29
- package/src/sap/fe/core/templating/EntitySetHelper.js +1 -1
- package/src/sap/fe/core/templating/EntitySetHelper.js.map +1 -1
- package/src/sap/fe/core/templating/EntitySetHelper.ts +14 -26
- package/src/sap/fe/core/templating/EntityTypeHelper-dbg.js +48 -0
- package/src/sap/fe/core/templating/EntityTypeHelper.js +6 -0
- package/src/sap/fe/core/templating/EntityTypeHelper.js.map +1 -0
- package/src/sap/fe/core/templating/EntityTypeHelper.ts +37 -0
- package/src/sap/fe/core/templating/FilterHelper-dbg.js +3 -3
- package/src/sap/fe/core/templating/FilterHelper.js +1 -1
- package/src/sap/fe/core/templating/FilterHelper.js.map +1 -1
- package/src/sap/fe/core/templating/FilterHelper.ts +5 -3
- package/src/sap/fe/core/templating/FilterTemplating-dbg.js +7 -8
- package/src/sap/fe/core/templating/FilterTemplating.js +1 -1
- package/src/sap/fe/core/templating/FilterTemplating.js.map +1 -1
- package/src/sap/fe/core/templating/FilterTemplating.ts +5 -8
- package/src/sap/fe/core/templating/PropertyFormatters-dbg.js +1 -6
- package/src/sap/fe/core/templating/PropertyFormatters.js +1 -1
- package/src/sap/fe/core/templating/PropertyFormatters.js.map +1 -1
- package/src/sap/fe/core/templating/PropertyFormatters.ts +0 -5
- package/src/sap/fe/core/templating/PropertyHelper-dbg.js +13 -46
- package/src/sap/fe/core/templating/PropertyHelper.js +1 -1
- package/src/sap/fe/core/templating/PropertyHelper.js.map +1 -1
- package/src/sap/fe/core/templating/PropertyHelper.ts +14 -43
- package/src/sap/fe/core/templating/UIFormatters-dbg.js +32 -26
- package/src/sap/fe/core/templating/UIFormatters.js +1 -1
- package/src/sap/fe/core/templating/UIFormatters.js.map +1 -1
- package/src/sap/fe/core/templating/UIFormatters.ts +47 -32
- package/src/sap/fe/core/type/DateTimeWithTimezone-dbg.js +1 -1
- package/src/sap/fe/core/type/DateTimeWithTimezone.ts +2 -0
- package/src/sap/fe/core/type/FiscalDate-dbg.js +2 -2
- package/src/sap/fe/core/type/FiscalDate.js.map +1 -1
- package/src/sap/fe/core/type/FiscalDate.ts +2 -1
- package/src/sap/fe/core/type/TypeUtil-dbg.js +5 -10
- package/src/sap/fe/core/type/TypeUtil.js +1 -1
- package/src/sap/fe/core/type/TypeUtil.js.map +1 -1
- package/src/sap/fe/core/type/TypeUtil.ts +3 -6
- package/src/sap/fe/core/buildingBlocks/BuildingBlock-dbg.js +0 -410
- package/src/sap/fe/core/buildingBlocks/BuildingBlock.js +0 -15
- package/src/sap/fe/core/buildingBlocks/BuildingBlock.js.map +0 -1
- package/src/sap/fe/core/buildingBlocks/BuildingBlock.ts +0 -536
- package/src/sap/fe/core/buildingBlocks/BuildingBlockFragment-dbg.js +0 -44
- package/src/sap/fe/core/buildingBlocks/BuildingBlockFragment.js +0 -6
- package/src/sap/fe/core/buildingBlocks/BuildingBlockFragment.js.map +0 -1
- package/src/sap/fe/core/buildingBlocks/BuildingBlockFragment.ts +0 -14
- package/src/sap/fe/core/buildingBlocks/BuildingBlockRuntime-dbg.js +0 -948
- package/src/sap/fe/core/buildingBlocks/BuildingBlockRuntime.js +0 -19
- package/src/sap/fe/core/buildingBlocks/BuildingBlockRuntime.js.map +0 -1
- package/src/sap/fe/core/controllerextensions/InternalEditFlow-dbg.js +0 -711
- package/src/sap/fe/core/controllerextensions/InternalEditFlow.js +0 -6
- package/src/sap/fe/core/controllerextensions/InternalEditFlow.js.map +0 -1
- package/src/sap/fe/core/controllerextensions/InternalEditFlow.ts +0 -863
- package/src/sap/fe/core/controls/ActionPartial.fragment.xml +0 -91
- package/src/sap/fe/core/controls/ConditionalWrapper-dbg.js +0 -151
- package/src/sap/fe/core/controls/ConditionalWrapper.js +0 -6
- package/src/sap/fe/core/controls/ConditionalWrapper.js.map +0 -1
- package/src/sap/fe/core/controls/ConditionalWrapper.ts +0 -88
- package/src/sap/fe/core/controls/CustomFilterFieldContentWrapper-dbg.js +0 -330
- package/src/sap/fe/core/controls/CustomFilterFieldContentWrapper.js +0 -6
- package/src/sap/fe/core/controls/CustomFilterFieldContentWrapper.js.map +0 -1
- package/src/sap/fe/core/controls/CustomFilterFieldContentWrapper.ts +0 -292
- package/src/sap/fe/core/controls/CustomQuickViewPage-dbg.js +0 -126
- package/src/sap/fe/core/controls/CustomQuickViewPage.js +0 -6
- package/src/sap/fe/core/controls/CustomQuickViewPage.js.map +0 -1
- package/src/sap/fe/core/controls/CustomQuickViewPage.ts +0 -105
- package/src/sap/fe/core/controls/FieldWrapper-dbg.js +0 -194
- package/src/sap/fe/core/controls/FieldWrapper.js +0 -6
- package/src/sap/fe/core/controls/FieldWrapper.js.map +0 -1
- package/src/sap/fe/core/controls/FieldWrapper.ts +0 -121
- package/src/sap/fe/core/controls/FileWrapper-dbg.js +0 -280
- package/src/sap/fe/core/controls/FileWrapper.js +0 -6
- package/src/sap/fe/core/controls/FileWrapper.js.map +0 -1
- package/src/sap/fe/core/controls/FileWrapper.ts +0 -202
- package/src/sap/fe/core/helpers/SideEffectsHelper-dbg.js +0 -141
- package/src/sap/fe/core/helpers/SideEffectsHelper.js +0 -6
- package/src/sap/fe/core/helpers/SideEffectsHelper.js.map +0 -1
- package/src/sap/fe/core/helpers/SideEffectsHelper.ts +0 -129
|
@@ -1,292 +0,0 @@
|
|
|
1
|
-
import { aggregation, defineUI5Class, event, implementInterface, property } from "sap/fe/core/helpers/ClassSupport";
|
|
2
|
-
import SemanticDateOperators from "sap/fe/core/helpers/SemanticDateOperators";
|
|
3
|
-
import ManagedObjectObserver from "sap/ui/base/ManagedObjectObserver";
|
|
4
|
-
import Control from "sap/ui/core/Control"; //import Control from "sap/ui/mdc/field/FieldBase";
|
|
5
|
-
import type { IFormContent } from "sap/ui/core/library";
|
|
6
|
-
import type RenderManager from "sap/ui/core/RenderManager";
|
|
7
|
-
import type { ConditionObject } from "sap/ui/mdc/condition/Condition";
|
|
8
|
-
import Condition from "sap/ui/mdc/condition/Condition";
|
|
9
|
-
import ConditionValidated from "sap/ui/mdc/enum/ConditionValidated";
|
|
10
|
-
import ConditionsType from "sap/ui/mdc/field/ConditionsType";
|
|
11
|
-
import JSONModel from "sap/ui/model/json/JSONModel";
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Type used for format options
|
|
15
|
-
*
|
|
16
|
-
* @typedef FormatOptionsType
|
|
17
|
-
*/
|
|
18
|
-
type FormatOptionsType = {
|
|
19
|
-
operators: string[];
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* @class
|
|
24
|
-
* Creates an <code>sap.fe.core.controls.CustomFilterFieldContentWrapper</code> object.
|
|
25
|
-
* This is used in the {@link sap.ui.mdc.FilterField FilterField} as a filter content.
|
|
26
|
-
* @extends sap.ui.core.Control
|
|
27
|
-
* @private
|
|
28
|
-
* @alias sap.fe.core.controls.CustomFilterFieldContentWrapper
|
|
29
|
-
*/
|
|
30
|
-
@defineUI5Class("sap.fe.core.controls.CustomFilterFieldContentWrapper")
|
|
31
|
-
export default class CustomFilterFieldContentWrapper extends Control implements IFormContent {
|
|
32
|
-
@implementInterface("sap.ui.core.IFormContent")
|
|
33
|
-
// eslint-disable-next-line camelcase
|
|
34
|
-
__implements__sap_ui_core_IFormContent = true;
|
|
35
|
-
|
|
36
|
-
@property({ type: "sap.ui.core.CSSSize", defaultValue: null })
|
|
37
|
-
width!: string;
|
|
38
|
-
|
|
39
|
-
@property({ type: "boolean", defaultValue: false })
|
|
40
|
-
formDoNotAdjustWidth!: boolean;
|
|
41
|
-
|
|
42
|
-
@property({ type: "object[]", defaultValue: [] })
|
|
43
|
-
conditions!: ConditionObject[];
|
|
44
|
-
|
|
45
|
-
@aggregation({ type: "sap.ui.core.Control", multiple: false, isDefault: true })
|
|
46
|
-
content!: Control;
|
|
47
|
-
|
|
48
|
-
@event()
|
|
49
|
-
conditionsChange!: Function;
|
|
50
|
-
|
|
51
|
-
// Note: FieldBase might be used as base control (instead of Control) in a later version;
|
|
52
|
-
// in that case, you should add a 'change' event and bubble it to the corresponding handlers
|
|
53
|
-
|
|
54
|
-
private _filterModel: any;
|
|
55
|
-
private _conditionsObserver: any;
|
|
56
|
-
private static readonly FILTER_MODEL_ALIAS = "filterValues";
|
|
57
|
-
|
|
58
|
-
static render(renderManager: RenderManager, control: CustomFilterFieldContentWrapper): void {
|
|
59
|
-
renderManager.openStart("div", control);
|
|
60
|
-
renderManager.style("min-height", "1rem");
|
|
61
|
-
renderManager.style("width", control.width);
|
|
62
|
-
renderManager.openEnd();
|
|
63
|
-
renderManager.renderControl(control.getContent()); // render the child Control
|
|
64
|
-
renderManager.close("div"); // end of the complete Control
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* Maps an array of filter values to an array of conditions.
|
|
69
|
-
*
|
|
70
|
-
* @param filterValues Array of filter value bindings or a filter value string
|
|
71
|
-
* @param [operator] The operator to be used (optional) - if not set, the default operator (EQ) will be used
|
|
72
|
-
* @private
|
|
73
|
-
* @returns Array of filter conditions
|
|
74
|
-
*/
|
|
75
|
-
static _filterValuesToConditions(filterValues: any | any[], operator?: string): ConditionObject[] {
|
|
76
|
-
let formatOptions: FormatOptionsType = { operators: [] },
|
|
77
|
-
conditions = [];
|
|
78
|
-
|
|
79
|
-
if (operator) {
|
|
80
|
-
formatOptions = { operators: [operator] };
|
|
81
|
-
}
|
|
82
|
-
if (filterValues === "") {
|
|
83
|
-
filterValues = [];
|
|
84
|
-
} else if (typeof filterValues === "object" && filterValues.hasOwnProperty("operator") && filterValues.hasOwnProperty("values")) {
|
|
85
|
-
formatOptions = { operators: [filterValues.operator] };
|
|
86
|
-
filterValues = filterValues.values;
|
|
87
|
-
} else if (filterValues !== undefined && typeof filterValues !== "object" && typeof filterValues !== "string") {
|
|
88
|
-
throw new Error(`FilterUtils.js#_filterValuesToConditions: Unexpected type of input parameter vValues: ${typeof filterValues}`);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
const conditionsType: any = new ConditionsType(formatOptions);
|
|
92
|
-
const conditionValues = Array.isArray(filterValues) ? filterValues : [filterValues];
|
|
93
|
-
|
|
94
|
-
// Shortcut for operator without values and semantic date operations
|
|
95
|
-
if (
|
|
96
|
-
typeof operator === "string" &&
|
|
97
|
-
(conditionValues.length === 0 || SemanticDateOperators.getSemanticDateOperations().includes(operator))
|
|
98
|
-
) {
|
|
99
|
-
conditions = [Condition.createCondition(operator, conditionValues, null, null, ConditionValidated.NotValidated)];
|
|
100
|
-
} else {
|
|
101
|
-
conditions = conditionValues
|
|
102
|
-
.map((conditionValue) => {
|
|
103
|
-
const stringValue = conditionValue?.toString(),
|
|
104
|
-
parsedConditions = conditionsType.parseValue(stringValue, "any");
|
|
105
|
-
return parsedConditions?.[0];
|
|
106
|
-
})
|
|
107
|
-
.filter((conditionValue) => conditionValue !== undefined);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
return conditions;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
/**
|
|
114
|
-
* Maps an array of conditions to a comma separated list of filter values.
|
|
115
|
-
*
|
|
116
|
-
* @param conditions Array of filter conditions
|
|
117
|
-
* @param formatOptions Format options that specifies a condition type
|
|
118
|
-
* @private
|
|
119
|
-
* @returns Concatenated string of filter values
|
|
120
|
-
*/
|
|
121
|
-
static _conditionsToFilterModelString(conditions: object[], formatOptions: FormatOptionsType): string {
|
|
122
|
-
const conditionsType = new ConditionsType(formatOptions);
|
|
123
|
-
|
|
124
|
-
return conditions
|
|
125
|
-
.map((condition) => {
|
|
126
|
-
return conditionsType.formatValue([condition], "any") || "";
|
|
127
|
-
})
|
|
128
|
-
.filter((stringValue) => {
|
|
129
|
-
return stringValue !== "";
|
|
130
|
-
})
|
|
131
|
-
.join(",");
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
/**
|
|
135
|
-
* Listens to filter model changes and updates wrapper property "conditions".
|
|
136
|
-
*
|
|
137
|
-
* @param changeEvent Event triggered by a filter model change
|
|
138
|
-
* @private
|
|
139
|
-
*/
|
|
140
|
-
_handleFilterModelChange(changeEvent: any): void {
|
|
141
|
-
const propertyPath = this.getObjectBinding("filterValues")?.getPath(),
|
|
142
|
-
values = changeEvent.getSource().getProperty(propertyPath);
|
|
143
|
-
this.updateConditionsByFilterValues(values, "");
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
/**
|
|
147
|
-
* Listens to "conditions" changes and updates the filter model.
|
|
148
|
-
*
|
|
149
|
-
* @param conditions Event triggered by a "conditions" change
|
|
150
|
-
* @private
|
|
151
|
-
*/
|
|
152
|
-
_handleConditionsChange(conditions: any): void {
|
|
153
|
-
this.updateFilterModelByConditions(conditions);
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
/**
|
|
157
|
-
* Initialize CustomFilterFieldContentWrapper control and register observer.
|
|
158
|
-
*/
|
|
159
|
-
init(): void {
|
|
160
|
-
super.init();
|
|
161
|
-
this._conditionsObserver = new ManagedObjectObserver(this._observeChanges.bind(this));
|
|
162
|
-
this._conditionsObserver.observe(this, {
|
|
163
|
-
properties: ["conditions"]
|
|
164
|
-
});
|
|
165
|
-
this._filterModel = new JSONModel();
|
|
166
|
-
this._filterModel.attachPropertyChange(this._handleFilterModelChange, this);
|
|
167
|
-
this.setModel(this._filterModel, CustomFilterFieldContentWrapper.FILTER_MODEL_ALIAS);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
/**
|
|
171
|
-
* Overrides {@link sap.ui.core.Control#clone Control.clone} to clone additional
|
|
172
|
-
* internal states.
|
|
173
|
-
*
|
|
174
|
-
* @param [sIdSuffix] A suffix to be appended to the cloned control id
|
|
175
|
-
* @param [aLocalIds] An array of local IDs within the cloned hierarchy (internally used)
|
|
176
|
-
* @returns Reference to the newly created clone
|
|
177
|
-
* @protected
|
|
178
|
-
*/
|
|
179
|
-
clone(sIdSuffix: string | undefined, aLocalIds: string[] | undefined): this {
|
|
180
|
-
const clone = super.clone(sIdSuffix, aLocalIds);
|
|
181
|
-
// During cloning, the old model will be copied and overwrites any new model (same alias) that
|
|
182
|
-
// you introduce during init(); hence you need to overwrite it again by the new one that you've
|
|
183
|
-
// created during init() (i.e. clone._filterModel); that standard behaviour of super.clone()
|
|
184
|
-
// can't even be suppressed in an own constructor; for a detailed investigation of the cloning,
|
|
185
|
-
// please overwrite the setModel() method and check the list of callers and steps induced by them.
|
|
186
|
-
clone.setModel(clone._filterModel, CustomFilterFieldContentWrapper.FILTER_MODEL_ALIAS);
|
|
187
|
-
return clone;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
/**
|
|
191
|
-
* Listens to property changes.
|
|
192
|
-
*
|
|
193
|
-
* @param changes Property changes
|
|
194
|
-
* @private
|
|
195
|
-
*/
|
|
196
|
-
_observeChanges(changes: any): void {
|
|
197
|
-
if (changes.name === "conditions") {
|
|
198
|
-
this._handleConditionsChange(changes.current);
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
/**
|
|
203
|
-
* Gets the content of this wrapper control.
|
|
204
|
-
*
|
|
205
|
-
* @returns The wrapper content
|
|
206
|
-
* @private
|
|
207
|
-
*/
|
|
208
|
-
getContent(): Control {
|
|
209
|
-
return this.getAggregation("content") as Control;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
/**
|
|
213
|
-
* Gets the value for control property 'conditions'.
|
|
214
|
-
*
|
|
215
|
-
* @returns Array of filter conditions
|
|
216
|
-
* @private
|
|
217
|
-
*/
|
|
218
|
-
getConditions(): object[] {
|
|
219
|
-
return this.getProperty("conditions");
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* Sets the value for control property 'conditions'.
|
|
224
|
-
*
|
|
225
|
-
* @param [conditions] Array of filter conditions
|
|
226
|
-
* @returns Reference to this wrapper
|
|
227
|
-
* @private
|
|
228
|
-
*/
|
|
229
|
-
setConditions(conditions: object[]): this {
|
|
230
|
-
this.setProperty("conditions", conditions || []);
|
|
231
|
-
return this;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
/**
|
|
235
|
-
* Gets the filter model alias 'filterValues'.
|
|
236
|
-
*
|
|
237
|
-
* @returns The filter model
|
|
238
|
-
* @private
|
|
239
|
-
*/
|
|
240
|
-
getFilterModelAlias(): string {
|
|
241
|
-
return CustomFilterFieldContentWrapper.FILTER_MODEL_ALIAS;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
/**
|
|
245
|
-
* Updates the property "conditions" with filter values
|
|
246
|
-
* sent by ExtensionAPI#setFilterValues().
|
|
247
|
-
*
|
|
248
|
-
* @param values The filter values
|
|
249
|
-
* @param [operator] The operator name
|
|
250
|
-
* @private
|
|
251
|
-
*/
|
|
252
|
-
updateConditionsByFilterValues(values: any, operator?: string): void {
|
|
253
|
-
const conditions = CustomFilterFieldContentWrapper._filterValuesToConditions(values, operator);
|
|
254
|
-
this.setConditions(conditions);
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
/**
|
|
258
|
-
* Updates filter model with conditions
|
|
259
|
-
* sent by the {@link sap.ui.mdc.FilterField FilterField}.
|
|
260
|
-
*
|
|
261
|
-
* @param conditions Array of filter conditions
|
|
262
|
-
* @private
|
|
263
|
-
*/
|
|
264
|
-
updateFilterModelByConditions(conditions: any[]): void {
|
|
265
|
-
const operator = conditions[0]?.operator || "";
|
|
266
|
-
const formatOptions: FormatOptionsType = operator !== "" ? { operators: [operator] } : { operators: [] };
|
|
267
|
-
if (this.getBindingContext(CustomFilterFieldContentWrapper.FILTER_MODEL_ALIAS)) {
|
|
268
|
-
const stringValue = CustomFilterFieldContentWrapper._conditionsToFilterModelString(conditions, formatOptions);
|
|
269
|
-
this._filterModel.setProperty(
|
|
270
|
-
this.getBindingContext(CustomFilterFieldContentWrapper.FILTER_MODEL_ALIAS)?.getPath(),
|
|
271
|
-
stringValue
|
|
272
|
-
);
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
getAccessibilityInfo(): any {
|
|
277
|
-
const content = this.getContent();
|
|
278
|
-
return content?.getAccessibilityInfo?.() || {};
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
/**
|
|
282
|
-
* Returns the DOMNode ID to be used for the "labelFor" attribute.
|
|
283
|
-
*
|
|
284
|
-
* We forward the call of this method to the content control.
|
|
285
|
-
*
|
|
286
|
-
* @returns ID to be used for the <code>labelFor</code>
|
|
287
|
-
*/
|
|
288
|
-
getIdForLabel(): string {
|
|
289
|
-
const content = this.getContent();
|
|
290
|
-
return content?.getIdForLabel();
|
|
291
|
-
}
|
|
292
|
-
}
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* SAP UI development toolkit for HTML5 (SAPUI5)
|
|
3
|
-
* (c) Copyright 2009-2023 SAP SE. All rights reserved
|
|
4
|
-
*/
|
|
5
|
-
sap.ui.define(["sap/fe/core/CommonUtils", "sap/fe/core/helpers/ClassSupport", "sap/fe/core/helpers/KeepAliveHelper", "sap/fe/macros/DelegateUtil", "sap/m/QuickViewPage"], function (CommonUtils, ClassSupport, KeepAliveHelper, DelegateUtil, QuickViewPage) {
|
|
6
|
-
"use strict";
|
|
7
|
-
|
|
8
|
-
var _dec, _dec2, _dec3, _class, _class2, _descriptor, _descriptor2;
|
|
9
|
-
var defineUI5Class = ClassSupport.defineUI5Class;
|
|
10
|
-
var aggregation = ClassSupport.aggregation;
|
|
11
|
-
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
|
|
12
|
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
13
|
-
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
|
|
14
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
15
|
-
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
|
|
16
|
-
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'proposal-class-properties is enabled and runs after the decorators transform.'); }
|
|
17
|
-
let CustomQuickViewPage = (_dec = defineUI5Class("sap.fe.core.controls.CustomQuickViewPage"), _dec2 = aggregation({
|
|
18
|
-
type: "sap.ui.core.Control",
|
|
19
|
-
multiple: true
|
|
20
|
-
}), _dec3 = aggregation({
|
|
21
|
-
type: "sap.m.QuickViewGroup",
|
|
22
|
-
multiple: true,
|
|
23
|
-
singularName: "group",
|
|
24
|
-
isDefault: true
|
|
25
|
-
}), _dec(_class = (_class2 = /*#__PURE__*/function (_QuickViewPage) {
|
|
26
|
-
_inheritsLoose(CustomQuickViewPage, _QuickViewPage);
|
|
27
|
-
function CustomQuickViewPage() {
|
|
28
|
-
var _this;
|
|
29
|
-
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
30
|
-
args[_key] = arguments[_key];
|
|
31
|
-
}
|
|
32
|
-
_this = _QuickViewPage.call(this, ...args) || this;
|
|
33
|
-
_initializerDefineProperty(_this, "customContent", _descriptor, _assertThisInitialized(_this));
|
|
34
|
-
_initializerDefineProperty(_this, "groups", _descriptor2, _assertThisInitialized(_this));
|
|
35
|
-
return _this;
|
|
36
|
-
}
|
|
37
|
-
var _proto = CustomQuickViewPage.prototype;
|
|
38
|
-
_proto.onBeforeRendering = function onBeforeRendering(oEvent) {
|
|
39
|
-
const parent = this.getParent();
|
|
40
|
-
if (parent && parent.isA("sap.fe.core.controls.ConditionalWrapper") && parent.getProperty("condition") === true) {
|
|
41
|
-
this.setCrossAppNavCallback(() => {
|
|
42
|
-
const sQuickViewPageTitleLinkHref = DelegateUtil.getCustomData(this, "titleLink");
|
|
43
|
-
const oView = CommonUtils.getTargetView(this);
|
|
44
|
-
const oAppComponent = CommonUtils.getAppComponent(oView);
|
|
45
|
-
const oShellServiceHelper = oAppComponent.getShellServices();
|
|
46
|
-
let oShellHash = oShellServiceHelper.parseShellHash(sQuickViewPageTitleLinkHref);
|
|
47
|
-
const oNavArgs = {
|
|
48
|
-
target: {
|
|
49
|
-
semanticObject: oShellHash.semanticObject,
|
|
50
|
-
action: oShellHash.action
|
|
51
|
-
},
|
|
52
|
-
params: oShellHash.params
|
|
53
|
-
};
|
|
54
|
-
const sQuickViewPageTitleLinkIntent = `${oNavArgs.target.semanticObject}-${oNavArgs.target.action}`;
|
|
55
|
-
if (sQuickViewPageTitleLinkIntent && this.oCrossAppNavigator && this.oCrossAppNavigator.isNavigationSupported([sQuickViewPageTitleLinkIntent])) {
|
|
56
|
-
if (sQuickViewPageTitleLinkIntent && sQuickViewPageTitleLinkIntent !== "") {
|
|
57
|
-
if (typeof sQuickViewPageTitleLinkIntent === "string" && sQuickViewPageTitleLinkIntent !== "") {
|
|
58
|
-
var _oLinkControl;
|
|
59
|
-
let oLinkControl = this.getParent();
|
|
60
|
-
while (oLinkControl && !oLinkControl.isA("sap.ui.mdc.Link")) {
|
|
61
|
-
oLinkControl = oLinkControl.getParent();
|
|
62
|
-
}
|
|
63
|
-
const sTargetHref = (_oLinkControl = oLinkControl) === null || _oLinkControl === void 0 ? void 0 : _oLinkControl.getModel("$sapuimdcLink").getProperty("/titleLinkHref");
|
|
64
|
-
if (sTargetHref) {
|
|
65
|
-
oShellHash = oShellServiceHelper.parseShellHash(sTargetHref);
|
|
66
|
-
} else {
|
|
67
|
-
oShellHash = oShellServiceHelper.parseShellHash(sQuickViewPageTitleLinkIntent);
|
|
68
|
-
oShellHash.params = oNavArgs.params;
|
|
69
|
-
}
|
|
70
|
-
KeepAliveHelper.storeControlRefreshStrategyForHash(oView, oShellHash);
|
|
71
|
-
return {
|
|
72
|
-
target: {
|
|
73
|
-
semanticObject: oShellHash.semanticObject,
|
|
74
|
-
action: oShellHash.action
|
|
75
|
-
},
|
|
76
|
-
params: oShellHash.params
|
|
77
|
-
};
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
} else {
|
|
81
|
-
const oCurrentShellHash = oShellServiceHelper.parseShellHash(window.location.hash);
|
|
82
|
-
KeepAliveHelper.storeControlRefreshStrategyForHash(oView, oCurrentShellHash);
|
|
83
|
-
return {
|
|
84
|
-
target: {
|
|
85
|
-
semanticObject: oCurrentShellHash.semanticObject,
|
|
86
|
-
action: oCurrentShellHash.action,
|
|
87
|
-
appSpecificRoute: oCurrentShellHash.appSpecificRoute
|
|
88
|
-
},
|
|
89
|
-
params: oCurrentShellHash.params
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
});
|
|
93
|
-
}
|
|
94
|
-
_QuickViewPage.prototype.onBeforeRendering.call(this, oEvent);
|
|
95
|
-
const oPageContent = this.getPageContent();
|
|
96
|
-
const oForm = oPageContent.form;
|
|
97
|
-
if (oForm) {
|
|
98
|
-
const _aContent = this.customContent;
|
|
99
|
-
if (_aContent && _aContent.length > 0) {
|
|
100
|
-
_aContent.forEach(_oContent => {
|
|
101
|
-
const _oContentClone = _oContent.clone();
|
|
102
|
-
_oContentClone.setModel(this.getModel());
|
|
103
|
-
_oContentClone.setBindingContext(this.getBindingContext());
|
|
104
|
-
oForm.addContent(_oContentClone);
|
|
105
|
-
});
|
|
106
|
-
setTimeout(function () {
|
|
107
|
-
oForm.rerender();
|
|
108
|
-
}, 0);
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
};
|
|
112
|
-
return CustomQuickViewPage;
|
|
113
|
-
}(QuickViewPage), (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "customContent", [_dec2], {
|
|
114
|
-
configurable: true,
|
|
115
|
-
enumerable: true,
|
|
116
|
-
writable: true,
|
|
117
|
-
initializer: null
|
|
118
|
-
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, "groups", [_dec3], {
|
|
119
|
-
configurable: true,
|
|
120
|
-
enumerable: true,
|
|
121
|
-
writable: true,
|
|
122
|
-
initializer: null
|
|
123
|
-
})), _class2)) || _class);
|
|
124
|
-
return CustomQuickViewPage;
|
|
125
|
-
}, false);
|
|
126
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJDdXN0b21RdWlja1ZpZXdQYWdlIiwiZGVmaW5lVUk1Q2xhc3MiLCJhZ2dyZWdhdGlvbiIsInR5cGUiLCJtdWx0aXBsZSIsInNpbmd1bGFyTmFtZSIsImlzRGVmYXVsdCIsIm9uQmVmb3JlUmVuZGVyaW5nIiwib0V2ZW50IiwicGFyZW50IiwiZ2V0UGFyZW50IiwiaXNBIiwiZ2V0UHJvcGVydHkiLCJzZXRDcm9zc0FwcE5hdkNhbGxiYWNrIiwic1F1aWNrVmlld1BhZ2VUaXRsZUxpbmtIcmVmIiwiRGVsZWdhdGVVdGlsIiwiZ2V0Q3VzdG9tRGF0YSIsIm9WaWV3IiwiQ29tbW9uVXRpbHMiLCJnZXRUYXJnZXRWaWV3Iiwib0FwcENvbXBvbmVudCIsImdldEFwcENvbXBvbmVudCIsIm9TaGVsbFNlcnZpY2VIZWxwZXIiLCJnZXRTaGVsbFNlcnZpY2VzIiwib1NoZWxsSGFzaCIsInBhcnNlU2hlbGxIYXNoIiwib05hdkFyZ3MiLCJ0YXJnZXQiLCJzZW1hbnRpY09iamVjdCIsImFjdGlvbiIsInBhcmFtcyIsInNRdWlja1ZpZXdQYWdlVGl0bGVMaW5rSW50ZW50Iiwib0Nyb3NzQXBwTmF2aWdhdG9yIiwiaXNOYXZpZ2F0aW9uU3VwcG9ydGVkIiwib0xpbmtDb250cm9sIiwic1RhcmdldEhyZWYiLCJnZXRNb2RlbCIsIktlZXBBbGl2ZUhlbHBlciIsInN0b3JlQ29udHJvbFJlZnJlc2hTdHJhdGVneUZvckhhc2giLCJvQ3VycmVudFNoZWxsSGFzaCIsIndpbmRvdyIsImxvY2F0aW9uIiwiaGFzaCIsImFwcFNwZWNpZmljUm91dGUiLCJvUGFnZUNvbnRlbnQiLCJnZXRQYWdlQ29udGVudCIsIm9Gb3JtIiwiZm9ybSIsIl9hQ29udGVudCIsImN1c3RvbUNvbnRlbnQiLCJsZW5ndGgiLCJmb3JFYWNoIiwiX29Db250ZW50IiwiX29Db250ZW50Q2xvbmUiLCJjbG9uZSIsInNldE1vZGVsIiwic2V0QmluZGluZ0NvbnRleHQiLCJnZXRCaW5kaW5nQ29udGV4dCIsImFkZENvbnRlbnQiLCJzZXRUaW1lb3V0IiwicmVyZW5kZXIiLCJRdWlja1ZpZXdQYWdlIl0sInNvdXJjZVJvb3QiOiIuIiwic291cmNlcyI6WyJDdXN0b21RdWlja1ZpZXdQYWdlLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBDb21tb25VdGlscyBmcm9tIFwic2FwL2ZlL2NvcmUvQ29tbW9uVXRpbHNcIjtcbmltcG9ydCB7IGFnZ3JlZ2F0aW9uLCBkZWZpbmVVSTVDbGFzcyB9IGZyb20gXCJzYXAvZmUvY29yZS9oZWxwZXJzL0NsYXNzU3VwcG9ydFwiO1xuaW1wb3J0IEtlZXBBbGl2ZUhlbHBlciBmcm9tIFwic2FwL2ZlL2NvcmUvaGVscGVycy9LZWVwQWxpdmVIZWxwZXJcIjtcbmltcG9ydCBEZWxlZ2F0ZVV0aWwgZnJvbSBcInNhcC9mZS9tYWNyb3MvRGVsZWdhdGVVdGlsXCI7XG5pbXBvcnQgUXVpY2tWaWV3UGFnZSBmcm9tIFwic2FwL20vUXVpY2tWaWV3UGFnZVwiO1xuaW1wb3J0IHR5cGUgQ29udHJvbCBmcm9tIFwic2FwL3VpL2NvcmUvQ29udHJvbFwiO1xuaW1wb3J0IHR5cGUgTGluayBmcm9tIFwic2FwL3VpL21kYy9MaW5rXCI7XG5cbkBkZWZpbmVVSTVDbGFzcyhcInNhcC5mZS5jb3JlLmNvbnRyb2xzLkN1c3RvbVF1aWNrVmlld1BhZ2VcIilcbmNsYXNzIEN1c3RvbVF1aWNrVmlld1BhZ2UgZXh0ZW5kcyBRdWlja1ZpZXdQYWdlIHtcblx0QGFnZ3JlZ2F0aW9uKHsgdHlwZTogXCJzYXAudWkuY29yZS5Db250cm9sXCIsIG11bHRpcGxlOiB0cnVlIH0pXG5cdGN1c3RvbUNvbnRlbnQhOiBDb250cm9sW107XG5cdEBhZ2dyZWdhdGlvbih7IHR5cGU6IFwic2FwLm0uUXVpY2tWaWV3R3JvdXBcIiwgbXVsdGlwbGU6IHRydWUsIHNpbmd1bGFyTmFtZTogXCJncm91cFwiLCBpc0RlZmF1bHQ6IHRydWUgfSlcblx0Z3JvdXBzITogQ29udHJvbFtdO1xuXG5cdG9uQmVmb3JlUmVuZGVyaW5nKG9FdmVudDogYW55KSB7XG5cdFx0Y29uc3QgcGFyZW50ID0gdGhpcy5nZXRQYXJlbnQoKTtcblx0XHRpZiAocGFyZW50ICYmIHBhcmVudC5pc0EoXCJzYXAuZmUuY29yZS5jb250cm9scy5Db25kaXRpb25hbFdyYXBwZXJcIikgJiYgcGFyZW50LmdldFByb3BlcnR5KFwiY29uZGl0aW9uXCIpID09PSB0cnVlKSB7XG5cdFx0XHR0aGlzLnNldENyb3NzQXBwTmF2Q2FsbGJhY2soKCkgPT4ge1xuXHRcdFx0XHRjb25zdCBzUXVpY2tWaWV3UGFnZVRpdGxlTGlua0hyZWYgPSAoRGVsZWdhdGVVdGlsLmdldEN1c3RvbURhdGEgYXMgYW55KSh0aGlzLCBcInRpdGxlTGlua1wiKTtcblx0XHRcdFx0Y29uc3Qgb1ZpZXcgPSBDb21tb25VdGlscy5nZXRUYXJnZXRWaWV3KHRoaXMpO1xuXHRcdFx0XHRjb25zdCBvQXBwQ29tcG9uZW50ID0gQ29tbW9uVXRpbHMuZ2V0QXBwQ29tcG9uZW50KG9WaWV3KTtcblx0XHRcdFx0Y29uc3Qgb1NoZWxsU2VydmljZUhlbHBlciA9IG9BcHBDb21wb25lbnQuZ2V0U2hlbGxTZXJ2aWNlcygpO1xuXHRcdFx0XHRsZXQgb1NoZWxsSGFzaCA9IG9TaGVsbFNlcnZpY2VIZWxwZXIucGFyc2VTaGVsbEhhc2goc1F1aWNrVmlld1BhZ2VUaXRsZUxpbmtIcmVmKTtcblx0XHRcdFx0Y29uc3Qgb05hdkFyZ3MgPSB7XG5cdFx0XHRcdFx0dGFyZ2V0OiB7XG5cdFx0XHRcdFx0XHRzZW1hbnRpY09iamVjdDogb1NoZWxsSGFzaC5zZW1hbnRpY09iamVjdCxcblx0XHRcdFx0XHRcdGFjdGlvbjogb1NoZWxsSGFzaC5hY3Rpb25cblx0XHRcdFx0XHR9LFxuXHRcdFx0XHRcdHBhcmFtczogb1NoZWxsSGFzaC5wYXJhbXNcblx0XHRcdFx0fTtcblx0XHRcdFx0Y29uc3Qgc1F1aWNrVmlld1BhZ2VUaXRsZUxpbmtJbnRlbnQgPSBgJHtvTmF2QXJncy50YXJnZXQuc2VtYW50aWNPYmplY3R9LSR7b05hdkFyZ3MudGFyZ2V0LmFjdGlvbn1gO1xuXG5cdFx0XHRcdGlmIChcblx0XHRcdFx0XHRzUXVpY2tWaWV3UGFnZVRpdGxlTGlua0ludGVudCAmJlxuXHRcdFx0XHRcdHRoaXMub0Nyb3NzQXBwTmF2aWdhdG9yICYmXG5cdFx0XHRcdFx0dGhpcy5vQ3Jvc3NBcHBOYXZpZ2F0b3IuaXNOYXZpZ2F0aW9uU3VwcG9ydGVkKFtzUXVpY2tWaWV3UGFnZVRpdGxlTGlua0ludGVudF0pXG5cdFx0XHRcdCkge1xuXHRcdFx0XHRcdGlmIChzUXVpY2tWaWV3UGFnZVRpdGxlTGlua0ludGVudCAmJiBzUXVpY2tWaWV3UGFnZVRpdGxlTGlua0ludGVudCAhPT0gXCJcIikge1xuXHRcdFx0XHRcdFx0aWYgKHR5cGVvZiBzUXVpY2tWaWV3UGFnZVRpdGxlTGlua0ludGVudCA9PT0gXCJzdHJpbmdcIiAmJiBzUXVpY2tWaWV3UGFnZVRpdGxlTGlua0ludGVudCAhPT0gXCJcIikge1xuXHRcdFx0XHRcdFx0XHRsZXQgb0xpbmtDb250cm9sID0gdGhpcy5nZXRQYXJlbnQoKTtcblx0XHRcdFx0XHRcdFx0d2hpbGUgKG9MaW5rQ29udHJvbCAmJiAhb0xpbmtDb250cm9sLmlzQTxMaW5rPihcInNhcC51aS5tZGMuTGlua1wiKSkge1xuXHRcdFx0XHRcdFx0XHRcdG9MaW5rQ29udHJvbCA9IG9MaW5rQ29udHJvbC5nZXRQYXJlbnQoKTtcblx0XHRcdFx0XHRcdFx0fVxuXHRcdFx0XHRcdFx0XHRjb25zdCBzVGFyZ2V0SHJlZjogc3RyaW5nID0gb0xpbmtDb250cm9sPy5nZXRNb2RlbChcIiRzYXB1aW1kY0xpbmtcIikuZ2V0UHJvcGVydHkoXCIvdGl0bGVMaW5rSHJlZlwiKTtcblx0XHRcdFx0XHRcdFx0aWYgKHNUYXJnZXRIcmVmKSB7XG5cdFx0XHRcdFx0XHRcdFx0b1NoZWxsSGFzaCA9IG9TaGVsbFNlcnZpY2VIZWxwZXIucGFyc2VTaGVsbEhhc2goc1RhcmdldEhyZWYpO1xuXHRcdFx0XHRcdFx0XHR9IGVsc2Uge1xuXHRcdFx0XHRcdFx0XHRcdG9TaGVsbEhhc2ggPSBvU2hlbGxTZXJ2aWNlSGVscGVyLnBhcnNlU2hlbGxIYXNoKHNRdWlja1ZpZXdQYWdlVGl0bGVMaW5rSW50ZW50KTtcblx0XHRcdFx0XHRcdFx0XHRvU2hlbGxIYXNoLnBhcmFtcyA9IG9OYXZBcmdzLnBhcmFtcztcblx0XHRcdFx0XHRcdFx0fVxuXHRcdFx0XHRcdFx0XHRLZWVwQWxpdmVIZWxwZXIuc3RvcmVDb250cm9sUmVmcmVzaFN0cmF0ZWd5Rm9ySGFzaChvVmlldywgb1NoZWxsSGFzaCk7XG5cdFx0XHRcdFx0XHRcdHJldHVybiB7XG5cdFx0XHRcdFx0XHRcdFx0dGFyZ2V0OiB7XG5cdFx0XHRcdFx0XHRcdFx0XHRzZW1hbnRpY09iamVjdDogb1NoZWxsSGFzaC5zZW1hbnRpY09iamVjdCxcblx0XHRcdFx0XHRcdFx0XHRcdGFjdGlvbjogb1NoZWxsSGFzaC5hY3Rpb25cblx0XHRcdFx0XHRcdFx0XHR9LFxuXHRcdFx0XHRcdFx0XHRcdHBhcmFtczogb1NoZWxsSGFzaC5wYXJhbXNcblx0XHRcdFx0XHRcdFx0fTtcblx0XHRcdFx0XHRcdH1cblx0XHRcdFx0XHR9XG5cdFx0XHRcdH0gZWxzZSB7XG5cdFx0XHRcdFx0Y29uc3Qgb0N1cnJlbnRTaGVsbEhhc2ggPSBvU2hlbGxTZXJ2aWNlSGVscGVyLnBhcnNlU2hlbGxIYXNoKHdpbmRvdy5sb2NhdGlvbi5oYXNoKTtcblx0XHRcdFx0XHRLZWVwQWxpdmVIZWxwZXIuc3RvcmVDb250cm9sUmVmcmVzaFN0cmF0ZWd5Rm9ySGFzaChvVmlldywgb0N1cnJlbnRTaGVsbEhhc2gpO1xuXG5cdFx0XHRcdFx0cmV0dXJuIHtcblx0XHRcdFx0XHRcdHRhcmdldDoge1xuXHRcdFx0XHRcdFx0XHRzZW1hbnRpY09iamVjdDogb0N1cnJlbnRTaGVsbEhhc2guc2VtYW50aWNPYmplY3QsXG5cdFx0XHRcdFx0XHRcdGFjdGlvbjogb0N1cnJlbnRTaGVsbEhhc2guYWN0aW9uLFxuXHRcdFx0XHRcdFx0XHRhcHBTcGVjaWZpY1JvdXRlOiBvQ3VycmVudFNoZWxsSGFzaC5hcHBTcGVjaWZpY1JvdXRlXG5cdFx0XHRcdFx0XHR9LFxuXHRcdFx0XHRcdFx0cGFyYW1zOiBvQ3VycmVudFNoZWxsSGFzaC5wYXJhbXNcblx0XHRcdFx0XHR9O1xuXHRcdFx0XHR9XG5cdFx0XHR9KTtcblx0XHR9XG5cdFx0c3VwZXIub25CZWZvcmVSZW5kZXJpbmcob0V2ZW50KTtcblx0XHRjb25zdCBvUGFnZUNvbnRlbnQgPSB0aGlzLmdldFBhZ2VDb250ZW50KCk7XG5cdFx0Y29uc3Qgb0Zvcm0gPSBvUGFnZUNvbnRlbnQuZm9ybTtcblx0XHRpZiAob0Zvcm0pIHtcblx0XHRcdGNvbnN0IF9hQ29udGVudCA9IHRoaXMuY3VzdG9tQ29udGVudDtcblx0XHRcdGlmIChfYUNvbnRlbnQgJiYgX2FDb250ZW50Lmxlbmd0aCA+IDApIHtcblx0XHRcdFx0X2FDb250ZW50LmZvckVhY2goKF9vQ29udGVudDogYW55KSA9PiB7XG5cdFx0XHRcdFx0Y29uc3QgX29Db250ZW50Q2xvbmUgPSBfb0NvbnRlbnQuY2xvbmUoKTtcblx0XHRcdFx0XHRfb0NvbnRlbnRDbG9uZS5zZXRNb2RlbCh0aGlzLmdldE1vZGVsKCkpO1xuXHRcdFx0XHRcdF9vQ29udGVudENsb25lLnNldEJpbmRpbmdDb250ZXh0KHRoaXMuZ2V0QmluZGluZ0NvbnRleHQoKSk7XG5cdFx0XHRcdFx0b0Zvcm0uYWRkQ29udGVudChfb0NvbnRlbnRDbG9uZSk7XG5cdFx0XHRcdH0pO1xuXHRcdFx0XHRzZXRUaW1lb3V0KGZ1bmN0aW9uICgpIHtcblx0XHRcdFx0XHRvRm9ybS5yZXJlbmRlcigpO1xuXHRcdFx0XHR9LCAwKTtcblx0XHRcdH1cblx0XHR9XG5cdH1cbn1cblxuaW50ZXJmYWNlIEN1c3RvbVF1aWNrVmlld1BhZ2Uge1xuXHQvLyBQcml2YXRlIGluIFVJNVxuXHRvQ3Jvc3NBcHBOYXZpZ2F0b3I6IGFueTtcblxuXHQvLyBQcml2YXRlIGluIFVJNVxuXHRnZXRQYWdlQ29udGVu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
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* SAP UI development toolkit for HTML5 (SAPUI5)
|
|
3
|
-
* (c) Copyright 2009-2023 SAP SE. All rights reserved
|
|
4
|
-
*/
|
|
5
|
-
sap.ui.define(["sap/fe/core/CommonUtils","sap/fe/core/helpers/ClassSupport","sap/fe/core/helpers/KeepAliveHelper","sap/fe/macros/DelegateUtil","sap/m/QuickViewPage"],function(e,t,r,i,n){"use strict";var o,a,s,l,c,u,p;var f=t.defineUI5Class;var g=t.aggregation;function h(e,t,r,i){if(!r)return;Object.defineProperty(e,t,{enumerable:r.enumerable,configurable:r.configurable,writable:r.writable,value:r.initializer?r.initializer.call(i):void 0})}function m(e){if(e===void 0){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e}function d(e,t){e.prototype=Object.create(t.prototype);e.prototype.constructor=e;b(e,t)}function b(e,t){b=Object.setPrototypeOf?Object.setPrototypeOf.bind():function e(t,r){t.__proto__=r;return t};return b(e,t)}function v(e,t,r,i,n){var o={};Object.keys(i).forEach(function(e){o[e]=i[e]});o.enumerable=!!o.enumerable;o.configurable=!!o.configurable;if("value"in o||o.initializer){o.writable=true}o=r.slice().reverse().reduce(function(r,i){return i(e,t,r)||r},o);if(n&&o.initializer!==void 0){o.value=o.initializer?o.initializer.call(n):void 0;o.initializer=undefined}if(o.initializer===void 0){Object.defineProperty(e,t,o);o=null}return o}function y(e,t){throw new Error("Decorating class property failed. Please ensure that "+"proposal-class-properties is enabled and runs after the decorators transform.")}let C=(o=f("sap.fe.core.controls.CustomQuickViewPage"),a=g({type:"sap.ui.core.Control",multiple:true}),s=g({type:"sap.m.QuickViewGroup",multiple:true,singularName:"group",isDefault:true}),o(l=(c=function(t){d(n,t);function n(){var e;for(var r=arguments.length,i=new Array(r),n=0;n<r;n++){i[n]=arguments[n]}e=t.call(this,...i)||this;h(e,"customContent",u,m(e));h(e,"groups",p,m(e));return e}var o=n.prototype;o.onBeforeRendering=function n(o){const a=this.getParent();if(a&&a.isA("sap.fe.core.controls.ConditionalWrapper")&&a.getProperty("condition")===true){this.setCrossAppNavCallback(()=>{const t=i.getCustomData(this,"titleLink");const n=e.getTargetView(this);const o=e.getAppComponent(n);const a=o.getShellServices();let s=a.parseShellHash(t);const l={target:{semanticObject:s.semanticObject,action:s.action},params:s.params};const c=`${l.target.semanticObject}-${l.target.action}`;if(c&&this.oCrossAppNavigator&&this.oCrossAppNavigator.isNavigationSupported([c])){if(c&&c!==""){if(typeof c==="string"&&c!==""){var u;let e=this.getParent();while(e&&!e.isA("sap.ui.mdc.Link")){e=e.getParent()}const t=(u=e)===null||u===void 0?void 0:u.getModel("$sapuimdcLink").getProperty("/titleLinkHref");if(t){s=a.parseShellHash(t)}else{s=a.parseShellHash(c);s.params=l.params}r.storeControlRefreshStrategyForHash(n,s);return{target:{semanticObject:s.semanticObject,action:s.action},params:s.params}}}}else{const e=a.parseShellHash(window.location.hash);r.storeControlRefreshStrategyForHash(n,e);return{target:{semanticObject:e.semanticObject,action:e.action,appSpecificRoute:e.appSpecificRoute},params:e.params}}})}t.prototype.onBeforeRendering.call(this,o);const s=this.getPageContent();const l=s.form;if(l){const e=this.customContent;if(e&&e.length>0){e.forEach(e=>{const t=e.clone();t.setModel(this.getModel());t.setBindingContext(this.getBindingContext());l.addContent(t)});setTimeout(function(){l.rerender()},0)}}};return n}(n),u=v(c.prototype,"customContent",[a],{configurable:true,enumerable:true,writable:true,initializer:null}),p=v(c.prototype,"groups",[s],{configurable:true,enumerable:true,writable:true,initializer:null}),c))||l);return C},false);
|
|
6
|
-
//# sourceMappingURL=CustomQuickViewPage.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomQuickViewPage.js","names":["sap","ui","define","CommonUtils","ClassSupport","KeepAliveHelper","DelegateUtil","QuickViewPage","_dec","_dec2","_dec3","_class","_class2","_descriptor","_descriptor2","defineUI5Class","aggregation","_initializerDefineProperty","target","property","descriptor","context","Object","defineProperty","enumerable","configurable","writable","value","initializer","call","_assertThisInitialized","self","ReferenceError","_inheritsLoose","subClass","superClass","prototype","create","constructor","_setPrototypeOf","o","p","setPrototypeOf","bind","__proto__","_applyDecoratedDescriptor","decorators","desc","keys","forEach","key","slice","reverse","reduce","decorator","undefined","_initializerWarningHelper","Error","CustomQuickViewPage","type","multiple","singularName","isDefault","_QuickViewPage","_this","_len","arguments","length","args","Array","_key","this","_proto","onBeforeRendering","oEvent","parent","getParent","isA","getProperty","setCrossAppNavCallback","sQuickViewPageTitleLinkHref","getCustomData","oView","getTargetView","oAppComponent","getAppComponent","oShellServiceHelper","getShellServices","oShellHash","parseShellHash","oNavArgs","semanticObject","action","params","sQuickViewPageTitleLinkIntent","oCrossAppNavigator","isNavigationSupported","_oLinkControl","oLinkControl","sTargetHref","getModel","storeControlRefreshStrategyForHash","oCurrentShellHash","window","location","hash","appSpecificRoute","oPageContent","getPageContent","oForm","form","_aContent","customContent","_oContent","_oContentClone","clone","setModel","setBindingContext","getBindingContext","addContent","setTimeout","rerender"],"sources":["CustomQuickViewPage-dbg.js"],"mappings":"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"}
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import CommonUtils from "sap/fe/core/CommonUtils";
|
|
2
|
-
import { aggregation, defineUI5Class } from "sap/fe/core/helpers/ClassSupport";
|
|
3
|
-
import KeepAliveHelper from "sap/fe/core/helpers/KeepAliveHelper";
|
|
4
|
-
import DelegateUtil from "sap/fe/macros/DelegateUtil";
|
|
5
|
-
import QuickViewPage from "sap/m/QuickViewPage";
|
|
6
|
-
import type Control from "sap/ui/core/Control";
|
|
7
|
-
import type Link from "sap/ui/mdc/Link";
|
|
8
|
-
|
|
9
|
-
@defineUI5Class("sap.fe.core.controls.CustomQuickViewPage")
|
|
10
|
-
class CustomQuickViewPage extends QuickViewPage {
|
|
11
|
-
@aggregation({ type: "sap.ui.core.Control", multiple: true })
|
|
12
|
-
customContent!: Control[];
|
|
13
|
-
@aggregation({ type: "sap.m.QuickViewGroup", multiple: true, singularName: "group", isDefault: true })
|
|
14
|
-
groups!: Control[];
|
|
15
|
-
|
|
16
|
-
onBeforeRendering(oEvent: any) {
|
|
17
|
-
const parent = this.getParent();
|
|
18
|
-
if (parent && parent.isA("sap.fe.core.controls.ConditionalWrapper") && parent.getProperty("condition") === true) {
|
|
19
|
-
this.setCrossAppNavCallback(() => {
|
|
20
|
-
const sQuickViewPageTitleLinkHref = (DelegateUtil.getCustomData as any)(this, "titleLink");
|
|
21
|
-
const oView = CommonUtils.getTargetView(this);
|
|
22
|
-
const oAppComponent = CommonUtils.getAppComponent(oView);
|
|
23
|
-
const oShellServiceHelper = oAppComponent.getShellServices();
|
|
24
|
-
let oShellHash = oShellServiceHelper.parseShellHash(sQuickViewPageTitleLinkHref);
|
|
25
|
-
const oNavArgs = {
|
|
26
|
-
target: {
|
|
27
|
-
semanticObject: oShellHash.semanticObject,
|
|
28
|
-
action: oShellHash.action
|
|
29
|
-
},
|
|
30
|
-
params: oShellHash.params
|
|
31
|
-
};
|
|
32
|
-
const sQuickViewPageTitleLinkIntent = `${oNavArgs.target.semanticObject}-${oNavArgs.target.action}`;
|
|
33
|
-
|
|
34
|
-
if (
|
|
35
|
-
sQuickViewPageTitleLinkIntent &&
|
|
36
|
-
this.oCrossAppNavigator &&
|
|
37
|
-
this.oCrossAppNavigator.isNavigationSupported([sQuickViewPageTitleLinkIntent])
|
|
38
|
-
) {
|
|
39
|
-
if (sQuickViewPageTitleLinkIntent && sQuickViewPageTitleLinkIntent !== "") {
|
|
40
|
-
if (typeof sQuickViewPageTitleLinkIntent === "string" && sQuickViewPageTitleLinkIntent !== "") {
|
|
41
|
-
let oLinkControl = this.getParent();
|
|
42
|
-
while (oLinkControl && !oLinkControl.isA<Link>("sap.ui.mdc.Link")) {
|
|
43
|
-
oLinkControl = oLinkControl.getParent();
|
|
44
|
-
}
|
|
45
|
-
const sTargetHref: string = oLinkControl?.getModel("$sapuimdcLink").getProperty("/titleLinkHref");
|
|
46
|
-
if (sTargetHref) {
|
|
47
|
-
oShellHash = oShellServiceHelper.parseShellHash(sTargetHref);
|
|
48
|
-
} else {
|
|
49
|
-
oShellHash = oShellServiceHelper.parseShellHash(sQuickViewPageTitleLinkIntent);
|
|
50
|
-
oShellHash.params = oNavArgs.params;
|
|
51
|
-
}
|
|
52
|
-
KeepAliveHelper.storeControlRefreshStrategyForHash(oView, oShellHash);
|
|
53
|
-
return {
|
|
54
|
-
target: {
|
|
55
|
-
semanticObject: oShellHash.semanticObject,
|
|
56
|
-
action: oShellHash.action
|
|
57
|
-
},
|
|
58
|
-
params: oShellHash.params
|
|
59
|
-
};
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
} else {
|
|
63
|
-
const oCurrentShellHash = oShellServiceHelper.parseShellHash(window.location.hash);
|
|
64
|
-
KeepAliveHelper.storeControlRefreshStrategyForHash(oView, oCurrentShellHash);
|
|
65
|
-
|
|
66
|
-
return {
|
|
67
|
-
target: {
|
|
68
|
-
semanticObject: oCurrentShellHash.semanticObject,
|
|
69
|
-
action: oCurrentShellHash.action,
|
|
70
|
-
appSpecificRoute: oCurrentShellHash.appSpecificRoute
|
|
71
|
-
},
|
|
72
|
-
params: oCurrentShellHash.params
|
|
73
|
-
};
|
|
74
|
-
}
|
|
75
|
-
});
|
|
76
|
-
}
|
|
77
|
-
super.onBeforeRendering(oEvent);
|
|
78
|
-
const oPageContent = this.getPageContent();
|
|
79
|
-
const oForm = oPageContent.form;
|
|
80
|
-
if (oForm) {
|
|
81
|
-
const _aContent = this.customContent;
|
|
82
|
-
if (_aContent && _aContent.length > 0) {
|
|
83
|
-
_aContent.forEach((_oContent: any) => {
|
|
84
|
-
const _oContentClone = _oContent.clone();
|
|
85
|
-
_oContentClone.setModel(this.getModel());
|
|
86
|
-
_oContentClone.setBindingContext(this.getBindingContext());
|
|
87
|
-
oForm.addContent(_oContentClone);
|
|
88
|
-
});
|
|
89
|
-
setTimeout(function () {
|
|
90
|
-
oForm.rerender();
|
|
91
|
-
}, 0);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
interface CustomQuickViewPage {
|
|
98
|
-
// Private in UI5
|
|
99
|
-
oCrossAppNavigator: any;
|
|
100
|
-
|
|
101
|
-
// Private in UI5
|
|
102
|
-
getPageContent(): any;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
export default CustomQuickViewPage;
|