Never heard of react-toastify before? Go check the demo
React-toastify has been around for 5 years(will turn five the 8 November π). Since the beginning, one of the goals was to provide a library that is highly customizable and also able to work out of the box. Every major release introduces breaking changes but this is for the best π.
What is new in v8
Who doesn't like icons
Let's break down what is happening in the gif above. Notifications of different types (toast.info
, toast.error
, toast.success
, toast.warning
) display an icon associated with the selected type. You can also notice that the progress bar color matches the type color.
Don't be afraid π±, if you don't like those icons you can use your own or remove them. This is what it looks like in practice.
toast("Default toast behavior is untouched, no icon to display");
toast.info("Lorem ipsum dolor"); // same as toast(message, {type: "info"});
toast.error("Lorem ipsum dolor")
toast.success("Lorem ipsum dolor")
toast.warn("Lorem ipsum dolor")
toast.error("Without icon", {
icon: false
});
toast.success("You can provide any string", {
icon: "π"
});
// custom icons have access to the theme and the toast type
toast.success("And of course a component of your choice", {
icon: MyIcon
});
toast.success("Even a function, given you return something that can be rendered", {
icon: ({theme, type}) => <img src="url"/>
});
//Disable icons
<ToastContainer icon={false} />
Clear separation between type and theme
Prior to v8, toast.info
, toast.error
, etc... Would display respectively a blue notification, a red notification, etc... This is not the case anymore. There are 3 distinct themes: light
, dark
, colored
. The theme can be applied globally or per notification.
//Set the theme globally
<ToastContainer theme="dark" />
// define per toast
toast.info("Display a dark notification of type info");
toast.info("Display a light notification of type info", { theme: "light" });
toast.info("Display a blue notification of type info", { theme: "colored" });
This separation will benefit theming in the future.
I promise this is new, I'll tell you if you await
The library exposes a toast.promise
function. Supply a promise and the notification will be updated if it resolves or fails. When the promise is pending a spinner is displayed. Again you hide it, I bet you already know how toπ.
Let's start with a simple example
const resolveAfter3Sec = new Promise(resolve => setTimeout(resolve, 3000));
toast.promise(
resolveAfter3Sec,
{
pending: 'Promise is pending',
success: 'Promise resolved π',
error: 'Promise rejected π€―'
}
)
Displaying a simple message is what you would want to do in 90% of cases. But what if the message you want to display depends on the promise response, what if you want to change some options for the error notification? Rest assured, under the hood, the library uses toast.update
. Thanks to this, you have full control over each notification.
const resolveWithSomeData = new Promise(resolve => setTimeout(() => resolve("world"), 3000));
toast.promise(
resolveAfter3Sec,
{
pending: 'Promise is pending',
success: {
render({data}){
return `Hello ${data}`
},
// other options
icon: "π’",
},
error: {
render({data}){
// When the promise reject, data will contains the error
return <MyErrorComponent message={data.message} />
}
}
}
)
Because you have the full power of toast.update
, you can even supply a custom transition if you want π€―
If you want to take care of each step yourself you can use toast.loading
and update the notification yourself.
const id = toast.loading("Please wait...")
//do something else
toast.update(id, { render: "All is good", type: "success" });
Pass data even when you are not rendering a react component
One way to pass data to the notification was to use the context api or provide your own component. Starting v8 a data
option is now available to make it easier.
toast(({data}) => `Hello ${data}`, {
data: "world"
})
I just want to change few colors
Most of the time, users are ok with the default style, they just want to change some colors to match their brand. I think one way to improve the DX for all of us is to embrace CSS variables. That's why the library has switched to css variables!
All you want is to change the color of the progress bar? No problem
:root{
// this is the default value below
--toastify-color-progress-light: linear-gradient(
to right,
#4cd964,
#5ac8fa,
#007aff,
#34aadc,
#5856d6,
#ff2d55
);
}
You can find the list of all exposed variables here
Thanks for reading. You can access the full release note here
Top comments (6)
Hi, I'm new to ReactJS, just practicing it but I want to use this with my simple function that fetches data from github users api.. This looks cool π
So, how can I use it with above simple example... and how to use the promise feature with the same..
And I think you are the original author π
Thanks
So I achived working with promise with async await, I hope its good.
Hey @optimbro actually,
toast.promise
return the provided promise. So you can await it directly. You can check this example codesandbox.io/s/inspiring-forest-...nice
pending to resolve, slow flip will be great to see
Hey, what do you mean by "slow flip" ?
in the attached img:
dev-to-uploads.s3.amazonaws.com/up...