Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
react-contribution-calendar
Advanced tools
A GitHub-like contribution calendar component for React, built with Vite and TypeScript. This provides a visual representation of contribution activity, similar to the contribution graph seen on a GitHub profile.
$ npm i react-contribution-calendar
Note
Add --save if you are using npm < 5.0.0
import { ContributionCalendar } from 'react-contribution-calendar'
const data = [
{
'2023-07-08': {
level: 1,
},
},
{
'2023-07-09': {
level: 4,
data: {},
},
},
{
'2023-12-31': {
level: 3,
data: {
myKey: 'my data',
},
},
},
]
<ContributionCalendar data={data} />
ContributionCalendar
ContributionCalendar
is the main component of this library. It takes a data property, which is an array of objects representing the contribution data, and a theme property to customize its appearance.
data
: An array of objects, where each object has a date string(YYYY-MM-DD
format) as key, and an InputDataProps
object as value. Defaults to []
.
const data = [
{
'2023-07-08': {
level: 3,
data: {
myKey: 'my data',
},
},
},
{
'2023-07-09': {
level: 1,
},
},
]
theme
: Optional. A string that represents a predefined theme name, or an object with custom theme colors. Defaults to grass
.
createTheme
createTheme
is a helper function to create custom themes. It takes a string representing a predefined theme name or an object containing custom theme colors. This returns a theme object(ThemeProps
).
You can customize the appearance of the <ContributionCalendar />
with the theme property. We provide several built-in themes.
// Replace `theme` attribute with belows
<ContributionCalendar data={[]} theme={'grass'} />
grass
cherry
cherry_blossom
pink
sky
halloween
winter
purquoise
blue_pop
mustard
dark_vomit
dark_pink
dark_blue
dark_ocean
dark_grass
dark_halloween
dark_winter
import { ContributionCalendar, createTheme } from 'react-contribution-calendar'
function App() {
/* Define your custom theme */
const customTheme = createTheme({
level0: "#ebedf0",
level1: "#9be9a8",
level2: "#40c463",
level3: "#30a14e",
level4: "#216e39",
})
return (
<ContributionCalendar
data={[]}
theme={customTheme}
/>
)
}
Or you can set theme properties directly,
import { ContributionCalendar } from 'react-contribution-calendar'
function App() {
return (
<ContributionCalendar
data={[]}
theme={{
// Assign theme properties directly
level0: "#ebedf0",
level1: "#9be9a8",
level2: "#40c463",
level3: "#30a14e",
level4: "#216e39",
}}
/>
)
}
FAQs
A GitHub-like contribution calendar component for React
We found that react-contribution-calendar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.