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 🙏

© 2026 – Pkg Stats / Ryan Hefner

seatmap-painter

v0.0.5

Published

React-based UI tools for creating and painting groups on a provided SVG seatmap

Readme

seatmap-painter

Storybook NPM Version

React-based UI tools for creating and painting groups on a provided SVG seatmap.

This package includes:

  • SeatmapPainter: Divide an SVG seatmap into groups based on a provided array of name/color pairs

SeatmapPainter-demo

  • GroupMaker: An extension of SeatmapPainter with an interface for creating groups alongside the seatmap

GroupMaker-demo

Check it out here: Storybook

Installation

Install the package via NPM:

npm install --save seatmap-painter

Usage

SeatmapPainter

import { useState } from "react";
import { SeatmapPainter, GroupedSeats } from "seatmap-painter";

export function default () {
  const [groupedSeats, setGroupedSeats] = useState<GroupedSeats>({});

  const groups = [
    {
      value: "stalls", // Used as the key for this group in the groupedSeats object
      label: "Stalls", // Displayed as the name of this group in the UI
      color: "#ef857d", // Used to highlight this group on the seatmap
    },
  ];

  return (
    <SeatmapPainter
      svg="https://www.test.com/svg" // The URL of the SVG to use as the basis for the seatmap
      value={groupedSeats}
      onChange={setGroupedSeats}
      groups={groups}
    />
  );
};

GroupMaker

import { GroupMaker } from "seatmap-painter";

export default () => (
  <GroupMaker
    svg="https://www.test.com/svg" // The URL of the SVG to use as the basis for the seatmap
  />
);

Props

Grouped Seats | Name | Type | Description | | --------- | ------------------- | ------------------------------- | | value | string | The unique key of the group. All seats selected for this group will be listed under this key in the object returned from onChange in SeatmapPainter | | label | string | The name for this group that should be shown in the UI | | color | string | The color that will be used to represent seats in this group on the seatmap |

SeatmapPainter

| Name | Type | Description | | -------- | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | svg | string | URL for an svg to render as the seatmap | | value | GroupedSeats | The GroupedSeats object representing the current combination of groups and seats. Since this is a controlled component, this prop controls which group each seat is considered to be in, and so should be stored in state. | | onChange | (GroupedSeats) => void | Function that is run when the user changes the seat grouping. Since this is a controlled component, the function argument is the new "value" for the component. |

GroupMaker

| Name | Type | Description | | ---- | ------ | --------------------------------------- | | svg | string | URL for an svg to render as the seatmap |

License

MIT Licence