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

html-canvas-utilities

v0.2.1

Published

Canvas utilities for the browser (Pan, zoom, move, select).

Downloads

34

Readme

HTML Canvas Utilities

Demo Published on npm

Abstract canvas controller that can take a set of drawable children and render them to the canvas while hooking up events for pan, zoom, move and select.

Online Demo

  • ✅ No Dependencies
  • ✅ ES Modules
  • ✅ Full Browser Support
  • ✅ 100% Typescript

https://user-images.githubusercontent.com/31253215/156279985-b89cc58c-6549-491c-b641-b67fb9a4eae5.mov

Features

  • Mouse wheel events
  • Keyboard navigation
  • Mobile pinch / zoom
  • Zoom at cursor
  • Mobile tap to select
  • Cursor changes
  • Theme API
  • Double click to select nested child
  • Relative children
  • Multi selection
  • Double click to edit text
  • Gesture events (Safari)

Theme

Light Theme

--canvas-background-color: #fafafa;
--canvas-grid-color: #ccc;
--canvas-selected-color: #f00;
--canvas-hovered-color: #0f0;
--canvas-text-color: #000;

Dark Theme

--canvas-background-color: #333;
--canvas-grid-color: #666;
--canvas-selected-color: #bd0303;
--canvas-hovered-color: #04a104;
--canvas-text-color: #fff;

Example

// Get the canvas
const canvas = document.querySelector('canvas');

// Attach the controller
const controller = new CanvasController(canvas);

// (Optional) Add a listener
controller.addListener(() => {
    const { offset, scale } = controller.info;
    console.debug(`offset: ${offset.x}, ${offset.y}; scale: ${scale}`);
});

// Add a child to control and render
controller.addChild({
    rect: new DOMRect(0, 0, 100, 100),
    draw: (ctx: CanvasRenderingContext2D) => {
        ctx.save();
        ctx.fillStyle = 'red';
        ctx.fillRect(0, 0, 100, 100);
        ctx.restore();
    },
});

// Add a child with nested children relative to the parent
controller.addChild({
    rect: new DOMRect(100, 100, 100, 100),
    draw: (ctx, size) => {
      ctx.fillStyle = "purple";
      ctx.fillRect(0, 0, size.width, size.height);
    },
    children: [
      {
        rect: new DOMRect(50, 50, 50, 50),
        draw: (ctx, size) => {
          ctx.fillStyle = "yellow";
          ctx.fillRect(0, 0, size.width, size.height);
        },
        children: [
          {
            rect: new DOMRect(12.5, 12.5, 25, 25),
            draw: (ctx, size) => {
              ctx.fillStyle = "magenta";
              ctx.fillRect(0, 0, size.width, size.height);
            },
          },
        ],
      },
    ],
});

// Start the animation loop
controller.paint();

Lit Example

import { html, css, LitElement } from "lit";
import { customElement, query } from "lit/decorators.js";
import { CanvasController } from "./controller";
import { addRandomShapes } from "./shapes";

@customElement("canvas-editor")
export class CanvasEditor extends LitElement {
  static styles = css`
    canvas {
      --canvas-background-color: #fafafa;
      --canvas-grid-color: #ccc;
      --canvas-selected-color: #f00;
      --canvas-hovered-color: #0f0;
      width: 100%;
      height: 100%;
    }
    @media (prefers-color-scheme: dark) {
      canvas {
        --canvas-background-color: #333;
        --canvas-grid-color: #666;
        --canvas-selected-color: #bd0303;
        --canvas-hovered-color: #04a104;
      }
    }
  `;

  @query("#canvas") canvas!: HTMLCanvasElement;

  render() {
    return html` <canvas id="canvas"></canvas> `;
  }

  firstUpdated() {
    const controller = new CanvasController(this.canvas);
    controller.addListener(() => {
      const { offset, scale } = controller.info;
      console.debug(`offset: ${offset.x}, ${offset.y}; scale: ${scale}`);
    });
    const resize = () => {
      this.canvas.width = window.innerWidth;
      this.canvas.height = window.innerHeight;
    };
    window.addEventListener("resize", () => resize());
    resize();
    
    controller.addChild({
        rect: new DOMRect(0, 0, 100, 100),
        draw: (ctx: CanvasRenderingContext2D) => {
            ctx.save();
            ctx.fillStyle = 'red';
            ctx.fillRect(0, 0, 100, 100);
            ctx.restore();
        },
    });

    controller.clearSelection();
    controller.paint();
  }
}

declare global {
  interface HTMLElementTagNameMap {
    "canvas-editor": CanvasEditor;
  }
}