Toast notifications give users immediate confirmation of the successful completion of a task or critical failure in trying to complete a task.
You can customize the toast by passing custom actions which will show as clickable buttons next to the text.
Usage
import { Toast } from 'nr1'
Examples
Basic toast notification
function render() { const onClick = () => Toast.showToast({ title: 'Feedback received', description: 'We will contact you soon.', actions: [ { label: 'Go back', onClick: () => console.log('Go back'), }, ], type: Toast.TYPE.NORMAL, });
return <Button onClick={onClick}>Show toast</Button>;}
With additional info link
function render() { const onClick = () => Toast.showToast({ title: 'TV Mode activated', description: 'Press ESC to exit', additionalInfoLink: { label: 'Learn more about TV Mode', to: 'https://discuss.newrelic.com/t/tv-mode-in-new-relic-one/92963', }, type: Toast.TYPE.NORMAL, });
return <Button onClick={onClick}>Show toast</Button>;}
Critical toast notification
function render() { const onClick = () => Toast.showToast({ title: 'Service unavailable', description: 'Your data could not be retrieved', actions: [ { label: 'Retry', onClick: () => console.log('Retry'), }, ], type: Toast.TYPE.CRITICAL, });
return <Button onClick={onClick}>Update</Button>;}
Props
shape[] | If you have a specific action you need the user to choose from, then use the custom action component. We recommend limiting the use of multiple actions as this notification is meant to indicate to the user the success or failure of a task and not supposed to be used for leading the user to another task. shape
REQUIREDstring
REQUIREDfunction |
shape | The information shown in the title and description can be complemented/extended with a link to documentation. This link should only be used to provide contextual information and not as an Action. shape
REQUIREDstring
functionCallback fired any time the user clicks on the button. function (
shape|stringLocation object or url string to link to. shapepathname REQUIREDstring
string
string |
string | Appends class names to the component.Should be used only for positioning and spacing purposes. |
string | We recommend providing a title and message to give context for the success or failure for the previous action taken. You may even use the message area to provide the user a link to access the object they just created in the system. |
function | Callback executed after the toast is hidden. |
function | Callback executed when the hide animation starts. |
boolean | For tasks not requiring the explicit dismissal or viewing by a user, we recommend using a time-out toast notification so the message automatically disappears from the screen after a short period of time. |
object | Inline style for custom styling.Should be used only for positioning and spacing purposes. |
string | Adds a Note: You might not see |
REQUIREDstring | We don’t recommend using the title only option as this does NOT provide a context for the user as to the task they just completed. |
enum |
|
Methods
Toast.showToast
function (props: Object Object containing the Toast options. Any Toast
prop is valid as an option.
) => undefined