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

@alexseitsinger/react-notifications

v1.1.0

Published

Display notifications in the DOM

Downloads

2

Readme

Notifications

Render notification message at the top level of your DOM, from anywhere in your app.

Installation

yarn add @alexseitsinger/react-notifications

Exports

NotificationsProvider

Add a DOM element at the root of your app (at the bottom). Each notification rendered will be placed within this container. for each provided notification to be rendered within.

Props

Name | Description | Default | Required? --- | --- | --- | --- displayInterval | The time(ms) to show each notification before removing the oldest. | undefined | yes renderNotification | Invoked to render each notification. | undefined | yes

Example
// In app root
import { NotificationsProvider } from "@alexseitsinger/react-notifications"

// Re-use a render method for each notification.
// Use this to render each notification with the same template.
const renderNotification = (element) => (
  <div>{element}</div>
)

// Add the provider to the app root. It will add a mount point into the DOM for the notifications to render within.
const App = () => (
  <NotificationsProvider renderNotification={renderNotification} displayInterval={3000}>
    <Router>
      <Route path={"/"} exact component={HomePage} />
    </Router>
  </NotificationsProvider>
)

withNotifications

HOC that provides notifications props to a component.

Notification Props Provided:

Name | Description --- | --- NotificationMessage | Component used to render notification messages. createNotificationMessage | Function to create notification messages. (Useful for button callback, etc.) clearCachedNotifications | Clears the cached notification names. (Setting isForced to true ignores this cache) clearNotifications | Removes all the currently renderd notifications.

NotificationMessage (via withNotifications)

Component used to create new notification messages. NOTE: isForced is automatically set to false for this to prevent render loops.

Props

Name | Description | Deafault | Required? --- | --- | --- | --- notificationName | The unique name of the notification. | undefined | yes isRepeated | Show multiple copies of the same message | false | no children | The content to render as the notification | undefined | yes

Example
import { withNotifications } from "@alexseitsinger/react-notifications"

const HomePage = withNotifications(({ NotificationMessage }) => (
  <div id="homePage">
    <div> Some normal content</div>
    <NotificationMessage notificationName={"home-page-render-notification"} isRepeated={false}>
      This notification gets displayed once.
    </NotificationMessage>
  </div>
))

createNotificationMessage (via withNotifications)

Function used to create a new notification message.

Props

Name | Description | Default | Required? --- | --- | --- | --- notificationName | The unique name of the notification. | undefined | yes isForced | Should the notification be shown if it already was previously? | false | no isRepeated | Show multiple copies of the same message | false | no onRender | Invoked to render the notification message | undefined | yes

Example
// In a page component, etc.
import { withNotifications } from "@alexseitsinger/react-notifications"

const HomePage = () => withNotifications(
  ({ createNotificationMessage, ...restProps }) => {
    return (
      <PageContainer>
        <div>Some normal page content</div>
        <button onClick={() => {
          createNotificationMessage({
            notificationName: "on-click-success-notification-1",
            onRender: () => <div>You did it!</div>,
            isForced: true,
            isRepeated: false,
          })
        }}>
          Click to do action
        </button>
      </PageContainer>
    )
  }
)