useToast
Manage toast lifecycle events dynamically from anywhere inside the app.
Usage
Important
Make sure your <AutoToast />
or a self-assembled Toast
component is defined anywhere in your
application to display toast notifications.
Example
Trigger a Toast Event
A toast event can be triggered by calling the toast
method from the useToast
hook. Define a ToastEvent
object with the required properties and pass it to the toast
method.
Building a Self Assembled Toast Component
The useToast
hook provides the handlers required to listen to toast events from anywhere inside your application. This can be achieved through the subscribe
and unsubscribe
handlers and can be seen in the Advanced Usage of the Toast documentation.
Accessing Active Toasts
Toasts can be accessed through the toasts
object provided by the useToast
hook. This object contains an array of active toast events.
API
useTheme
Prop | Type | Default |
---|---|---|
toast | (props: ToastEvent) => void | - |
toasts | ToastEvent[] | - |
subscribe | () => void | - |
unsubscribe | () => void | - |