Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arjunrao87/activity-graph-component
https://github.com/arjunrao87/activity-graph-component
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/arjunrao87/activity-graph-component
- Owner: arjunrao87
- Created: 2024-03-04T03:33:14.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-19T11:15:24.000Z (8 months ago)
- Last Synced: 2024-05-21T08:18:16.858Z (6 months ago)
- Language: HTML
- Size: 162 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# activity-graph-component
A design component to reproduce creating the github style commit graph for instant visual feedback.
- [Inspo](https://codepen.io/ire/pen/Legmwo)
## Example
![](assets/graph.png)
## Features
- Easy data passing format to populate activity frequency
- Rolling time scale
- Responsive layout
- Ability to change commit frequency colors
- Embed anywhere
- Plugins for applications
- Pluggable backend database for persistent storage## Data format
### Stateless
```json
{
"storage": false,
"data": [
"2024-02-28": 2,
"2024-02-29": 4,
"2024-03-01": 17,
"2024-03-02": 0,
"2024-03-03": 1,
]
}
```### Stateful
```json
{
"storage": true,
"data": [
"2024-03-03": 1,
]
}
```## TODOs