@sapui5/sap.ushell 1.116.0 → 1.117.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/main/js/sap/ushell/.library +1 -1
- package/src/main/js/sap/ushell/ApplicationType.js +47 -939
- package/src/main/js/sap/ushell/Container.js +3 -3
- package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
- package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
- package/src/main/js/sap/ushell/Layout.js +1 -1
- package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
- package/src/main/js/sap/ushell/SessionHandler.js +7 -5
- package/src/main/js/sap/ushell/TechnicalParameters.js +1 -1
- package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
- package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
- package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
- package/src/main/js/sap/ushell/User.js +2 -2
- package/src/main/js/sap/ushell/_ApplicationType/guiResolution.js +3 -4
- package/src/main/js/sap/ushell/_ApplicationType/ui5Resolution.js +121 -0
- package/src/main/js/sap/ushell/_ApplicationType/urlResolution.js +105 -0
- package/src/main/js/sap/ushell/_ApplicationType/urlTemplateResolution.js +626 -0
- package/src/main/js/sap/ushell/_ApplicationType/utils.js +94 -3
- package/src/main/js/sap/ushell/_ApplicationType/wcfResolution.js +61 -0
- package/src/main/js/sap/ushell/_ApplicationType/wdaResolution.js +28 -0
- package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +12 -3
- package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +12 -3
- package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
- package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +4 -5
- package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +20 -4
- package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/AppCommunicationMgr.js +11 -6
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +2 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeContext.js +43 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/SessionHandlerAgent.js +14 -12
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/Component.js +8 -8
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +7 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +18 -7
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +12 -66
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +29 -2
- package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +4 -2
- package/src/main/js/sap/ushell/components/GroupsHelper.js +15 -13
- package/src/main/js/sap/ushell/components/HeaderManager.js +3 -1
- package/src/main/js/sap/ushell/components/HomepageManager.js +3 -6
- package/src/main/js/sap/ushell/components/MessagingHelper.js +2 -2
- package/src/main/js/sap/ushell/components/_HeaderManager/AddHeadEndItemsStrategy.js +4 -3
- package/src/main/js/sap/ushell/components/_HeaderManager/ControlManager.js +5 -7
- package/src/main/js/sap/ushell/components/_HeaderManager/ShellHeader.controller.js +12 -10
- package/src/main/js/sap/ushell/components/_HomepageManager/DashboardLoadingManager.js +3 -1
- package/src/main/js/sap/ushell/components/appfinder/AppFinderView.js +7 -4
- package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +19 -5
- package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +8 -12
- package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +3 -3
- package/src/main/js/sap/ushell/components/appfinder/GroupListPopover.controller.js +3 -1
- package/src/main/js/sap/ushell/components/appfinder/HierarchyFolders.controller.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/HierarchyFoldersView.js +3 -1
- package/src/main/js/sap/ushell/components/appfinder/VisualizationOrganizerHelper.js +4 -3
- package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +245 -377
- package/src/main/js/sap/ushell/components/applicationIntegration/Storage.js +22 -5
- package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +23 -148
- package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +199 -306
- package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxesCache.js +42 -19
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +90 -65
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPIInterface.js +3 -4
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageUtils.js +185 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/application/WebGUIStatefulHandler.js +88 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +3 -3
- package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +1 -1
- package/src/main/js/sap/ushell/components/cards/Configuration.controller.js +2 -3
- package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +24 -595
- package/src/main/js/sap/ushell/components/container/IframePOSTUtils.js +225 -0
- package/src/main/js/sap/ushell/components/contentFinder/Component.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLListBinding.js +2 -2
- package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLModel.js +2 -2
- package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +2 -2
- package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/ActionMode.js +12 -3
- package/src/main/js/sap/ushell/components/homepage/Component.js +3 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +25 -0
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +12 -10
- package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -3
- package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +13 -11
- package/src/main/js/sap/ushell/components/homepage/FLPAnalytics.js +11 -11
- package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/pages/ActionMode.js +6 -6
- package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
- package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
- package/src/main/js/sap/ushell/components/pages/StateManager.js +3 -2
- package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +90 -20
- package/src/main/js/sap/ushell/components/pages/controller/PagesAndSpaceId.js +1 -1
- package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/pages/view/PageRuntime.view.xml +1 -45
- package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +4 -4
- package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +182 -46
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/view/CustomTreeItem.fragment.xml +4 -4
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/view/NavigationBarMenuPopover.fragment.xml +8 -1
- package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +14 -12
- package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +1 -3
- package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +8 -6
- package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +16 -4
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchCEP.controller.js +34 -40
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +4 -7
- package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/ErrorMessageHelper.js +4 -2
- package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.controller.js +24 -26
- package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +8 -7
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSelector.controller.js +3 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSetting.fragment.xml +2 -0
- package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsForm.js +5 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +20 -2
- package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/UserLanguageRegionEntry.js +12 -22
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +4 -2
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenu.controller.js +50 -46
- package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.controller.js +11 -3
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.controller.js +11 -2
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +11 -4
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +14 -3
- package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +28 -28
- package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +204 -28
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +60 -4
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +10 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ar.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_bg.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ca.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cs.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cy.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_da.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_de.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_el.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_GB.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_sappsd.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es_MX.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_et.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fi.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr_CA.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hi.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hu.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_id.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_it.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_iw.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ja.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_kk.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ko.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lt.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lv.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ms.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_nl.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_no.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pl.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt_PT.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ro.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ru.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sk.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sl.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sv.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_tr.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_uk.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_vi.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_CN.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_TW.properties +5 -2
- package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +2 -2
- package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +11 -11
- package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +4 -4
- package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
- package/src/main/js/sap/ushell/library.js +1 -1
- package/src/main/js/sap/ushell/navigationMode.js +1 -1
- package/src/main/js/sap/ushell/performance/FesrEnhancer.js +20 -21
- package/src/main/js/sap/ushell/performance/ShellAnalytics.js +47 -32
- package/src/main/js/sap/ushell/performance/StatisticalRecord.js +65 -31
- package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +2 -2
- package/src/main/js/sap/ushell/renderers/fiori2/Shell.controller.js +78 -75
- package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +2 -2
- package/src/main/js/sap/ushell/renderers/fiori2/ShellAsync.view.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/allMyApps/AllMyApps.controller.js +93 -94
- package/src/main/js/sap/ushell/renderers/fiori2/allMyApps/AllMyAppsKeyboardHandler.js +8 -8
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources.properties +4 -2
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ar.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_bg.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ca.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cs.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cy.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_da.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_de.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_el.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_GB.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_sappsd.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saprigi.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saptrc.properties +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es_MX.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_et.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fi.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr_CA.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hi.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hr.properties +14 -13
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hu.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_id.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_it.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_iw.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ja.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_kk.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ko.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lt.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lv.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ms.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_nl.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_no.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pl.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt_PT.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ro.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ru.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sh.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sk.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sl.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sv.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_th.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_tr.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_uk.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_vi.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_CN.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_TW.properties +2 -1
- package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/manifest.json +1 -1
- package/src/main/js/sap/ushell/services/AppConfiguration.js +24 -2
- package/src/main/js/sap/ushell/services/AppLifeCycle.js +18 -16
- package/src/main/js/sap/ushell/services/AppState.js +1 -1
- package/src/main/js/sap/ushell/services/Bookmark.js +54 -20
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +1 -1
- package/src/main/js/sap/ushell/services/CommonDataModel.js +1 -1
- package/src/main/js/sap/ushell/services/Configuration.js +1 -1
- package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
- package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
- package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +1 -1
- package/src/main/js/sap/ushell/services/DarkModeSupport.js +1 -1
- package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
- package/src/main/js/sap/ushell/services/Menu.js +1 -1
- package/src/main/js/sap/ushell/services/Message.js +1 -1
- package/src/main/js/sap/ushell/services/MessageBroker.js +1 -1
- package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
- package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
- package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
- package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
- package/src/main/js/sap/ushell/services/Pages.js +1 -1
- package/src/main/js/sap/ushell/services/Personalization.js +1 -1
- package/src/main/js/sap/ushell/services/PluginManager.js +30 -8
- package/src/main/js/sap/ushell/services/ReferenceResolver.js +1 -1
- package/src/main/js/sap/ushell/services/Search.js +1 -1
- package/src/main/js/sap/ushell/services/SearchCEP.js +8 -2
- package/src/main/js/sap/ushell/services/SearchableContent.js +1 -1
- package/src/main/js/sap/ushell/services/SmartNavigation.js +1 -1
- package/src/main/js/sap/ushell/services/SpaceContent.js +12 -4
- package/src/main/js/sap/ushell/services/UITracer.js +295 -33
- package/src/main/js/sap/ushell/services/URLParsing.js +1 -1
- package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
- package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
- package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
- package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
- package/src/main/js/sap/ushell/services/UserDefaultParameters.js +1 -1
- package/src/main/js/sap/ushell/services/UserInfo.js +1 -1
- package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
- package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
- package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +1 -1
- package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
- package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
- package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +9 -46
- package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
- package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
- package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
- package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
- package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +1 -1
- package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstance.js +10 -3
- package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLink.js +12 -4
- package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
- package/src/main/js/sap/ushell/themes/base/MenuBar.less +3 -3
- package/src/main/js/sap/ushell/themes/base/SearchCEP.less +1 -1
- package/src/main/js/sap/ushell/themes/base/ShellAppTitle.less +10 -30
- package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.eot +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.json +2 -1
- package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.ttf +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.woff +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.woff2 +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.eot +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.ttf +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff2 +0 -0
- package/src/main/js/sap/ushell/themes/sap_belize/ShellHeader.less +1 -11
- package/src/main/js/sap/ushell/themes/sap_belize_hcb/ShellHeader.less +0 -11
- package/src/main/js/sap/ushell/themes/sap_belize_hcw/ShellHeader.less +1 -13
- package/src/main/js/sap/ushell/themes/sap_fiori_3/ShellHeader.less +1 -9
- package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/ShellHeader.less +1 -9
- package/src/main/js/sap/ushell/themes/sap_fiori_3_hcb/ShellHeader.less +1 -10
- package/src/main/js/sap/ushell/themes/sap_fiori_3_hcw/ShellHeader.less +0 -12
- package/src/main/js/sap/ushell/themes/sap_hcb/ShellHeader.less +0 -12
- package/src/main/js/sap/ushell/themes/sap_horizon/ShellAppTitle.less +1 -9
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/ShellAppTitle.less +1 -7
- package/src/main/js/sap/ushell/themes/sap_horizon_hcb/ShellAppTitle.less +0 -9
- package/src/main/js/sap/ushell/themes/sap_horizon_hcw/ShellAppTitle.less +0 -11
- package/src/main/js/sap/ushell/ui/QuickAccess.js +11 -2
- package/src/main/js/sap/ushell/ui/ShellHeader.fragment.xml +5 -1
- package/src/main/js/sap/ushell/ui/ShellHeader.js +5 -1
- package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +5 -5
- package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/Page.js +8 -16
- package/src/main/js/sap/ushell/ui/launchpad/Section.js +732 -171
- package/src/main/js/sap/ushell/ui/launchpad/SectionRenderer.js +66 -0
- package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +14 -1
- package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +115 -63
- package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +30 -76
- package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
- package/src/main/js/sap/ushell/ui/utils.js +1 -1
- package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
- package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
- package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +23 -2
- package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
- package/src/main/js/sap/ushell/utils.js +108 -0
- package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
- package/ui5.yaml +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimePostMessage.js +0 -82
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimePostMessageAPI.js +0 -34
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n.properties +0 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_ar.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_bg.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_ca.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_cs.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_cy.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_da.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_de.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_el.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_en.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_en_GB.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_en_US_sappsd.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_en_US_saprigi.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_en_US_saptrc.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_es.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_es_MX.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_et.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_fi.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_fr.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_fr_CA.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_hi.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_hr.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_hu.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_id.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_it.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_iw.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_ja.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_kk.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_ko.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_lt.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_lv.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_ms.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_nl.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_no.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_pl.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_pt.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_pt_PT.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_ro.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_ru.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_sh.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_sk.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_sl.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_sv.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_th.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_tr.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_uk.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_vi.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_zh_CN.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/i18n/i18n_zh_TW.properties +0 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/manifest.json +0 -66
- package/src/main/js/sap/ushell/ui/launchpad/Section.control.xml +0 -243
|
@@ -131,8 +131,9 @@ sap.ui.define([
|
|
|
131
131
|
* @private
|
|
132
132
|
*/
|
|
133
133
|
_onBeforeCreatedHandler: function (oUi5FesrHandle, oUi5Interaction) {
|
|
134
|
-
var oDetectedScenario = this._detectScenario(oUi5FesrHandle, oUi5Interaction)
|
|
135
|
-
|
|
134
|
+
var oDetectedScenario = this._detectScenario(oUi5FesrHandle, oUi5Interaction);
|
|
135
|
+
var sApplicationId = this._getLastTrackedApplicationId();
|
|
136
|
+
|
|
136
137
|
if (sApplicationId) {
|
|
137
138
|
// Add the latest remembered Fiori ID to every record until a different Fiori ID is set.
|
|
138
139
|
// This is needed to relate interactions tracked afterwards to the started app.
|
|
@@ -184,40 +185,39 @@ sap.ui.define([
|
|
|
184
185
|
var oLastRecord = ShellAnalytics.getLastClosedRecord();
|
|
185
186
|
this._setLastTrackedRecord(oLastRecord);
|
|
186
187
|
// case home app: Home app is detected in a special way.
|
|
187
|
-
if (!!oLastRecord && oLastRecord.
|
|
188
|
+
if (!!oLastRecord && oLastRecord.isTargetHomeApp) {
|
|
188
189
|
return createResultObject(SCENARIOS.CUSTOM_HOME_INITIAL);
|
|
189
190
|
}
|
|
190
191
|
// case app finder, pages, and homepage
|
|
191
192
|
switch (oUi5FesrHandle.appNameLong) {
|
|
192
193
|
case "sap.ushell.components.homepage":
|
|
193
|
-
return createResultObject(SCENARIOS.HOME_INITIAL);
|
|
194
194
|
case "sap.ushell.components.pages":
|
|
195
195
|
return createResultObject(SCENARIOS.HOME_INITIAL);
|
|
196
196
|
case "sap.ushell.components.appfinder":
|
|
197
197
|
return createResultObject(SCENARIOS.FINDER_INITIAL);
|
|
198
198
|
default:
|
|
199
|
-
|
|
200
|
-
|
|
199
|
+
// application direct start
|
|
200
|
+
return createResultObject(SCENARIOS.APP_INITIAL, oLastRecord);
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
-
var oLastTrackedRecord = this._getLastTrackedRecord()
|
|
205
|
-
|
|
206
|
-
|
|
204
|
+
var oLastTrackedRecord = this._getLastTrackedRecord();
|
|
205
|
+
var aNavigationRecords = ShellAnalytics.getNextNavigationRecords(oLastTrackedRecord);
|
|
206
|
+
var sScenario,
|
|
207
207
|
oNavigationRecord;
|
|
208
|
+
|
|
208
209
|
if (aNavigationRecords.length === 1) {
|
|
209
210
|
oNavigationRecord = aNavigationRecords[0];
|
|
210
211
|
// consider that if there was navigation the saved navigation and new navigation has different time
|
|
211
|
-
if ((oNavigationRecord && oLastTrackedRecord && !oNavigationRecord.isEqual(oLastTrackedRecord))
|
|
212
|
-
|| (!oLastTrackedRecord && oNavigationRecord)) {
|
|
212
|
+
if ((oNavigationRecord && oLastTrackedRecord && !oNavigationRecord.isEqual(oLastTrackedRecord)) || (!oLastTrackedRecord && oNavigationRecord)) {
|
|
213
213
|
this._setLastTrackedRecord(oNavigationRecord);
|
|
214
|
-
// specify
|
|
214
|
+
// specify navigation scenario further when during loading
|
|
215
215
|
sScenario = oNavigationRecord.step === SCENARIOS.HOME_LOADING ? SCENARIOS.HOME_LOADING : SCENARIOS.NAVIGATION;
|
|
216
216
|
return createResultObject(sScenario, oNavigationRecord);
|
|
217
217
|
}
|
|
218
218
|
} else if (aNavigationRecords.length > 1) {
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
aNavigationRecords.pop();
|
|
220
|
+
oNavigationRecord = aNavigationRecords[0];
|
|
221
221
|
this._setLastTrackedRecord(oNavigationRecord);
|
|
222
222
|
sScenario = oNavigationRecord.step === SCENARIOS.HOME_LOADING ? SCENARIOS.HOME_LOADING : SCENARIOS.NAVIGATION;
|
|
223
223
|
return createResultObject(sScenario, oNavigationRecord);
|
|
@@ -261,8 +261,7 @@ sap.ui.define([
|
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
// unknown scenario
|
|
264
|
-
Log.warning("[fesrEnhFlp] Unknown scenario at the end of execution, unnecessary code executed",
|
|
265
|
-
null, "sap.ushell.performance.FesrEnhancer");
|
|
264
|
+
Log.warning("[fesrEnhFlp] Unknown scenario at the end of execution, unnecessary code executed", null, "sap.ushell.performance.FesrEnhancer");
|
|
266
265
|
return oIntermediateResult;
|
|
267
266
|
},
|
|
268
267
|
|
|
@@ -276,8 +275,8 @@ sap.ui.define([
|
|
|
276
275
|
* @returns {object} The enhanced version using the given information for scenario initial start.
|
|
277
276
|
*/
|
|
278
277
|
_enhanceInitialStart: function (oIntermediateResult, sStepName, sPerformanceMarkName) {
|
|
279
|
-
var oMark
|
|
280
|
-
|
|
278
|
+
var oMark;
|
|
279
|
+
var oEnhancedFesrHandle = deepExtend({}, oIntermediateResult);
|
|
281
280
|
|
|
282
281
|
// set step name
|
|
283
282
|
if (sStepName === SCENARIOS.CUSTOM_HOME_INITIAL) {
|
|
@@ -301,7 +300,7 @@ sap.ui.define([
|
|
|
301
300
|
return oEnhancedFesrHandle;
|
|
302
301
|
}
|
|
303
302
|
// empty page
|
|
304
|
-
|
|
303
|
+
oMark = this._getPerformanceEntries("FLP-Pages-Service-loadPage-end", false)[0];
|
|
305
304
|
if (oMark) {
|
|
306
305
|
// in case of empty page, the time load page end is most accurate
|
|
307
306
|
oEnhancedFesrHandle.timeToInteractive = oMark.startTime;
|
|
@@ -333,7 +332,7 @@ sap.ui.define([
|
|
|
333
332
|
oEnhancedFesrHandle.stepName = oRelatedRecord.step || oIntermediateResult.stepName;
|
|
334
333
|
}
|
|
335
334
|
oEnhancedFesrHandle.appNameShort = oRelatedRecord.targetApplication || "";
|
|
336
|
-
if (oRelatedRecord.
|
|
335
|
+
if (oRelatedRecord.targetApplicationType === "UI5") {
|
|
337
336
|
oEnhancedFesrHandle.interactionType = INTERACTION_TYPE.APP_START;
|
|
338
337
|
}
|
|
339
338
|
|
|
@@ -362,7 +361,7 @@ sap.ui.define([
|
|
|
362
361
|
oEnhancedFesrHandle.stepName = sStepName;
|
|
363
362
|
oEnhancedFesrHandle.appNameShort = oIntermediateResult.appNameShort;
|
|
364
363
|
|
|
365
|
-
if (oRelatedRecord.
|
|
364
|
+
if (oRelatedRecord.targetApplicationType === "UI5") {
|
|
366
365
|
oEnhancedFesrHandle.interactionType = INTERACTION_TYPE.APP_START;
|
|
367
366
|
} else {
|
|
368
367
|
//Not UI5 applications handle the start flag theirself and we need to avoid duplication in the statistic
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @fileOverview Provides analytical data like duration for navigation steps in the shell, in FLP,
|
|
4
4
|
* in particular an array of all statistical records
|
|
5
5
|
*
|
|
6
|
-
* @version 1.
|
|
6
|
+
* @version 1.117.0
|
|
7
7
|
*/
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/ushell/EventHub",
|
|
@@ -14,13 +14,14 @@ sap.ui.define([
|
|
|
14
14
|
], function (EventHub, AppConfiguration, StatisticalRecord, Utils, Config) {
|
|
15
15
|
"use strict";
|
|
16
16
|
|
|
17
|
-
var aStatisticalRecords = []
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
var aStatisticalRecords = [];
|
|
18
|
+
var aDoable = [];
|
|
19
|
+
var bHomePageLoaded = false;
|
|
20
|
+
var bInitialized = false;
|
|
21
|
+
|
|
22
|
+
var oStatisticalRecord, // current statistical record
|
|
20
23
|
oCurrentApplication,
|
|
21
|
-
lastHashChangeTime
|
|
22
|
-
bHomePageLoaded = false,
|
|
23
|
-
bInitialized = false;
|
|
24
|
+
lastHashChangeTime;
|
|
24
25
|
|
|
25
26
|
var TRIGGERS = {
|
|
26
27
|
dashboardTileClick: "HOMEPAGE_TILE",
|
|
@@ -50,23 +51,29 @@ sap.ui.define([
|
|
|
50
51
|
}
|
|
51
52
|
|
|
52
53
|
/**
|
|
53
|
-
* Check if application
|
|
54
|
+
* Check if application is FLP homepage
|
|
54
55
|
*
|
|
55
|
-
* @param {
|
|
56
|
-
* @param {boolean} isHomeApp true if it is a home app
|
|
56
|
+
* @param {object} application application
|
|
57
57
|
*
|
|
58
58
|
* @returns {boolean} true for homepage and page runtime and for special case that it is a home application
|
|
59
59
|
*/
|
|
60
|
-
function
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
function _isFLPHome (application) {
|
|
61
|
+
|
|
62
|
+
return application.id === "FLP_HOME" || application.id === "FLP_PAGE";
|
|
63
63
|
}
|
|
64
|
-
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Is application a home application
|
|
67
|
+
* @param {object} application application
|
|
68
|
+
* @returns {boolean} isHomeApp true if given application is a home application
|
|
69
|
+
*/
|
|
70
|
+
function _isHomeApp (application) {
|
|
71
|
+
return application.isHomeApp;
|
|
65
72
|
}
|
|
66
73
|
|
|
67
74
|
/**
|
|
68
75
|
* Gets all statistical records
|
|
69
|
-
* @returns {
|
|
76
|
+
* @returns {sap.ushell.performance.StatisticalRecord[]} Array of statistical records
|
|
70
77
|
*/
|
|
71
78
|
function getAllRecords () {
|
|
72
79
|
return aStatisticalRecords;
|
|
@@ -86,7 +93,7 @@ sap.ui.define([
|
|
|
86
93
|
return null;
|
|
87
94
|
}
|
|
88
95
|
/**
|
|
89
|
-
* Gets the next record
|
|
96
|
+
* Gets the next record according to the start time in a navigation given a last tracked record
|
|
90
97
|
* @param {object} oLastTrackedRecord The last tracked record
|
|
91
98
|
* @returns {object} oNextNavigationRecord The next navigation record or undefined if it does not exist
|
|
92
99
|
*/
|
|
@@ -151,7 +158,7 @@ sap.ui.define([
|
|
|
151
158
|
* Removes star at the beginning if it exists.
|
|
152
159
|
* Replaces the string (TCODE) by the string (TR) at the end.
|
|
153
160
|
* @param {string} sTechnicalName Technical name of a transaction with parameters or WD application
|
|
154
|
-
* @returns {
|
|
161
|
+
* @returns {string} The transaction name or an empty string if input is not a transaction
|
|
155
162
|
*/
|
|
156
163
|
function _removeParametersIfTransaction (sTechnicalName) {
|
|
157
164
|
var sTechnicalNameWithDefault = sTechnicalName || "";
|
|
@@ -196,7 +203,7 @@ sap.ui.define([
|
|
|
196
203
|
&& oCurrentApp.componentInstance.sId
|
|
197
204
|
&& oCurrentApp.componentInstance.sId.includes("homeApp-component");
|
|
198
205
|
var oPromiseFioriIds;
|
|
199
|
-
// Method
|
|
206
|
+
// Method getTechnicalParameter might not exist.
|
|
200
207
|
if (oCurrentApp.getTechnicalParameter) {
|
|
201
208
|
oPromiseFioriIds = oCurrentApp.getTechnicalParameter("sap-fiori-id");
|
|
202
209
|
} else {
|
|
@@ -204,8 +211,8 @@ sap.ui.define([
|
|
|
204
211
|
}
|
|
205
212
|
|
|
206
213
|
// get Fiori Id
|
|
207
|
-
return oPromiseFioriIds.then(function (
|
|
208
|
-
var sApplicationId =
|
|
214
|
+
return oPromiseFioriIds.then(function (aFioriIds) {
|
|
215
|
+
var sApplicationId = aFioriIds && aFioriIds[0];
|
|
209
216
|
// custom home
|
|
210
217
|
if (bIsHomeApp) {
|
|
211
218
|
return {
|
|
@@ -262,21 +269,30 @@ sap.ui.define([
|
|
|
262
269
|
* Additionally method check if the homepage loaded the first time (use global bHomePageLoaded variable)
|
|
263
270
|
* and update the record respectively.
|
|
264
271
|
*
|
|
265
|
-
* @param {
|
|
272
|
+
* @param {object} oSourceApplication source application
|
|
273
|
+
* @param {string} oSourceApplication.id Fiori id for ui5 application or sTechnicalName for others
|
|
274
|
+
* @param {string} oSourceApplication.isHomeApp true, if it is a custom application
|
|
266
275
|
* @param {object} oTargetApplication target application
|
|
267
276
|
* @param {string} oTargetApplication.id Fiori id for ui5 application or sTechnicalName for others
|
|
277
|
+
* @param {string} oTargetApplication.isHomeApp true, if it is a custom application
|
|
268
278
|
* @param {string} oTargetApplication.type Type of the application. For example, UI5
|
|
269
279
|
* @param {string} sNavigationMode navigation mode
|
|
280
|
+
|
|
270
281
|
*/
|
|
271
|
-
function _closeNavigation (
|
|
282
|
+
function _closeNavigation (oSourceApplication, oTargetApplication, sNavigationMode) {
|
|
272
283
|
if (oStatisticalRecord) {
|
|
273
|
-
|
|
274
|
-
oStatisticalRecord.
|
|
275
|
-
oStatisticalRecord.
|
|
276
|
-
oStatisticalRecord.setApplicationType(oTargetApplication ? oTargetApplication.type : null);
|
|
284
|
+
oStatisticalRecord.setSourceApplication(oSourceApplication && oSourceApplication.id);
|
|
285
|
+
oStatisticalRecord.setTargetApplication(oTargetApplication && oTargetApplication.id);
|
|
286
|
+
oStatisticalRecord.setTargetApplicationType(oTargetApplication && oTargetApplication.type);
|
|
277
287
|
oStatisticalRecord.setNavigationMode(sNavigationMode);
|
|
278
|
-
oStatisticalRecord.
|
|
279
|
-
|
|
288
|
+
oStatisticalRecord.setTargetIsHomeApp(oTargetApplication && oTargetApplication.isHomeApp);
|
|
289
|
+
oStatisticalRecord.setSourceIsHomeApp(oSourceApplication && oSourceApplication.isHomeApp);
|
|
290
|
+
|
|
291
|
+
if (
|
|
292
|
+
!bHomePageLoaded && (
|
|
293
|
+
_isHomeApp(oTargetApplication) || _isFLPHome(oTargetApplication)
|
|
294
|
+
)
|
|
295
|
+
) {
|
|
280
296
|
bHomePageLoaded = true;
|
|
281
297
|
oStatisticalRecord.setHomepageLoading(true);
|
|
282
298
|
}
|
|
@@ -301,7 +317,7 @@ sap.ui.define([
|
|
|
301
317
|
oTargetApplication.type = oTargetApplication.id.slice(-4) === "(TR)" ? "GUI" : "NWBC";
|
|
302
318
|
}
|
|
303
319
|
_setCurrentApplication(oTargetApplication);
|
|
304
|
-
_closeNavigation(oCurrentApp
|
|
320
|
+
_closeNavigation(oCurrentApp, oTargetApplication, NAVIGATION_MODE.INPLACE);
|
|
305
321
|
});
|
|
306
322
|
}
|
|
307
323
|
|
|
@@ -310,7 +326,7 @@ sap.ui.define([
|
|
|
310
326
|
*/
|
|
311
327
|
function _closeExplaceNavigation () {
|
|
312
328
|
var oCurrentApp = getCurrentApplication();
|
|
313
|
-
_closeNavigation(oCurrentApp
|
|
329
|
+
_closeNavigation(oCurrentApp, null, NAVIGATION_MODE.EXPLACE);
|
|
314
330
|
}
|
|
315
331
|
|
|
316
332
|
/**
|
|
@@ -380,7 +396,7 @@ sap.ui.define([
|
|
|
380
396
|
//open app explace
|
|
381
397
|
oDoable = EventHub.on("openedAppInNewWindow").do(_closeExplaceNavigation);
|
|
382
398
|
aDoable.push(oDoable);
|
|
383
|
-
// home page
|
|
399
|
+
// home page start
|
|
384
400
|
oDoable = EventHub.on("firstSegmentCompleteLoaded").do(_closeInplaceNavigation);
|
|
385
401
|
aDoable.push(oDoable);
|
|
386
402
|
//error during the resolving
|
|
@@ -392,7 +408,6 @@ sap.ui.define([
|
|
|
392
408
|
//Stateful container, cached application, etc.
|
|
393
409
|
oDoable = EventHub.on("CloseFesrRecord").do(_closeInplaceNavigation);
|
|
394
410
|
aDoable.push(oDoable);
|
|
395
|
-
|
|
396
411
|
}
|
|
397
412
|
|
|
398
413
|
/**
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @fileOverview Class for statistical record
|
|
4
4
|
* It should contain data like step, duration after a navigation in the shell, can have status open.
|
|
5
5
|
* The closing of a record is logged in debug mode
|
|
6
|
-
* @version 1.
|
|
6
|
+
* @version 1.117.0
|
|
7
7
|
*/
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/base/Log",
|
|
@@ -17,8 +17,6 @@ sap.ui.define([
|
|
|
17
17
|
ERROR: "ERROR"
|
|
18
18
|
};
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
20
|
/**
|
|
23
21
|
* Constructor for statistical record
|
|
24
22
|
* @returns oStatisticalRecord The constructed statistical record.
|
|
@@ -33,7 +31,7 @@ sap.ui.define([
|
|
|
33
31
|
* @returns oStatisticalRecord.navigationMode The navigation mode, can be in place or ex place
|
|
34
32
|
* @returns oStatisticalRecord.step The navigation step, e.g. "FLP@LOAD"
|
|
35
33
|
* @returns oStatisticalRecord.homepageLoading True when homepage was loaded the first time
|
|
36
|
-
* @returns oStatisticalRecord.
|
|
34
|
+
* @returns oStatisticalRecord.targetApplicationType The type of the target application. For example UI5, TR, etc.
|
|
37
35
|
*/
|
|
38
36
|
function StatisticalRecord () {
|
|
39
37
|
this.status = STATUS.OPEN;
|
|
@@ -50,7 +48,7 @@ sap.ui.define([
|
|
|
50
48
|
this.targetApplication = undefined;
|
|
51
49
|
this.navigationMode = null;
|
|
52
50
|
this.homepageLoading = false;
|
|
53
|
-
this.
|
|
51
|
+
this.targetApplicationType = null;
|
|
54
52
|
}
|
|
55
53
|
|
|
56
54
|
/**
|
|
@@ -59,41 +57,53 @@ sap.ui.define([
|
|
|
59
57
|
* @returns {string} sStep The navigation step
|
|
60
58
|
*/
|
|
61
59
|
StatisticalRecord.prototype._calculateStep = function () {
|
|
60
|
+
var bIsTargetHomePage = this._isTargetHomeApp() || this._isFLPHome(this.targetApplication);
|
|
61
|
+
var bIsSourceHomePage = this._isSourceHomeApp() || this._isFLPHome(this.sourceApplication);
|
|
62
|
+
|
|
62
63
|
//In case when targetApplication and sourceApplication not defined, can not resolve the step
|
|
63
|
-
if (this.targetApplication
|
|
64
|
+
if (!this.targetApplication && !this.sourceApplication) {
|
|
64
65
|
return "";
|
|
65
66
|
}
|
|
66
67
|
|
|
67
68
|
//load home page
|
|
68
|
-
if (this.sourceApplication
|
|
69
|
+
if (!this.sourceApplication && bIsTargetHomePage) {
|
|
69
70
|
// entire phase of loading gets this Step name internally,
|
|
70
71
|
// will be replaced later by original step or FLP@LOAD for external use
|
|
71
72
|
return "FLP@DURING_LOAD";
|
|
72
73
|
}
|
|
73
74
|
|
|
74
|
-
if (this.sourceApplication
|
|
75
|
+
if (!this.sourceApplication && !bIsTargetHomePage) {
|
|
75
76
|
return "FLP@DEEP_LINK";
|
|
76
77
|
}
|
|
77
78
|
|
|
78
79
|
// if source and target application are not the homepage it is an app to app navigation.
|
|
79
80
|
// if homepage is started the source application is undefined
|
|
80
|
-
if (
|
|
81
|
+
if (!bIsTargetHomePage && !bIsSourceHomePage) {
|
|
81
82
|
return "A2A@" + this.sourceApplication;
|
|
82
83
|
}
|
|
84
|
+
|
|
83
85
|
// back to the homepage from some app
|
|
84
|
-
if (this.sourceApplication &&
|
|
86
|
+
if (this.sourceApplication && bIsTargetHomePage && !bIsSourceHomePage) {
|
|
85
87
|
return "FLP_BACK@" + this.sourceApplication;
|
|
86
88
|
}
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
// custom home start or stays on homepage
|
|
91
|
+
if (bIsSourceHomePage && bIsTargetHomePage) {
|
|
92
|
+
return "HOME@HOME";
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// start app from flp home
|
|
96
|
+
if (this._isFLPHome(this.sourceApplication)) {
|
|
89
97
|
return "FLP@HOMEPAGE_TILE";
|
|
90
98
|
}
|
|
91
99
|
|
|
100
|
+
// start app from custom home
|
|
101
|
+
if (this._isSourceHomeApp()) {
|
|
102
|
+
return "APPSTART@CUSTOMHOME";
|
|
103
|
+
}
|
|
92
104
|
return "";
|
|
93
105
|
};
|
|
94
106
|
|
|
95
|
-
|
|
96
|
-
|
|
97
107
|
/**
|
|
98
108
|
* Compares two statistical records
|
|
99
109
|
* @param {object} otherRecord The other record
|
|
@@ -215,39 +225,63 @@ sap.ui.define([
|
|
|
215
225
|
};
|
|
216
226
|
|
|
217
227
|
/**
|
|
218
|
-
*
|
|
219
|
-
* @param {string}
|
|
228
|
+
* Sets the target application type
|
|
229
|
+
* @param {string} targetApplicationType target application type, for example UI5, TR, etc.
|
|
230
|
+
* @since 1.117.0
|
|
220
231
|
*/
|
|
221
|
-
StatisticalRecord.prototype.
|
|
222
|
-
this.
|
|
232
|
+
StatisticalRecord.prototype.setTargetApplicationType = function (targetApplicationType) {
|
|
233
|
+
this.targetApplicationType = targetApplicationType;
|
|
223
234
|
};
|
|
224
235
|
|
|
225
236
|
/**
|
|
226
|
-
*
|
|
237
|
+
* Set the property isTargetHomeApp
|
|
227
238
|
* @param {boolean} bHomeApp true or false
|
|
228
239
|
* @private
|
|
229
|
-
* @since 1.
|
|
240
|
+
* @since 1.117.0
|
|
230
241
|
*/
|
|
231
|
-
StatisticalRecord.prototype.
|
|
232
|
-
this.
|
|
242
|
+
StatisticalRecord.prototype.setTargetIsHomeApp = function (bHomeApp) {
|
|
243
|
+
this.isTargetHomeApp = !!bHomeApp;
|
|
233
244
|
};
|
|
234
245
|
|
|
235
246
|
/**
|
|
236
|
-
*
|
|
237
|
-
*
|
|
238
|
-
* @param {string} sApplicationId fiori id
|
|
239
|
-
*
|
|
240
|
-
* @returns {boolean} true for homepage and page runtime and for special case that it is a home application
|
|
247
|
+
* Set the property for isSourceHomeApp
|
|
248
|
+
* @param {boolean} bHomeApp true or false
|
|
241
249
|
* @private
|
|
242
|
-
* @since 1.
|
|
250
|
+
* @since 1.117.0
|
|
243
251
|
*/
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
252
|
+
StatisticalRecord.prototype.setSourceIsHomeApp = function (bHomeApp) {
|
|
253
|
+
this.isSourceHomeApp = !!bHomeApp;
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* Getter for isSourceHomeApp
|
|
258
|
+
* @returns {boolean} true, if source is a home app.
|
|
259
|
+
* @since 1.117.0
|
|
260
|
+
*/
|
|
261
|
+
StatisticalRecord.prototype._isSourceHomeApp = function () {
|
|
262
|
+
return this.isSourceHomeApp;
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* is application FLP Home
|
|
267
|
+
* @param {string} sApplicationId the id of the application
|
|
268
|
+
* @returns {boolean} true, if appplication is FLP Home.
|
|
269
|
+
* @since 1.117.0
|
|
270
|
+
*/
|
|
271
|
+
StatisticalRecord.prototype._isFLPHome = function (sApplicationId) {
|
|
248
272
|
return sApplicationId && (sApplicationId === "FLP_HOME" || sApplicationId === "FLP_PAGE");
|
|
249
273
|
};
|
|
250
274
|
|
|
275
|
+
/**
|
|
276
|
+
* Getter for isTargetHomeApp
|
|
277
|
+
* @returns {boolean} true, if target is a home app.
|
|
278
|
+
* @since 1.117.0
|
|
279
|
+
*/
|
|
280
|
+
StatisticalRecord.prototype._isTargetHomeApp = function () {
|
|
281
|
+
return this.isTargetHomeApp;
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
|
|
251
285
|
return StatisticalRecord;
|
|
252
286
|
|
|
253
287
|
}, /* bExport= */ false);
|
|
@@ -80,9 +80,9 @@ sap.ui.define([
|
|
|
80
80
|
*/
|
|
81
81
|
var Renderer = UIComponent.extend("sap.ushell.renderers.fiori2.Renderer", {
|
|
82
82
|
metadata: {
|
|
83
|
-
version: "1.
|
|
83
|
+
version: "1.117.0",
|
|
84
84
|
dependencies: {
|
|
85
|
-
version: "1.
|
|
85
|
+
version: "1.117.0",
|
|
86
86
|
libs: ["sap.ui.core", "sap.m"],
|
|
87
87
|
components: []
|
|
88
88
|
},
|