Open In App

ReactJS Evergreen Toaster Component

Last Updated : 11 Jun, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. Toaster Component allows the user to show an ephemeral message as an overlay. We can use the following approach in ReactJS to use the Evergreen Toaster Component.

Toast Props:

  • zIndex: It is used to denote the z-index of the toast.
  • duration: It is used to denote the duration of the toast.
  • onRemove: It is a callback function that is triggered when the toast is all the way closed.
  • intent: It is used to denote the type of alert.
  • title: It is used to denote the title of the alert.
  • children: It is used to define the description of the alert.
  • hasCloseButton: It is used to show a close icon button inside the toast when this is set to true.
  • isShown: It is used to close the Toast and call onRemove when finished then this is set to false.

ToastManager Props:

  • bindNotify: It is a function that is triggered with the this.notify function.
  • bindRemove: It is a function that is triggered with the this.remove function.
  • bindGetToasts: It is a function that is triggered with the this.getToasts function.
  • bindCloseAll: It is a function that is triggered with the this.closeAll function.

 

Creating React Application And Installing Module:

  • Step 1: Create a React application using the following command:

    npx create-react-app foldername
  • Step 2: After creating your project folder i.e. foldername, move to it using the following command:

    cd foldername
  • Step 3: After creating the ReactJS application, Install the required module using the following command:

    npm install evergreen-ui

Project Structure: It will look like the following.

Project Structure

Example: Now write down the following code in the App.js file. Here, App is our default component where we have written our code.

App.js




import React from 'react'
import { Button, toaster } from 'evergreen-ui'
  
export default function App() {
  
  // Function using toaster notify
  const customNotify = () => {
    toaster.notify('Greetings from GeeksforGeeks')
  }
  
  return (
    <div style={{
      display: 'block', width: 700, paddingLeft: 30
    }}>
      <h4>ReactJS Evergreen Toaster Component</h4>
      <Button onClick={customNotify}>
        Trigger Toaster
        </Button>
    </div>
  );
}


Step to Run Application: Run the application using the following command from the root directory of the project:

npm start

Output: Now open your browser and go to http://localhost:3000/, you will see the following output:

Reference: https://evergreen.segment.com/components/toaster


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads