Component for showing onsite notification bars to users. Concurrent notifications are stacked, most recent at the top.
import nNotification from 'n-notification';
nNotification.show({
title: 'Optional title',
content:'<p>Here is a message</p>',
type: 'success', // optional, see below
duration: 7000, // default is 5000, 0 will require user action to dismiss
focusSelector: '.optional-focus-selector',
returnFocusSelector: document.activeElement
});
import nNotification from 'n-notification';
nNotification.init();
const event = new CustomEvent('nNotification.show', {detail: { content: 'Title' }});
document.dispatchEvent(event);
type
is optional, but if specified must have one of the following values:
If a type is not provided, it will result in a default FT pink notification.
If you want to set the focus to a notification element, pass in the focusSelector
and returnFocusSelector
properties with an element (e.g. .optional-focus-selector
) or a document property (e.g. document.activeElement
). The focusSelector
property is the notification element you want to focus on. The returnFocusSelector
property is the element you want to return the focus to once the notification has cleared.
The timeout default is 5000ms.
0 will require the users to explicitly dismiss the message. This is the recommended UX from DAC It was highlighted this could be too quick for dyslexic or some cognitively different users in Aug 2019 DAC assesment.
obt install
obt demo --watch --run-server