Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atapas/notifyme
react-notification-timeline is a react based component helps in managing the notification in time-based manner.
https://github.com/atapas/notifyme
greenroots-info hactoberfest notification notifications notifier npm npm-package react reactjs timeline timeline-component timelines
Last synced: 6 days ago
JSON representation
react-notification-timeline is a react based component helps in managing the notification in time-based manner.
- Host: GitHub
- URL: https://github.com/atapas/notifyme
- Owner: atapas
- License: mit
- Created: 2020-07-04T16:32:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T04:33:11.000Z (over 1 year ago)
- Last Synced: 2024-10-23T07:36:31.249Z (14 days ago)
- Topics: greenroots-info, hactoberfest, notification, notifications, notifier, npm, npm-package, react, reactjs, timeline, timeline-component, timelines
- Language: JavaScript
- Homepage: https://tapasadhikary.com
- Size: 770 KB
- Stars: 128
- Watchers: 3
- Forks: 41
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# 🔔 react-notification-timeline
[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors-)
`react-notification-timeline` is a [reactjs](https://reactjs.org/) based component helps in managing the notifications in time-based manner. It is capable of keep tracking of the incoming notifications, manage read vs unread messages and allows many more customizations.
# 🔥 Why do you need this?
- 👉 Is your project is based on react js and you are looking for a time-based notification system?
- 👉 Do you want to keep track of the notifications in timed manner and manage them ?
- 👉 Do you want to structure the notifications in a cleaner way?
- 👉 Do you want to manage multi-line notifications?
- 👉 Do you limit the number of notifications you may want to see?Then, you should give `react-notification-timeline` a try.
## Here are some screen-shots
- Notification Component with the unread message count
- Notification Component with the messages as a pop-over
## Live Demo
[![Netlify Status](https://api.netlify.com/api/v1/badges/3817c2b7-a17f-4bfb-ad90-008c03a5a4da/deploy-status)](https://app.netlify.com/sites/notify-timeline/deploys)A Live demo of the component is available here, [💻 CLICK FOR DEMO](https://notify-timeline.netlify.app/)
# Many Thanks to all the `Stargazers` who has supported this project with stars(⭐)
[![Stargazers repo roster for @atapas/notifyme](https://reporoster.com/stars/atapas/notifyme)](https://github.com/atapas/notifyme/stargazers)
# ⚒️ How to use?
## Install
You can install `react-notification-timeline` using `npm` or `yarn`.```shell
npm i react-notification-timeline
``````yarn
yarn add react-notification-timeline
```## Import
Once installed, it can be imported into a react component as,```js
import NotifyMe from 'react-notification-timeline';
```## Usage
Here is an example usage,```js
yourOwnFunctionHandler()}
/>
```### Properties
CLICK ME to know the details of the properties
Property
Description
Required
Example
theme
customizing the background and foreground of the Notification and its icon
No
color and background color can be either in HexaCode,rgb or string name. Default is
```js
{
color:"yellow",
backgroundColor:"#282828"
}
```
data
Messages to show as notifications. This is expected to be an array of objects. Each of the object must have two properties.
-
timestamp: The timestamp of the time a message was generated. This must be a of a type long and represent a timestamp. -
update: The message to show as notification.
Note: The keys names, timestamp and update can be customized as explained in other properties below.
Yes
```js
[
{
"update":"70 new employees are shifted",
"timestamp":1596119688264
},
{
"update":"Time to take a Break, TADA!!!",
"timestamp":1596119686811
}
]
```
heading
A header message for the Notification panel. Pass a message to customize it.
No
Any string of your choice. Default value is, Notifications
multiLineSplitter
In case a notification message has to be splitted into multiple (bullet) items, you can specify a line splitter character in-between.
No
Any Character like, # or a sequence of characters, #$#. Default value is, \n
notific_key
Key in the data property that holds the timestamp value.
Yes
timestamp, attime or any string based key name in the data property.
notific_value
key in the data property that holds the notification message value.
Yes
update, message or any string based key name in the data property.
showDate
Notification message shows the date and time along with the message. Pass false for this property, if you do not want to show it. Pass true otherwise.
No
true or false. Default value is, false
size
Size of the notification bell. Pass a Size to customize it.
No
Size values as, 16, 32, 48 etc. Default value is, 32
sortedByKey
Pass true, if the data passed to this component is already sorted by time-based key. Pass false otherwise, the component will take care of the time based sorting.
No
true or false. Default value is, true
storageKey
It stores the last read message key in localstorage of the browser.
No
Any string of your choice as a key. Default value is, notification_timeline_storage_id
markAsRead
User can control the functionality of "Mark All As Read" by passing the function as prop as below
markAsReadFn = {() => yourOwnFunctionHandler()}
No
Now "Mark All As Read" can be controlled by passing your own function as prop. Default functionality is,
- We will clear the notification count.
- Update the reactLocalStore with the latest notification key.
- We will set the readIndex to 0 - which is used to highlight the unread notifications.
icon
User can add custom notification Icon by passing react-feather icon as prop as below icon={IconName} //You need to import the Icon from the react-feather library
No
Any icon from the react-feather library default is Bell icon
# 🏷️ License
Copyright © 2020 by [Tapas Adhikary](https://tapasadhikary.com/)
This project is licensed under MIT license.
# ⭐ Show your support
If you liked the work, please show your support by giving a Star!
# ✋ Contributions
I would love to get your feedback. Please use the github issues for submitting any feedback. At the same time, please join hands in improving the component further by fixing bugs, adding features.
People contributed so far ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Tapas Adhikary
🚇 ⚠️ 💻
NagarjunShroff
💻
Sankalpa Fernando
💻
Dony M Varkey
📖
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!