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

@dreamcatcher-tech/commit-graph

v2.2.9

Published

A React component to visualize a commit graph.

Downloads

2

Readme

Commit Graph

readme-header

License

Overview

The Commit Graph package is a React component suite designed to visualize commit graphs in an interactive and informative way. It showcases commit history within a repository with support for infinite scroll loading. See this post for the implementation details.

CommitGraph is utilized by platforms like DoltHub to visualize database commit log histories.

Demo

The demo features sample commit data and real GitHub repository graphs.

Features

  • Interactive Commit Graph Visualization: Render commit history as an interactive graph, offering a clear and detailed view of repository activities.
  • Infinite Scroll Support: CommitGraph.WithInfiniteScroll enhances the user experience for large commit histories by dynamically loading new content as users scroll.
  • Customizable Styles: Extensive styling options for the commit log graph, including node colors, spacing, and more, to seamlessly match your project's design.

Installation

npm install commit-graph

Quick Start

Using CommitGraph

For a basic implementation without infinite scroll:

import React from "react";
import { CommitGraph } from "commit-graph";

const MyComponent = () => {
  const commits = [
    // Commits data according to the new Commit type
  ];
  const branchHeads = [
    // Branch heads data according to the new Branch type
  ];

  return (
    <CommitGraph
      commits={commits}
      branchHeads={branchHeads}
      graphStyle={{
        commitSpacing: 50,
        branchSpacing: 20,
        branchColors: ["#FF0000", "#00FF00", "#0000FF"],
        nodeRadius: 2,
      }}
    />
  );
};

export default MyComponent;

Using CommitGraph.WithInfiniteScroll

For implementations requiring infinite scroll to handle large commit histories:

import React from "react";
import { CommitGraph } from "commit-graph";

const MyComponent = () => {
  // Your commit and branch head data, loadMore function, and hasMore flag
  return (
    <CommitGraph.WithInfiniteScroll
      commits={/* Your commits data */}
      branchHeads={/* Your branch heads data */}
      loadMore={/* Your loadMore function */}
      hasMore={/* hasMore flag */}
    />
  );
};

export default MyComponent;

Props

Common Props for CommitGraph and CommitGraph.WithInfiniteScroll

  • commits (array): An array of Commit objects representing the commit history.
  • branchHeads (array): An array of Branch objects representing the branch heads in the commit-graph.

Additional Props for CommitGraph.WithInfiniteScroll

  • loadMore (function): Function to load more commits upon reaching the scroll end.
  • hasMore (boolean): Indicates whether more commits are available to load.

Type Definitions

These type definitions should be used to structure the data passed to the commits and branchHeads props of both CommitGraph and CommitGraph.WithInfiniteScroll components, ensuring proper visualization of commit history and branch information.

Commit Type

The Commit type represents individual commits in the commit history. Each Commit object should conform to the following structure:

type ParentCommit = {
  sha: string;
};

export type Commit = {
  sha: string;
  commit: {
    author: {
      name: string; // The name of the commit author
      date: string | number | Date; // The date of the commit
      email?: string; // The email of the commit author (optional)
    };
    message: string; // The commit message
  };
  parents: ParentCommit[]; // An array of parent commits
  html_url?: string; // The URL to view the commit (optional)
};

This type definition includes the commit's SHA, author information, commit message, an array of parent commits, and an optional URL to the commit.

Branch Type

The Branch type defines the structure for branches in the repository, each associated with a particular commit:

export type Branch = {
  name: string; // The name of the branch
  commit: {
    sha: string; // The SHA of the latest commit on the branch
  };
  link?: string; // A URL to the branch on GitHub (optional)
};

Each Branch object should include the branch's name, the SHA of the latest commit on the branch, and an optional link to the branch.

graphStyle (object, optional)

An optional object specifying the styling options for the commit-graph. The graphStyle object should have the following properties:

  • commitSpacing (number): The vertical spacing between commits.
  • branchSpacing (number): The horizontal spacing between branches.
  • branchColors (array of strings): An array of colors to be used for different branches. Default: ['#FF0000', '#00FF00', '#0000FF'].
  • nodeRadius (number): The radius of the commit node circles.

dateFormatFn (function, optional)

An optional function to format commit dates. Takes a Date, number, or string as input and returns a string.

dateFormatFn?: (d: string | number | Date) => string;

example:

const customDateTimeFormatFn = (d: string | number | Date): string => {
  return new Date(d).toLocaleString('en-US', {
      year: 'numeric',
      month: 'short',
      day: 'numeric',
      hour: '2-digit',
      minute: '2-digit',
      second: '2-digit',
  });
};

const MyComponent = () => {
  // Your commit and branch head data, loadMore function, and hasMore flag
  return (
    <CommitGraph.WithInfiniteScroll
      commits={/* Your commits data */}
      branchHeads={/* Your branch heads data */}
      loadMore={/* Your loadMore function */}
      hasMore={/* hasMore flag */}
      dateFormatFn={customDateTimeFormatFn}
    />
  );
};

currentBranch (string, optional)

The name of the current branch.

fullSha (boolean, optional)

Instead of the default shortened SHA, display the full SHA of the commit.

Storybook

Explore the Commit Graph component and its features by running storybook:

npm run storybook