Home
Softono

React Notification

Open source MIT JavaScript
12
Stars
0
Forks
0
Issues
1
Watchers
8 years
Last Commit

 About React Notification

๐Ÿš€A complete and totally customizable component for notifications in React. https://khuong291.github.io/react-notification/

Platforms

Web Self-hosted

Languages

JavaScript

Links

Need Help Installing React Notification?

We provide expert installation service for this software. Our team will install, configure, and secure React Notification on your server. plans start at just $30.

React Notification

View on GitHub

react-notification

npm version npm Dependency Status devDependency Status Build Status Coverage Status

A complete and totally customizable component for notifications in React

Advanced notification system specification

  • You can request a notification to be displayed.
  • You can request a notification to hide.
  • A notification should not be displayed more than 5 seconds.
  • Multiple notifications can be displayed at the same time.
  • No more than 3 notifications can be displayed at the same time.
  • If a notification is requested while there are already 3 displayed notifications, then queue/postpone it.

Installing

npm install react-notification-popup

Contributing

  1. Fork project
  2. Checkout master branch
  3. Create Feature branch off of the master branch
  4. Create awesome feature/enhancement/bug-fix
  5. Optionally create Issue to discuss feature
  6. Submit pull request from your Feature branch to react-notification's master branch

Using

import React from "react";
import { render } from "react-dom";
import { notification, NotificationContainer } from "react-notification-popup";

notification.config = {
  maxNotifications: 3,
  notificationDisplayTime: 5000
};

const App = () => (
  <div>
    <NotificationContainer />
    <button
      onClick={() => {
        notification.emit(
          {
            providerURL:
              "http://icons.iconarchive.com/icons/johanchalibert/mac-osx-yosemite/1024/finder-icon.png",
            title: "Disk Not Ejected Properly",
            description:
              "Eject Time Machine before disconnecting or turning it off"
          },
          {
            onClick: () => console.log("Click!!"),
            onClose: () => console.log("Close!!")
          }
        );
      }}
    >
      show
    </button>
    <button
      onClick={() => {
        notification.dismissAll();
      }}
    >
      dismissAll
    </button>
  </div>
);

render(<App />, document.getElementById("root"));

Methods

config: ({ maxNotifications, notificationDisplayTime });

Configure notification. This is optional. The default maxNotifications is 3 and notificationDisplayTime is 5s.

emit: (
    {
      providerURL,
      title,
      description,
      closeButtonText = "Close",
      hasCloseButton = true,
      autoClose = true
    },
    { onClick = noop, onClose = noop }
)

Emit notification with some informations and callback handler.

dismissAll: onDismiss = noop;

Removes ALL notifications programatically.

Author

Khuong Pham

License

react-notification-popup is released under the MIT license.
See LICENSE for details.