npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sasibhumaraju/react-toast

v1.0.1

Published

A lightweight and customizable toast notification library for React applications. Display important information, success messages, warnings, and error alerts easily with smooth animations.

Downloads

127

Readme

@sasibhumaraju/react-toast

A lightweight and customizable toast notification library for React applications. Display important information, success messages, warnings, and error alerts easily with smooth animations.

Features

  • Display various types of notifications: info, success, warning, error
  • Auto-dismiss notifications after a certain duration
  • Configurable toast positions: topRight, topLeft, bottomRight, bottomLeft
  • Customizable themes for light, dark, and default looks
  • Animate toast notifications when they appear and disappear
  • Support for manual or automatic dismissal of toasts

Installation

You can install the package via npm:

npm install @sasibhumaraju/react-toast

or yarn:

yarn add @sasibhumaraju/react-toast

Usage

Import the components and start using toast notifications in your React application:

import { ToastsContainer, Toast } from '@sasibhumaraju/react-toast';

const App = () => {

  const showToast = () => {
    Toast.success('This is a success message');
  };

  return (
    <div>
      <button onClick={showToast}>Show Success Toast</button>

      {/* ToastsContainer will handle the rendering of toasts */}
      <ToastsContainer 
        placement="topRight" 
        theme="default" 
        autoClose={true} 
        isClosable={true}
        duration={3000} 
      />
    </div>
  );
};

export default App;

Customizing Toasts

You can customize your toast notifications using the available props in ToastsContainer:

  • placement: Position of the toast container. Choose from topRight, topLeft, bottomRight, bottomLeft.
  • theme: Set the theme of the toast (either default, light, or dark).
  • autoClose: Automatically dismiss the toast after a duration. Set to true or false.
  • isClosable: Show or hide the close button for manual dismissal.
  • duration: Time in milliseconds before the toast auto-closes (if autoClose is enabled).

Example:

<ToastsContainer 
  placement="bottomLeft" 
  theme="dark" 
  autoClose={true} 
  isClosable={false} 
  duration={5000}
/>

Toast Methods

Use the following methods to trigger different types of toasts in your app:

  • Toast.info(message): Display an info toast.
  • Toast.success(message): Display a success toast.
  • Toast.warning(message): Display a warning toast.
  • Toast.error(message): Display an error toast.

Example:

Toast.info('This is an info message');
Toast.success('Data saved successfully');
Toast.warning('Please check your input');
Toast.error('An error occurred while saving data');

Updating Toasts

You can also update the content or type of an existing toast using its tid (toast ID):

Toast.update({ tid: 1, type: 'warning', message: 'This is an updated message' });

Removing Toasts

  • Toast.delete(tid): Remove the toast from the list completely.

Contributing

Feel free to open issues or pull requests to contribute to the project.

License

This project is licensed under the MIT License.

Author 🤵