TIP: For learning and testing purposes, use the Luigi Fiddle page where you can configure a sample Luigi application.
The configuration file contains a section called Settings where you can configure additional Luigi options.
This is an example of how settings parameters can be used:
settings: {
hideNavigation: false
backdropDisabled : false,
header: { object / function / Promise
logo: 'path/to/image.png',
title: 'Luigi Demo',
favicon: 'path/to/favicon.ico'
},
featureToggles : {
queryStringParam: 'ft'
},
sideNavFooterText: 'MyLovelyApp 1.0.0',
sideNavCompactMode: false,
customTranslationImplementation: () => {
return {
getTranslation: (key, interpolations, locale) => {
return translatedText;
}
};
},
customSandboxRules: ['allow-downloads-without-user-activation'],
allowRules: ['microphone'],
appLoadingIndicator: {
hideAutomatically: true
},
thirdPartyCookieCheck = {
//thirdPartyCookieScriptLocation: 'https://domain/init.html',
thirdPartyCookieErrorHandling: () => {
const alert = {
text: 'Third Party Cookies are not enabled. Please check your browser settings.',
type: 'warning'
};
Luigi.ux().showAlert(alert);
}
},
theming = {
themes: () => [
{ id: 'light', name: 'Light Theme' },
{ id: 'dark', name: 'Dark Theme' }
],
defaultTheme: 'light'
}
}
Below is a list of the parameters you can use in the settings:
Luigi configuration section.
- type: boolean
- description: prevents the backdrop layer from covering the top and left navigation when showing modal windows.
- default: by default, the backdrop is set to
true
.
- type: boolean/string
- description: allows to set and customize a tooltip for the burger, which will be rendered if responsiveNavigation is set to
simple
orFiori3
. You can set it totrue
. In that case, the default valuesExpand navigation
andCollapse navigation
will be rendered. It is also possible to customize the values. In that case burgerTooltip will be an object with definable properties. - example:
burgerTooltip = {
navExpanded: 'Collapse navigation',
navCollapsed: 'Expand navigation'
};
- type: array
- description: an array of custom rules for the content in the iframe. You can extend the Luigi default sandbox rules by adding further rules.
- type: object/function returning an object
- description: provides a custom localization implementation. It can be an object or a function returning an object. This object must provide the getTranslation function as property:
{
getTranslation: (key, interpolations, locale) => {
// should return translation of the 'key' in the 'locale' or current locale
}
}
Take a look at our i18n section for an implementation suggestion.
NOTE: You can translate Luigi internal messages by providing translation for these keys.
- type: boolean
- description: disables Luigi's default out-of-the-box navigation when set to
true
. This means that top, side, and tab navigation is no longer visible and you can implement your own navigation UI. - default: by default, the parameter is set to
false
, which means the navigation is enabled.
- type: icon
- description: defines the top left navigation logo. It has a fixed height of 28px.
- example:
header: { object / function / Promise
logo: 'path/to/image.png'
},
- type: string
- description: adds the HTML
alt
attribute to the logo image. - example:
header: { object / function / Promise
logo: 'path/to/image.png',
altText: 'alternative text'
},
- type: string
- description: defines the top left navigation title.
- example:
header: { object / function / Promise
title: 'Luigi Demo'
},
- type: icon
- description: defines the favicon. It requires a standard favicon file with the
.ico
extension, and 16x16px or 32x32px dimensions. - example:
header: { object / function / Promise
favicon: 'path/to/favicon.ico'
},
- description: allows customizing the navigation display settings. For example, you can define a button which shows or completely hides the left navigation, or a button which collapses the navigation to only show the icons.
You can set the following values:
simple
displays the button on the left side of the top navigation regardless of the browser window´s size.simpleMobileOnly
displays the button on the left side of the top navigation when the browser window is narrower than600px
.semiCollapsible
displays the arrow button at the bottom of the left side navigation. Once you click the button, the navigation shows up or collapses.Fiori3
displays the button on the left side of the top navigation. Once you click the button, the navigation shows up or collapses.
- default: if you don't specify any value for responsiveNavigation, the buttons remain hidden. The same applies when you enable hideSideNav for the currently active navigation node.
- description: allows applying different layouts of Profile Menu in the shellbar once a user is authorized.
You can set the following values:
simple
displays basic profile menu list of entities.Fiori3
displays renewed profile menu layout according to the Fiori 3 styleguides. It contains the avatar of a user, if applicable, and additional description. since: v1.14.0
- default: if you don't specify any value for profileType, the
simple
layout will be used as a default one.
- description: is a string displayed in a sticky footer inside the side navigation. It is a good place to display the version of your application.
- description: in addition to sideNavFooterText a client can insert custom HTML under the footer section.
- description: reduces the dimensions of the side navigation and allows you to display more information.
- type: function
- description: called on iframe creation, it gives you full control over the created iframe DOM element. You can modify it to your needs just before it is added to the DOM tree.
This function is called with these parameters:
iframe
is the iframe DOM element. It is not yet added to the DOM tree, but all attributes are already set.viewGroup
is the view group associated with this iframe, if applicable.navigationNode
is the navigation node associated with this iframe. NOTE: the interceptor is called only once per iframe creation. If two or more navigation nodes share the same iframe (because they belong to the same view group) the interceptor is called with the first navigated node only.microFrontendType
, which ismain
,modal
,split-view
,drawer
orusersettings
depending on where it is going to be rendered.
- example: For example, to allow 'fullscreen' for non-modal iframes:
{
iframeCreationInterceptor: (iframe, viewGroup, navigationNode, microFrontendType) => {
if (microFrontendType !== 'modal')
iframe.allowFullscreen = true;
}
}
- type: array
- description: an array of rules for the content in the iframe, managed by the HTML allow attribute. You can use one or more rules by adding them to the array, for example
allowRules: ['microphone', 'camera']
. Be aware that this mechanism requires the browser to support Feature Policy.
- description: allows you to disable automatic hiding of the app loading indicator, which is enabled by default in case the app loading indicator is being used. Take a look at the App loading indicator section on how to use this feature.
- description: allows you to set the query parameter name for the feature toggles. This parameter is then used when setting feature toggles via appending to the URL like
?ft=name
. You will need this value set before using the feature toggle functionality.
- description: a configuration element that allows you to specify a list of themes that are available on the website. The children elements are:
- themes (mandatory) is an array of available themes, for example
themes: ['light', 'dark']
. - defaultTheme (mandatory) the default theme used by the application.
- nodeViewURLDecorator (optional) you can add an internal Luigi View URL decorator (an example is below). This object adds a query parameter where you can add a current theme used by the application when micro-frontends are loaded.
- themes (mandatory) is an array of available themes, for example
- example:
theming : {
themes: () => [
{ id: 'light', name: 'Fiori3 Light' },
{ id: 'dark', name: 'Fiori3 Dark' }
],
defaultTheme: 'light'
nodeViewURLDecorator: {
queryStringParameter: {
keyName: 'sap-theme'
// optional
value: themeId => {
return themeId;
}
}
}
}
- type: function
- description: with this function, Luigi alerts will be disabled and you can implement your own alerts. This function gets
settings
andopenFromClient
as parameters. It must either return a promise which gets resolved when the alert is dismissed, orfalse
if the default Luigi alert should be shown. - example:
Luigi.setConfig({
...,
settings: {
customAlertHandler: ()=>{
return new Promise((resolve, reject) => {
//custom alert implementation
});
}
}
})
You can check whether the user's browser supports third-party cookies by defining a thirdPartyCookieCheck object which expects a function called thirdPartyCookieErrorHandling and an optional thirdPartyCookiesScriptLocation parameter. When thirdPartyCookiesScriptLocation is set, the Luigi Core application checks third-party cookie support only once and not on every micro frontend call. If it is not set, the Luigi Core application checks third-party cookie support whenever a micro frontend is loaded.
To detect whether the user's browser supports the mechanism, use the script in the third-party-cookies
catalog. Deploy this file on a domain different from your main application's and set thirdPartyCookieScriptLocation to the init.html
file. During initialization, Luigi detects cookies support and produces an alert if cookies are disabled in the user's browser.
- type: object
- description: object defined in the general settings part of the Luigi configuration file, containing the thirdPartyCookieErrorHandling function and an optional thirdPartyCookiesScriptLocation parameter.
- type: function
- description: a function where you could call an alert like
Luigi.ux().showAlert({})
.
- type: string
- description: the URL to the page containing third-party cookies support check.