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

solid-toast

v0.5.0

Published

Customizable Toast Notifications for SolidJS

Downloads

34,422

Readme

Features

  • Easily Customizable
  • Promise API
  • Lightweight
  • Accessible
  • SSR Support

Installation

With yarn

yarn add solid-toast

With NPM

npm install solid-toast

Getting Started

Add a Toaster to your component tree. This component will render all toasts. Now you can trigger toast() from anywhere!

import toast, { Toaster } from 'solid-toast';

const notify = () => toast('Here is your toast.');

const App = () => {
  return (
    <div>
      <button onClick={notify}>Make me a toast</button>
      <Toaster />
    </div>
  );
};

Documentation

toast() Function

Call this function from anywhere to create a toast.

Available Options

You can provide ToastOptions as the second argument. They will overwrite all options received from the <Toaster/> component.

toast('This is a simple toast!', {
  duration: 5000,
  position: 'top-right',
  // Add a delay before the toast is removed
  // This can be used to time the toast exit animation
  unmountDelay: 500,
  // Styling - Supports CSS Objects, classes, and inline styles
  // Will be applied to the toast container
  style: {
    'background-color': '#f00',
  },
  className: 'my-custom-class',
  // Custom Icon - Supports text as well as JSX Elements
  icon: '🍩',
  // Set accent colors for default icons that ship with Solid Toast
  iconTheme: {
    primary: '#fff',
    secondary: '#000',
  },
  // Aria Props - Supports all ARIA props
  aria: {
    role: 'status',
    'aria-live': 'polite',
  },
});

Creating Toasts

There are several options for creating toasts

Blank
toast('This is a blank toast!');

Blank toasts do not come with a default icon. However, you can set a custom JSX Element/Text (Emoji) icon by placing it in the icon option.

Success
toast.success('Successfully saved!');

Creates a notification with an animated checkmark. Color accents can be themed with the iconTheme option.

Error
toast.error('Something went wrong!');

Creates a notification with an animated error icon. Color accents can be themed with the iconTheme option.

Loading
toast.loading('Loading Photos...');

Shows a toast with a loading indicator icon. The content can later be updated with an error or success icon. See how to update the toast content here.

Promise

The promise() function can be used to create a toast from a promise. This function will automatically show a loading icon and update the toast with the result of the promise.

const myPromise = fetchData();

toast.promise(myPromise, {
  loading: 'Loading',
  success: <b>Got the data</b>,
  error: 'An error occurred 😔',
});
Custom Toast

You also have the ability to completely customize the appearance of your toast. A custom JSX Element can be passed in like so:

toast.custom(() => (
  <div>
    <h1>Custom Toast</h1>
    <p>This is a custom toast!</p>
  </div>
));
Advanced Option

You can also hook into the toast life-cycle by adding a parameter to the JSX Function call like so:

toast.custom(
  (t) => {
    <div>
      <h1>Custom Toast</h1>
      <p>This is a custom toast!</p>
      <p>{t.visible ? 'Showing' : 'I will close in 1 second'}</p>
      <button onClick={() => toast.dismiss(t.id)}>Close Toast</button>
    </div>;
  },
  {
    unmoutDelay: 1000,
  }
);

Helpful Utilities

Dismiss Toasts Programatically

You can manually dismiss a notification with toast.dismiss. Beware that it triggers the exit animation and does not remove the Toast instantly. Toasts will auto-remove after 500ms by default. You can adjust the dismiss duration with the unmountDelay option.

Dismiss Single Toast
const toastId = toast.loading('Loading...');
// ...
toast.dismiss(toastId);

Dismiss all toasts by omitting all arguments.

Dismiss All Toasts
toast.dismiss();
Remove Toasts Instantly

Toasts can be removed instantly with toast.remove. This will not trigger the exit animation and remove the toast instantly.

toast.remove(toastId);
// or
toast.remove();
Updating Toasts

Each toast call returns a unique id. Use this id in the toast options to update an existing toast.

const toastId = toast.loading('Loading...');
// ...
toast.success('This worked', {
  id: toastId,
});

Toaster Component

This component will render all toasts.

Available Options

<Toaster
  position="top-center"
  // Spacing between each toast in pixels
  gutter={8}
  containerClassName=""
  containerStyle={{}}
  toastOptions={{
    // Define default options that each toast will inherit. Will be overwritten by individual toast options
    className: '',
    duration: 5000,
    style: {
      background: '#363636',
      color: '#fff',
    },
  }}
/>

Acknowledgements

This project is inspired by