@sapui5/sap.ushell 1.116.0 → 1.117.1
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 +25 -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 +24 -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 +4 -4
- 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/Notifications.js +37 -0
- 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 +48 -26
- 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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @fileOverview The Unified Shell's bookmark service, which allows you to create shortcuts on the
|
|
5
5
|
* user's home page.
|
|
6
6
|
*
|
|
7
|
-
* @version 1.
|
|
7
|
+
* @version 1.117.1
|
|
8
8
|
*/
|
|
9
9
|
sap.ui.define([
|
|
10
10
|
"sap/ui/thirdparty/jquery",
|
|
@@ -95,10 +95,10 @@ sap.ui.define([
|
|
|
95
95
|
};
|
|
96
96
|
|
|
97
97
|
/**
|
|
98
|
-
* Adds a bookmark tile to one of the user's classic
|
|
98
|
+
* Adds a bookmark tile to one of the user's classic home page groups or to multiple provided content nodes.
|
|
99
99
|
*
|
|
100
100
|
* @param {object} oParameters
|
|
101
|
-
* Bookmark parameters. In addition to title and URL, a bookmark might allow
|
|
101
|
+
* Bookmark parameters. In addition to title and URL, a bookmark might allow further
|
|
102
102
|
* settings, such as an icon or a subtitle. Which settings are supported depends
|
|
103
103
|
* on the environment in which the application is running. Unsupported parameters will be
|
|
104
104
|
* ignored.
|
|
@@ -106,8 +106,8 @@ sap.ui.define([
|
|
|
106
106
|
* @param {string} oParameters.title
|
|
107
107
|
* The title of the bookmark.
|
|
108
108
|
* @param {string} oParameters.url
|
|
109
|
-
* The target
|
|
110
|
-
* to be a valid intent, i.e. in the format
|
|
109
|
+
* The target intent or URL of the bookmark. If the target app runs in the current shell, the URL has
|
|
110
|
+
* to be a valid intent, i.e. in the format <code>"#SO-Action?P1=a&P2=x&/route?RPV=1"</code>.
|
|
111
111
|
* @param {string} [oParameters.icon]
|
|
112
112
|
* The optional icon URL of the bookmark (e.g. <code>"sap-icon://home"</code>).
|
|
113
113
|
* @param {string} [oParameters.info]
|
|
@@ -117,21 +117,55 @@ sap.ui.define([
|
|
|
117
117
|
* @param {string} [oParameters.serviceUrl]
|
|
118
118
|
* The URL to a REST or OData service that provides some dynamic information for the
|
|
119
119
|
* bookmark.
|
|
120
|
+
*
|
|
121
|
+
* <b>Semantic Date Ranges:</b>
|
|
122
|
+
*
|
|
123
|
+
* You can use placeholders for dynamic dates in the query parameters of the service URL.
|
|
124
|
+
* This can be used to create KPI tiles based on user entries in control {@link sap.m.DynamicDateRange},
|
|
125
|
+
* where it is possible to specify dynamic dates like YESTERDAY or THISYEAR.
|
|
126
|
+
*
|
|
127
|
+
* The placeholder format looks like this: {Edm.<type>%%DynamicDate.<operator>.<value1>.<value2>.<position>%%}
|
|
128
|
+
*
|
|
129
|
+
* <ul>
|
|
130
|
+
* <li><type>: The Edm Type of the parameter. Supported types are String, DateTime and DateTimeOffset for OData V2
|
|
131
|
+
* and Date and DateTimeOffset for OData V4.</li>
|
|
132
|
+
* <li><operator>, <value1>, <value2>: Possible values are the ones that can be used in {@link sap.m.DynamicDateRange#toDates} to create a date range.</li>
|
|
133
|
+
* <li><position>: Possible values are 'start' and 'end' which mark the start or end of the interval specified by the operator.</li>
|
|
134
|
+
* </ul>
|
|
135
|
+
*
|
|
136
|
+
* Examples:
|
|
137
|
+
* <ul>
|
|
138
|
+
* <li>/a/url/$count?$filter=(testDate ge {Edm.DateTimeOffset%DynamicDate.YESTERDAY.start%} and testDate le {Edm.DateTimeOffset%DynamicDate.YESTERDAY.end%})</li>
|
|
139
|
+
* <li>/a/url/$count?$filter=(testDate ge {Edm.DateTime%DynamicDate.THISYEAR.start%} and testDate le {Edm.DateTime%DynamicDate.THISYEAR.end%})</li>
|
|
140
|
+
* <li>/a/url/$count?$filter=(testDate ge {Edm.Date%DynamicDate.TODAYFROMTO.1.5.start%} and testDate le {Edm.Date%DynamicDate.TODAYFROMTO.1.5.end%})</li>
|
|
141
|
+
* </ul>
|
|
142
|
+
*
|
|
143
|
+
* Hint:
|
|
144
|
+
* Check the debug log when displaying the resulting KPI tiles to get more information about the resolution of the placeholders.
|
|
120
145
|
* @param {object} [oParameters.dataSource]
|
|
121
146
|
* Metadata for parameter serviceUrl. Mandatory to specify if parameter serviceURL contains semantic date ranges.
|
|
122
147
|
* This does not influence the data source of the app itself.
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
148
|
+
*
|
|
149
|
+
* Specify the data source as follows:
|
|
150
|
+
* <pre>
|
|
151
|
+
* {
|
|
152
|
+
* type: "OData",
|
|
153
|
+
* settings: {
|
|
154
|
+
* odataVersion: "4.0"
|
|
155
|
+
* }
|
|
156
|
+
* }
|
|
157
|
+
* </pre>
|
|
158
|
+
*
|
|
159
|
+
* <ul>
|
|
160
|
+
* <li>type: The type of the serviceURL's service. Only "OData" is supported.
|
|
161
|
+
* <li>odataVersion: The OData version of parameter serviceURL. Valid values are "2.0" and "4.0".
|
|
162
|
+
* </ul>
|
|
129
163
|
* @param {string} [oParameters.serviceRefreshInterval]
|
|
130
164
|
* The refresh interval for the <code>serviceUrl</code> in seconds.
|
|
131
165
|
* @param {string} [oParameters.numberUnit]
|
|
132
166
|
* The unit for the number retrieved from <code>serviceUrl</code>.
|
|
133
167
|
* @param {object|sap.ushell.services.Bookmark.ContentNode|sap.ushell.services.Bookmark.ContentNode[]} [vContainer]
|
|
134
|
-
* Either a legacy launchpad home page group, one content node or an array of content nodes
|
|
168
|
+
* Either a legacy launchpad home page group, one content node or an array of content nodes (see {@link #getContentNodes}).
|
|
135
169
|
* If not provided, the bookmark will be added to the default group if spaces mode is not active
|
|
136
170
|
* or to the default page if spaces mode is active.
|
|
137
171
|
* @param {string} [sContentProviderId] The contentProviderId or undefined outside the cFLP
|
|
@@ -271,7 +305,7 @@ sap.ui.define([
|
|
|
271
305
|
};
|
|
272
306
|
|
|
273
307
|
/**
|
|
274
|
-
* Adds a bookmark tile to one of the user's home page groups in the classic
|
|
308
|
+
* Adds a bookmark tile to one of the user's home page groups in the classic home page mode.
|
|
275
309
|
*
|
|
276
310
|
* @param {object} oParameters
|
|
277
311
|
* bookmark parameters. In addition to title and URL, a bookmark might allow additional
|
|
@@ -307,7 +341,7 @@ sap.ui.define([
|
|
|
307
341
|
*
|
|
308
342
|
* @returns {Promise}
|
|
309
343
|
* A promise which resolves on success, but rejects
|
|
310
|
-
* with a reason-message on failure to add the bookmark to the specified
|
|
344
|
+
* with a reason-message on failure to add the bookmark to the specified home page group.
|
|
311
345
|
*
|
|
312
346
|
* @see sap.ushell.services.URLParsing#getShellHash
|
|
313
347
|
* @since 1.81.0
|
|
@@ -388,9 +422,9 @@ sap.ui.define([
|
|
|
388
422
|
* @alias sap.ushell.services.Bookmark#addBookmarkToPage
|
|
389
423
|
*/
|
|
390
424
|
this.addBookmarkToPage = function (oParameters, sPageId, sContentProviderId) {
|
|
391
|
-
// Reject of in launchpad
|
|
425
|
+
// Reject of in launchpad home page mode
|
|
392
426
|
if (!Config.last("/core/spaces/enabled")) {
|
|
393
|
-
return Promise.reject("Bookmark Service: 'addBookmarkToPage' is not valid in launchpad
|
|
427
|
+
return Promise.reject("Bookmark Service: 'addBookmarkToPage' is not valid in launchpad home page mode, use 'addBookmark' instead.");
|
|
394
428
|
}
|
|
395
429
|
|
|
396
430
|
// Reject if personalization is disabled
|
|
@@ -1083,7 +1117,7 @@ sap.ui.define([
|
|
|
1083
1117
|
/**
|
|
1084
1118
|
* @typedef {object} sap.ushell.services.Bookmark.ContentNode
|
|
1085
1119
|
* A content node may be:
|
|
1086
|
-
* - a classic
|
|
1120
|
+
* - a classic home page group
|
|
1087
1121
|
* - an unselectable node (space) or a selectable node (page) in spaces mode
|
|
1088
1122
|
* - or any other containers in the future
|
|
1089
1123
|
*
|
|
@@ -1096,11 +1130,11 @@ sap.ui.define([
|
|
|
1096
1130
|
*/
|
|
1097
1131
|
|
|
1098
1132
|
/**
|
|
1099
|
-
* Returns available content nodes based on the current launchpad context. (Classic
|
|
1133
|
+
* Returns available content nodes based on the current launchpad context. (Classic home page, spaces mode)
|
|
1100
1134
|
*
|
|
1101
1135
|
* A content node may be:
|
|
1102
1136
|
* <ul>
|
|
1103
|
-
* <li>a classic
|
|
1137
|
+
* <li>a classic home page group</li>
|
|
1104
1138
|
* <li>an unselectable node (space) or a selectable node (page) in spaces mode</li>
|
|
1105
1139
|
* <li>or any other containers in the future</li>
|
|
1106
1140
|
* </ul>
|
|
@@ -1129,7 +1163,7 @@ sap.ui.define([
|
|
|
1129
1163
|
});
|
|
1130
1164
|
}
|
|
1131
1165
|
|
|
1132
|
-
// Classic
|
|
1166
|
+
// Classic home page
|
|
1133
1167
|
return new Promise(function (resolve, reject) {
|
|
1134
1168
|
this._oLaunchPageServicePromise
|
|
1135
1169
|
.then(function (LaunchPageService) {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
* In the future, the custom resolver mechanism should be probably moved towards modifying (or only adding to the list of Inbounds),
|
|
30
30
|
* this way a single data source has to be altered to support consistently getLinks, isIntentSupported.
|
|
31
31
|
*
|
|
32
|
-
* @version 1.
|
|
32
|
+
* @version 1.117.1
|
|
33
33
|
*/
|
|
34
34
|
sap.ui.define([
|
|
35
35
|
"sap/base/Log",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @fileOverview The Unified Shell's Configuration service enables Components of any kind to consume parts of Configuration
|
|
5
5
|
* provided by the shell. It allows to attach on updates and receive the current values
|
|
6
6
|
*
|
|
7
|
-
* @version 1.
|
|
7
|
+
* @version 1.117.1
|
|
8
8
|
*/
|
|
9
9
|
sap.ui.define([
|
|
10
10
|
"sap/ushell/Config",
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* This file exposes an API to perform (invoke) Cross Application Navigation for applications.
|
|
6
6
|
* It exposes interfaces to perform a hash change and/or trigger an external navigation.
|
|
7
7
|
*
|
|
8
|
-
* @version 1.
|
|
8
|
+
* @version 1.117.1
|
|
9
9
|
*/
|
|
10
10
|
sap.ui.define([
|
|
11
11
|
"sap/ushell/services/AppConfiguration",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview The menu service provides the entries for the menu bar
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.117.1
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/ushell/Config",
|
|
@@ -530,7 +530,7 @@ sap.ui.define([
|
|
|
530
530
|
type: "separator",
|
|
531
531
|
pinned: true
|
|
532
532
|
};
|
|
533
|
-
if (aMenuEntries[0].isHomeEntry) {
|
|
533
|
+
if (aMenuEntries[0] && aMenuEntries[0].isHomeEntry) {
|
|
534
534
|
aMenuEntries.splice(1, 0, oSeparator);
|
|
535
535
|
} else {
|
|
536
536
|
aMenuEntries.splice(0, 0, oSeparator);
|
|
@@ -545,12 +545,12 @@ sap.ui.define([
|
|
|
545
545
|
});
|
|
546
546
|
} else {
|
|
547
547
|
// The personalization does not contain the MyHome entry and the separator
|
|
548
|
-
// therefore the index of the
|
|
548
|
+
// therefore the index of the pinned spaces has to be adapted accordingly.
|
|
549
549
|
var iIndexOffset = 1;
|
|
550
550
|
if (aMenuEntries[0].isHomeEntry) {
|
|
551
551
|
iIndexOffset = 2;
|
|
552
552
|
}
|
|
553
|
-
// Adds the pinned property and the pinned
|
|
553
|
+
// Adds the pinned property and the pinned property sort order.
|
|
554
554
|
// unpinned entries get sort order -1
|
|
555
555
|
aPersonalizedMenuEntries = aMenuEntries.map(function addPinnedPropertyAndSortOrder (oMenuEntry) {
|
|
556
556
|
oMenuEntry.pinned = oMenuPersonalization.pinnedSpaces.includes(oMenuEntry.id);
|
|
@@ -256,6 +256,8 @@ sap.ui.define([
|
|
|
256
256
|
// If CSRF token wasn't obtained yet - then set the header of the request so the token will be returned
|
|
257
257
|
if (!this._getHeaderXcsrfToken()) {
|
|
258
258
|
oHeader["X-CSRF-Token"] = "fetch";
|
|
259
|
+
} else {
|
|
260
|
+
oHeader["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
259
261
|
}
|
|
260
262
|
oRequestObject.headers = oHeader;
|
|
261
263
|
OData.request(oRequestObject,
|
|
@@ -295,6 +297,8 @@ sap.ui.define([
|
|
|
295
297
|
// If CSRF token wasn't obtained yet - then set the header of the request so the token will be returned
|
|
296
298
|
if (!this._getHeaderXcsrfToken()) {
|
|
297
299
|
oHeader["X-CSRF-Token"] = "fetch";
|
|
300
|
+
} else {
|
|
301
|
+
oHeader["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
298
302
|
}
|
|
299
303
|
oRequestObject.headers = oHeader;
|
|
300
304
|
OData.request(oRequestObject,
|
|
@@ -345,6 +349,8 @@ sap.ui.define([
|
|
|
345
349
|
// If CSRF token wasn't obtained yet - then set the header of the request so the token will be returned
|
|
346
350
|
if (!this._getHeaderXcsrfToken()) {
|
|
347
351
|
oHeader["X-CSRF-Token"] = "fetch";
|
|
352
|
+
} else {
|
|
353
|
+
oHeader["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
348
354
|
}
|
|
349
355
|
oRequestObject.headers = oHeader;
|
|
350
356
|
OData.request(oRequestObject,
|
|
@@ -397,6 +403,8 @@ sap.ui.define([
|
|
|
397
403
|
// If CSRF token wasn't obtained yet - then set the header of the request so the token will be returned
|
|
398
404
|
if (!this._getHeaderXcsrfToken()) {
|
|
399
405
|
oHeader["X-CSRF-Token"] = "fetch";
|
|
406
|
+
} else {
|
|
407
|
+
oHeader["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
400
408
|
}
|
|
401
409
|
|
|
402
410
|
oRequestObject.headers = oHeader;
|
|
@@ -952,6 +960,11 @@ sap.ui.define([
|
|
|
952
960
|
"Accept-Language": Configuration.getLanguageTag()
|
|
953
961
|
}
|
|
954
962
|
};
|
|
963
|
+
if (!this._getHeaderXcsrfToken()) {
|
|
964
|
+
oRequestObject.headers["X-CSRF-Token"] = "fetch";
|
|
965
|
+
} else {
|
|
966
|
+
oRequestObject.headers["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
967
|
+
}
|
|
955
968
|
|
|
956
969
|
OData.read(
|
|
957
970
|
oRequestObject,
|
|
@@ -991,6 +1004,12 @@ sap.ui.define([
|
|
|
991
1004
|
}
|
|
992
1005
|
};
|
|
993
1006
|
|
|
1007
|
+
if (!this._getHeaderXcsrfToken()) {
|
|
1008
|
+
oRequestObject.headers["X-CSRF-Token"] = "fetch";
|
|
1009
|
+
} else {
|
|
1010
|
+
oRequestObject.headers["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
1011
|
+
}
|
|
1012
|
+
|
|
994
1013
|
OData.read(
|
|
995
1014
|
oRequestObject,
|
|
996
1015
|
|
|
@@ -1278,6 +1297,12 @@ sap.ui.define([
|
|
|
1278
1297
|
},
|
|
1279
1298
|
oDeferred = new jQuery.Deferred();
|
|
1280
1299
|
|
|
1300
|
+
if (!this._getHeaderXcsrfToken()) {
|
|
1301
|
+
oRequestObject.headers["X-CSRF-Token"] = "fetch";
|
|
1302
|
+
} else {
|
|
1303
|
+
oRequestObject.headers["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1281
1306
|
OData.request(oRequestObject,
|
|
1282
1307
|
function (oResult) {
|
|
1283
1308
|
oDeferred.resolve(oResult.results);
|
|
@@ -1324,6 +1349,12 @@ sap.ui.define([
|
|
|
1324
1349
|
oResponseObject,
|
|
1325
1350
|
sUpdatedResponseString;
|
|
1326
1351
|
|
|
1352
|
+
if (!this._getHeaderXcsrfToken()) {
|
|
1353
|
+
oRequestObject.headers["X-CSRF-Token"] = "fetch";
|
|
1354
|
+
} else {
|
|
1355
|
+
oRequestObject.headers["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1327
1358
|
OData.request(oRequestObject,
|
|
1328
1359
|
function (oResult) {
|
|
1329
1360
|
if (typeof (oResult.results) === "string") {
|
|
@@ -1368,6 +1399,12 @@ sap.ui.define([
|
|
|
1368
1399
|
oDeferred = new jQuery.Deferred(),
|
|
1369
1400
|
oResponseObject;
|
|
1370
1401
|
|
|
1402
|
+
if (!this._getHeaderXcsrfToken()) {
|
|
1403
|
+
oRequestObject.headers["X-CSRF-Token"] = "fetch";
|
|
1404
|
+
} else {
|
|
1405
|
+
oRequestObject.headers["X-CSRF-Token"] = this._getHeaderXcsrfToken();
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1371
1408
|
OData.request(oRequestObject,
|
|
1372
1409
|
function (oResult) {
|
|
1373
1410
|
if (typeof (oResult.results) === "string") {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @fileOverview The Unified Shell's personalization service, which provides generic read and write access to the currently logged on user's
|
|
5
5
|
* personalization settings for the app currently executed in the shell.
|
|
6
6
|
*
|
|
7
|
-
* @version 1.
|
|
7
|
+
* @version 1.117.1
|
|
8
8
|
*/
|
|
9
9
|
sap.ui.define([
|
|
10
10
|
"sap/base/Log",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview The Unified Shell's PluginManager service, which allows you to handle the loading of Fiori Launchpad plugins.
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.117.1
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/base/Log",
|
|
@@ -289,6 +289,7 @@ sap.ui.define([
|
|
|
289
289
|
* @returns {object} Map of registered plugins
|
|
290
290
|
* @since 1.38
|
|
291
291
|
* @private
|
|
292
|
+
* @ui5-restricted sap.fe
|
|
292
293
|
*/
|
|
293
294
|
this.getRegisteredPlugins = function () {
|
|
294
295
|
return JSON.parse(JSON.stringify(this._oPluginCollection));
|
|
@@ -460,7 +461,11 @@ sap.ui.define([
|
|
|
460
461
|
*
|
|
461
462
|
* @param {string} sPluginCategory Category of plugins which should be loaded.
|
|
462
463
|
* @returns {jQuery.Deferred} A <code>jQuery.promise</code> to be resolved when all plugins of the respective category are loaded completely.
|
|
463
|
-
* The promise
|
|
464
|
+
* The promise is resolved with an array of objects (one array item for every plugin) where each object contains the following attributes:
|
|
465
|
+
* - pluginName
|
|
466
|
+
* - success (true/false)
|
|
467
|
+
* - error (the error returned when the plugin result was rejected)
|
|
468
|
+
* The promise will allways be resolved and can never be rejected.
|
|
464
469
|
* @since 1.38
|
|
465
470
|
* @private
|
|
466
471
|
*/
|
|
@@ -512,12 +517,29 @@ sap.ui.define([
|
|
|
512
517
|
});
|
|
513
518
|
|
|
514
519
|
if (aPluginPromises.length > 0) {
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
520
|
+
//we will resolve the category promise when all the plugins finish loading, regardless
|
|
521
|
+
//if they fail or not. This means that the category promise will be resolved
|
|
522
|
+
//only after the last plugin finish loading
|
|
523
|
+
Promise.allSettled(aPluginPromises.map(function(oPromise, idx) {
|
|
524
|
+
return new Promise(function (fnResolve) {
|
|
525
|
+
var oResult = {
|
|
526
|
+
pluginName: aPluginIds[idx],
|
|
527
|
+
success: true
|
|
528
|
+
};
|
|
529
|
+
oPromise.done(function () {
|
|
530
|
+
fnResolve(oResult);
|
|
531
|
+
}).fail(function (ex) {
|
|
532
|
+
oResult.success = false;
|
|
533
|
+
oResult.error = ex;
|
|
534
|
+
fnResolve(oResult);
|
|
535
|
+
});
|
|
536
|
+
});
|
|
537
|
+
})).then(function (aResults) {
|
|
538
|
+
utils.setPerformanceMark("FLP -- PluginManager.endLoadPlugins[" + sPluginCategory + "]");
|
|
539
|
+
that._oCategoryLoadingProgress[sPluginCategory].resolve(aResults.map(function(element) {
|
|
540
|
+
return element.value;
|
|
541
|
+
}));
|
|
542
|
+
});
|
|
521
543
|
}
|
|
522
544
|
} else {
|
|
523
545
|
// there are no plugins to be loaded
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview The Unified Shell's Search for myHome.
|
|
5
5
|
*
|
|
6
|
-
* @version 1.
|
|
6
|
+
* @version 1.117.1
|
|
7
7
|
*/
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/base/Log",
|
|
@@ -111,7 +111,13 @@ sap.ui.define([
|
|
|
111
111
|
if (!sUrl) {
|
|
112
112
|
return Promise.resolve();
|
|
113
113
|
}
|
|
114
|
-
|
|
114
|
+
EventHub.emit("UITracer.trace", {
|
|
115
|
+
reason: "LaunchApp",
|
|
116
|
+
source: "Search",
|
|
117
|
+
data: {
|
|
118
|
+
targetUrl: sUrl
|
|
119
|
+
}
|
|
120
|
+
});
|
|
115
121
|
if (sUrl.startsWith("#")) {
|
|
116
122
|
if (sSearchTerm) {
|
|
117
123
|
oShellHash = UrlParsing.parseShellHash(sUrl);
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* it is pertinent that the API user employs this service's version of <code>toExternal()</code> for cross application
|
|
13
13
|
* navigation (instead) of using the one provided by CrossApplicationNavigation service.</p>
|
|
14
14
|
*
|
|
15
|
-
* @version 1.
|
|
15
|
+
* @version 1.117.1
|
|
16
16
|
*/
|
|
17
17
|
sap.ui.define([
|
|
18
18
|
"sap/ui/thirdparty/jquery",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview APIs for the S/4 MyHome
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.117.1
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/ushell/Config",
|
|
@@ -10,14 +10,16 @@ sap.ui.define([
|
|
|
10
10
|
"sap/ushell/library",
|
|
11
11
|
"sap/ui/thirdparty/hasher",
|
|
12
12
|
"sap/ushell/utils/WindowUtils",
|
|
13
|
-
"sap/base/Log"
|
|
13
|
+
"sap/base/Log",
|
|
14
|
+
"sap/ushell/EventHub"
|
|
14
15
|
], function (
|
|
15
16
|
Config,
|
|
16
17
|
deepClone,
|
|
17
18
|
ushellLibrary,
|
|
18
19
|
hasher,
|
|
19
20
|
WindowUtils,
|
|
20
|
-
Log
|
|
21
|
+
Log,
|
|
22
|
+
EventHub
|
|
21
23
|
) {
|
|
22
24
|
"use strict";
|
|
23
25
|
|
|
@@ -274,7 +276,13 @@ sap.ui.define([
|
|
|
274
276
|
Log.error("Invalid target URL", null, "sap.ushell.services.SpaceContent");
|
|
275
277
|
return;
|
|
276
278
|
}
|
|
277
|
-
|
|
279
|
+
EventHub.emit("UITracer.trace", {
|
|
280
|
+
reason: "LaunchApp",
|
|
281
|
+
source: "Tile",
|
|
282
|
+
data: {
|
|
283
|
+
targetUrl: url
|
|
284
|
+
}
|
|
285
|
+
});
|
|
278
286
|
if (url.indexOf("#") === 0) {
|
|
279
287
|
hasher.setHash(url);
|
|
280
288
|
} else {
|