Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 26, 2021 09:16 pm GMT

React-toastify v8 is live

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 typetoast.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 toasttoast.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

v8-promise
v8-promise-resolved

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
v8-promise-resolved

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 elsetoast.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


Original Link: https://dev.to/fkhadra/react-toastify-v8-is-live-4bal

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To