Hey you like my work? Consider sponsoring me
Menu
Material-React-Toastify
GitHub
Material-React-Toastify
  • GitHub
  • Getting Started
    • Introduction
    • Installation
    • The gist of material-react-toastify
    • Release notes
  • Usage
    • Positioning toast
    • Handling autoClose
    • Render more than string
    • Remove toast programmatically
    • Pause toast timer when the window loses focus
    • Use a custom id
    • Prevent duplicate
    • Delay notification appearance
    • Limit the number of toast displayed
    • Use a controlled progress bar
    • Update a toast
    • Define callback
    • Listen for changes
    • Use a custom close button or remove it
    • Add an undo action to a toast (like Google Drive)
    • Usage with redux
    • Replace the default transition
    • Define a custom enter and exit transition
    • Drag to remove
    • Enable right to left support
    • Accessibility
    • Lazy container and multi-container
    • How to style
    • Dispatch toast outside of react component
  • API Reference
    • ToastContainer
    • toast
    • cssTransition
    • collapseToast
    • useToastContainer
    • useToast

Listen for changes

If you want to know when a toast is displayed or removed, toast expose a onChange method. When called a function to unsubscribe is returned:

const unsubscribe = toast.onChange((numberOfToastDisplayed, containerId) => {
// Do whatever you want
// The containerId is useful when working with multiple containers
});
unsubscribe();
Edit this page
Previous
« Define callback
Next
Use a custom close button or remove it »
Copyright © 2020 Fadi Khadra