Interface: TopbarApi
Defines page-level APIs available to solutions.
Hierarchy
↳ TopbarApi
Index
Properties
Methods
Properties
customEnvLabel
• customEnvLabel: string
Inherited from TopbarApiProperties.customEnvLabel
Gets or sets a custom environment label in the shell.
Example:
Copied to your clipboardtopbar.customEnvLabel = 'Beta';
solution
• solution: Solution
Inherited from TopbarApiProperties.solution
Configuration for solution name and hero.
Example:
Copied to your clipboardtopbar.solution = {icon: 'AdobeExperienceCloud',title: 'Adobe Experience Cloud22',shortTitle: 'AEC'};
workspaces
• workspaces: WorkspaceMenu[]
Inherited from TopbarApiProperties.workspaces
Configuration for the Shell workspaces. Workspace names should be unique, and should be localized using the unified shell locale prior to setting runtime.workspaces.
Copied to your clipboardtopbar.workspaces = [{name: 'Home', url: '/'},{name: 'ABC', url: '/abc'},{name: 'DEF', url: '/def'}];
Unified shell also supports workspace flyout menus, where clicking on a workspace displays a dropdown menu. The top-level workspace is present in the dropdown menu as the first menu item. Menus may be nested multiple times, and used in combination with normal workspaces. By default, parent menu items will be automatically added to the sub-menu due to how the user interaction works. To prevent this functionality, simply remove the url property on the parent item and it will not be injected into the sub-menu.
Copied to your clipboardtopbar.workspaces = [{name: 'Home', url: '/'},{name: 'ABC', url: '/abc'},{name: 'DEF',url: '/def',menu: [{name: 'GHI',url: '/def/ghi',menu: [{name: 'JKL', url: '/def/ghi/jkl'}]}]}];
Methods
onHeroClick
▸ onHeroClick(callback
: Callback): void
Registers a callback to execute when the hero (solution) icon in the upper lefthand corner of the Shell is clicked.
Parameters:
Name | Type | Description |
---|---|---|
callback | The callback to execute. |
Returns: void
setCustomSearch
▸ setCustomSearch(config
: CustomSearchConfig | null): void
Determines whether or not to enable the custom search property and enacts a callback when the custom search icon is clicked.
Parameters:
Name | Type |
---|---|
config | CustomSearchConfig | null |
Returns: void
setFeedbackButton
▸ setFeedbackButton(config
: CustomFeedbackConfig | HelpCenterFeedbackConfig | ExternalFeedbackConfig | null): void
Determines whether or not to enable a feedback button.
Parameters:
Name | Type |
---|---|
config |
Returns: void