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

@alameer/angular-activity-heatmap

v0.0.1

Published

An Angular activity heatmap

Downloads

3

Readme

Angular Heatmap Library

An Angular heatmap component providing a customizable and interactive heatmap visualization for your data.

Heatmap Example

Features

  • Customizable Heatmap Visualization: Easily integrate heatmaps into your Angular applications.
  • Flexible Data Types: Supports generating heatmaps based on a range, specific months, a single month, or an entire year.
  • Layout Modes: Choose between vertical and horizontal layouts to best fit your application's design.
  • Interactive Tooltips: Provides tooltips for rich user interaction.
  • Theming and Styling: Customize the look and feel with themes and CSS classes.
  • Easy Integration: Simple API and setup process.

Table of Contents

Installation

Install the library via npm:

npm install @alameer/angular-activity-heatmap

Usage

Importing the Module

In your component's template, use the activity-heatmap selector:

import { ActivityHeatmapModule } from '@alameer/angular-activity-heatmap';

@NgModule({
  imports: [
    // other imports
    ActivityHeatmapModule,
  ],
  // ...
})
export class AppModule {}

Using the Component

In your component's template, use the activity-heatmap selector:

<activity-heatmap
  [mode]="mode"
  [action]="action"
  [theme]="theme"
  [data]="heatmapData"
  [options]="heatmapOptions">
</activity-heatmap>

Data Format

import { Component } from '@angular/core';
import { DataItem, HeatmapOptions, HeatmapMode } from '@alameer/angular-activity-heatmap';

@Component({
  selector: 'app-example',
  templateUrl: './example.component.html',
})
export class ExampleComponent {
  heatmapData: DataItem[] = [
    { _id: '2023-01-01', count: 5 },
    { _id: '2023-01-02', count: 3 },
    // ...more data items
  ];

  heatmapOptions: HeatmapOptions = {
    type: 'year', // 'range', 'months', 'month', or 'year'
    // value: ... // Provide value based on the type
  };

  mode: HeatmapMode = 'Horizontal'; // or 'Vertical'
  action = 'Commits'; // Description for the tooltip
  theme = 'fire'; // Theme class prefix fire, deepblue, github
}

Options

Heatmap Types

  • year: Generates a heatmap for the entire year.
  • range: Generates a heatmap for a specified range of months.
  • months: Generates a heatmap for specific months.
  • month: Generates a heatmap for a single month.
heatmapOptions: HeatmapOptions = {
  type: 'year',
};

Styling and Themeing

  • purble: A purple-themed heatmap with varying shades of purple.
  • fire: A fiery-themed heatmap with warm red and orange tones.
  • github: A GitHub-inspired heatmap with shades of green.
  • deepblue: A cool blue-themed heatmap with deep blue gradients.

API Documentation

For complete details on how to use and customize this library, refer to the API documentation.

Inputs

  • data: The data source for the heatmap visualization.
  • mode: Determines the layout of the heatmap (e.g., Horizontal or Vertical).
  • action: Description for the tooltip (e.g., Commits, Events).
  • theme: Determines the theme for the heatmap (e.g., fire, ocean).

Interfaces

  • DataItem: Interface representing the structure of each data point (e.g., _id, count).
  • HeatmapOptions: Interface for the configuration options (e.g., type, value).
  • HeatmapMode: Interface for defining the layout mode of the heatmap (e.g., Horizontal or Vertical).