navigation (Navigation drawer)
The
navigation
drawer is a somewhat omnipresent element that slides in from the left, by means of toggling the hamburger icon located at the top left of the title bar. The hamburger icon is present on any view that is listed in the drawer. These items should reflect the high level views in your app. The hamburger icon will be replaced by either a back or close icon on views that aren’t listed in the drawer - these views are seen as deeper levels within the app’s hierarchy.The navigation drawer should be reserved for global items. Even though items can be built and displayed dynamically, they should be kept as static as possible per user role. This is analogous to a map not changing while it's in use.
See the reference documentation for the
context-menu
component for listing items that are specific to a view.A successful navigation system serves as a map, in that it:
- provides an overview of the content included in an app
- reinforces the relationship between different sections of content, and
- acts as a “You are here” sign, indicating how the user’s current screen fits into the bigger picture
First time users might feel lost without it, as they won’t know what to expect of an app. It can also save returning users a lot of time by optimizing frequently used flows.

- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
The top part of the navigation drawer, also referred to as the header, is reserved for customer or app branding. Here you can add a logo and set the background color to give the navigation drawer a customized look.
The header will become collapsable and the logo replaced by the name of the app when either
- the content in the drawer is longer than the height of the drawer,
- the screen height is less than the drawer’s height
Optional
Type:
string
Default: unset
Specify the brand logo to be displayed in the navigation drawer. String or
$:function()
that returns a string.<navigation logo="images/deep_c_corp.png">
<!-- Navigation sections -->
</navigation>
logo
best practicesIt's recommended to use a crisp PNG or an SVG for the logo. When using a PNG, the image should:
- be at least 224px in width or 136px in height
- not contain any padding
- have a transparent background
Optional
Construct a navigation component from JavaScript/TypeScript using a
$:function
that returns a component.navigation
object.<!-- XML -->
<navigation from-js="$:buildNavFromJS()"/>
// JS
function buildNavFromJS() {
return component.navigation({
sections: buildSectionsFromJS()
});
}
function buildSectionsFromJS() {
// Logic to build an array of component.navigationSection objects
}
Optional
Default: The global indicator will by default only show if there are other indicators in the drawer. The style of the global indicator is derived using the following, for instance if all indicators are of type number the global indicator will be the sum of these.
Indicators can be used to draw the user’s attention to the status of an item or the navigation drawer globally. An example is showing a certain amount of unread messages. Indicators can contain either numbers, text or be empty. The color can also be customized.
An indicator can be placed either of the following elements of the
navigation
component:- 1.Globally. The
indicator
will appear with the hamburger menu, overriding an itemindicator
that by default shows here (see next bullet). - 2.On an item. When an item
indicator
is present, in addition to displaying with the corresponding item, an additionalindicator
will also display with the hamburger icon (unless a globalindicator
is defined).

Item indicator example
Global indicator
Item indicator
<navigation indicator="$:buildIndicator()" >
<!-- Navigation sections -->
</navigation>
function buildIndicator() {
// You logic here
return {value: 1, color:"positive"};
}
<navigation >
<section >
<item label="Reports" view="reports" indicator="true">
<item label="Actions" view="action" indicator="$:getActionsIndictor()"/>
</item>
</section>
</navigation>
function getActionsIndictor() {
// You logic here
return {value: 'Pending' , color:"#ffa500"};
}
Valid values for
indicator
:"true" | "false"
true | false
number
{ value: true }
,{ value: 4 }
,{ value: true, color: "#c0FFEE" }
,
The
color
attribute can be a named color or #HEX value and will be the app's info
color by default.indicator
best practices- Use an
indicator
if:- it is important for the user to be aware of an item's status, even when busy with another task
- it is beneficial to draw the user's attention away from their current task
color
attribute: Stick to predefined app colors, to ensure a coherent palette when displayed together.value
attribute: When displaying text, use short clear words, like "Pending".
Optional
Build navigation sections from JavaScript/TypeScript, using a function that returns an array of
component.navigationSection
objects.Sections built using the
sections
attribute will be appended after the sections specified in XML.<navigation sections="$:buildSectionsFromJS()" >
<section>
<!-- Other navigation items -->
</section>
<!-- Section build from JS will be appended here -->
</navigation>
function buildSectionsFromJS() {
return [
component.navigationSection({
label: "General",
items: [
component.navigationItem({
label: "Sites",
view: "sites",
collapsable: true
}
)]
})
];
}
Optional
Type:
string
- can be a named color or #HEX valueDefault: unset
Specify the background color of the navigation drawer.
<navigation style-header-background="#C0ffEE">
<!-- Navigation sections -->
</navigation>
For named colors the corresponding named font-color will be used for the hamburger menu icon color and app name color. For #HEX values, the icon and font colors are set to white or dark grey, after performing a contrast check.
Optional
Type:
string
- can be a named color or #HEX valueDefault:
primary
Specify the font color of section labels.
<navigation style-section-color="#1A1A1A">
<!-- Navigation sections -->
</navigation>
The following component methods are available when an
id
is assigned to the component and component.getNavigation({id:'my-id'}).xxx
is called from JS/TS:component.getNavigation().show()
Programmatically open the navigation drawer, under the following conditions:
- The active view is listed in the navigation drawer.
- The hamburger menu is visible, i.e. the view is the only view on the stack.
component.getNavigation().hide()
Hide the navigation drawer programmatically. This operation follows the same conditions as listed above.
component.getNavigation().setActive({id:'myId'})
When using a generic view that displays differently based on the view parameter values. It is a common pattern to have multiple navigation items listed in the drawer that all refer to the same view path.
In this case, the drawer will not distinguish between which of those items corresponds to the active view.
In this case it is required to manually set the active view, using
id="myId"
and component.getNavigation().setActive({id:'myId'})
in init()
.<!-- XML -->
<item id="$:getItemId()" label="Site" view="site" args="$:getSiteArgs()"/>
// JS
function getSiteArgs() {
return [ user, view.currentSite ];
}
function getItemId() {
return view.currentSite.id + '';
}
Site view code
<!-- XML -->
<view title="Site: {currentSite}">
<!-- Parameters go here: -->
<param name="currentUser" type="user" />
<param name="currentSite" type="site" />
<!-- Variables go here: -->
<!-- Components go here: -->
</view>
// JS
function init() {
component.getNavigation().setActive({id: getItemId()});
}
function resume(from) {}
Breaking change
In version 4.57.2 of the JourneyApps Runtime,
component.getNavigation().byId('myId').setActive()
was changed to component.getNavigation().setActive({id:'myId'})
.Please update all affected view code.
component.getNavigation().setOpen({id:'myId'})
Programmatically toggle a collapsable
<section/>
or <item/>
to an open state. This will persist across view transitions.Use case: Open a section after a user has performed a particular task or action.
component.getNavigation().setCollapsed({id:'myId'})
Programmatically toggle a collapsable
<section/>
or <item/>
to a collapsed state. Similar to setOpen
this will, persist across view transitions.Use case: Collapse all items in the drawer except for a particular set of items, focussing the user attention.
Last modified 9mo ago