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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-spin-the-wheel

v1.2.1

Published

Simple React component that spins an image to given angle

Downloads

54

Readme

React Spin The Wheel

React Spin The Wheel is a simple canvas based spin wheel component for React applications.

Installation

You can install React Spin The Wheel via npm:

npm install react-spin-the-wheel

Usage

To use React Spin The Wheel in your React application, follow these steps:

Import the ReactSpinTheWheel component and necessary types in your component:

import ReactSpinTheWheel, { ReactSpinTheWheelRef } from "react-spin-the-wheel";

Initialize the ref using useRef hook:

const spinWheelRef = useRef<ReactSpinTheWheelRef | null>(null);

Use ReactSpinTheWheel in your component:

return (
  <div>
    <ReactSpinTheWheel
      ref={spinWheelRef}
      wheelImage={Image}
      onSpinEnd={() => {
        /* some logic */
      }}
    />
    {/* Your other JSX content */}
  </div>
);

The ReactSpinTheWheel component accepts props of type ReactSpinTheWheelProps, which includes:

  • wheelImage: Imported image of the wheel passed as string
  • onSpinEnd: Function to be called when the spin ends.
  • additionalSpins (Optional): Number of spins to be made before landing on the final result (defaults to 20).
  • initialImageAngle (Optional): Offset angle required incase wheel image starts with an angle.
  • canvasProps (Optional): Additional props fed directly to canvas element;

Trigger Spin using the spin function in ref object:

spinWheelRef.current?.spin({
  spinBy: "ANGLE",
  targetAngle: 20,
});

The Spin function accepts an object of type SpinFuncProps, which includes:

  • spinBy: Type of angle calculation (ANGLE, SLICE). in case of spinBy=ANGLE
  • targetAngle: Final target angle where the image should stop in case of spinBy=SLICE
  • totalSlices: Total number of slices/sections in the wheel image (All the slices should be of same proportion).
  • targetSliceNumber: Final slice/section where the spin should stop (assumption is pointer is on top & the slice numbers go anti-clockwise)

Example

Here's a basic example of how to use React Spin The Wheel:

import React from "react";
import ReactSpinTheWheel, { ReactSpinTheWheelRef } from "react-spin-the-wheel";
import MyWheelImage from "../../assets/path-to-image/wheel.png";

function App() {
  const spinWheelRef = (useRef < ReactSpinTheWheelRef) | (null > null);

  const handleButtonClick = () => {
    spinWheelRef.current?.spin({
      spinBy: "ANGLE",
      targetAngle: 20,
    });
  };

  return (
    <div className="App">
      <ReactSpinTheWheel
        ref={spinWheelRef}
        wheelImage={MyWheelImage}
        onSpinEnd={() => {
          /* some logic */
        }}
      />
      <button onClick={handleButtonClick}>Spin Wheel</button>
    </div>
  );
}

export default App;

License

This project is licensed under the MIT License - see the LICENSE file for details.