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

react-custom-calendar-heatmap

v1.0.12

Published

a heatmap library for Customizable SVG Elements and hover actions

Downloads

167

Readme

React Custom Calendar Heatmap

A heatmap library designed for customizable SVG elements, offering flexible configuration options and interactive hover actions to enhance data visualization. It is currently under development and expected to include features for seamless integration and extensive customization.🚀

npm version Build Status bundle size

image

Setup

Install the npm module with npm, yarn or pnpm:

pnpm install react-custom-calendar-heatmap

Usage

Import the component:

import CalendarHeatmap from "react-custom-calendar-heatmap";

Import styles. You can directly import from the module, which requires a CSS loader:

import "react-custom-calendar-heatmap/dist/styles.css";

A CSS loader is included by default in create-react-app. If you don't have a CSS loader, you can simply copy the stylesheet into a file in your project and import it instead.

Create a component with SVG:

import React from "react";

const DefaultElement = ({ ...props }) => {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" {...props}>
      <rect width="100%" height="100%" fill="current" />
    </svg>
  );
};

export default DefaultElement;

When setting the SVG's fill attribute, using "current" is crucial for conveying the color to its child elements. This approach ensures that the child elements inside the SVG inherit the color seamlessly from their parent element. Additionally, remember to pass props to the component as needed.

To show a basic heatmap:

<CalendarHeatmap
  values={[
    { date: "2024-07-09", value: 12 },
    { date: "2024-07-10", value: 54 },
    { date: "2024-07-11", value: 38 },
    // ...and so on
  ]}
/>

Props

| Name | IsRequired | Type | Description | | ------------ | ---------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | | values | true | {date: Date, value: number} | An array of objects, each containing a date and a numerical value. | | SvgComponent | false | JSX.Element | An optional SVG component to be displayed alongside the gradient. | | mainColor | false | string | The base color code (hexadecimal string) for generating the gradient. The gradient will start from this color and transition to gray. | | colorSet | false | string[] | The color set with depth |

License

react-custom-calendar-heatmap is Copyright © 2024 Ahyeon, Jung(@a-honey) and is released under an MIT License.