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-jigsaw-puzzle

v1.0.5

Published

Simple plug-and-play React component for jigsaw puzzles

Downloads

761

Readme

Demo NPM GLP-3.0 License

GitHub Repo stars GitHub Repo stars

Simple plug-and-play React component for jigsaw puzzles.

It supports resizing and can be fed with any image URL without the need to "tile" the image first.

Check out the Demo to see if it fits your needs.

Usage

// Minimal usage

import {JigsawPuzzle} from "react-jigsaw-puzzle/lib";
import "react-jigsaw-puzzle/lib/jigsaw-puzzle.css";

<JigsawPuzzle imageSrc="https://any.image/url.jpg" />;
// With custom amount of rows and columns

import {JigsawPuzzle} from "react-jigsaw-puzzle/lib";
import "react-jigsaw-puzzle/lib/jigsaw-puzzle.css";

<JigsawPuzzle
  imageSrc="https://any.image/url.jpg"
  rows={4}
  columns={6}
  onSolved={() => alert("Solved!")}
/>;

Properties

| Name | Type | Purpose | Default | | ------------ | :--------: | ----------------------------------------------------- | :--------: | | imageSrc | string | Source of the image. Can be any URL or relative path. | required | | rows | number | The amount of rows the puzzle will have. | 3 | | columns | number | The amount of columns the puzzle with have. | 4 | | onSolved | function | Called when the puzzle is solved. | () => {} |

Styling

You can simply override or add styles via plain CSS.

The following style classes are used:

  • .jigsaw-puzzle - The container for the puzzle pieces
  • .jigsaw-puzzle__piece - Puzzle piece/tile
  • .jigsaw-puzzle__piece--solved - Puzzle piece in the correct position
  • .jigsaw-puzzle__piece--dragging - Puzzle piece that is being dragged

Drawbacks

  • The component adjusts its height according to the image's aspect ratio. That means if the image has a 2:1 aspect ratio and the width is set or calculated to 800px, the puzzle will be 400px high. That is probably what you'll want for landscape images, but portrait or square images can easily expand out of the viewport on desktop screens. You can work around this by setting either a fixed width or a width dependent on the viewport height (vh).
  • While in theory you can make a 100x100 puzzle, a large tile amount will result in poor render performance. This is because each tile is basically rendering the whole image but "zooms in". If you want to make really large puzzles, this is probably not for you. Still, I decided to not limit the tile amount because computers and phones are getting faster by the day.
  • I built this for a very specific use-case. If you find bugs or want features added, feel free to either create an issue or make a PR.
  • Touch scrolling is disabled while moving a tile by temporarily setting overflow:hidden on the <html> element. Keep in mind that this does not prevent the navigation bar from moving in and out on mobile phones if the site is larger than the viewport.

Contributing

Since I am not actively working on this component, I really appreciate any contribution.

Feel free to create issues for bugs and feature requests and I will see what I can do.

I also highly encourage you to open pull requests for bugfixes, updates and improvements.