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-revolver

v1.0.0

Published

Revolving infinite carousel in React

Downloads

10

Readme

React Revolver

React Revolver is a revolving infinite carousel in React.

Motivation

Q: What is a revolver?
A: Something that revolves! (And a gun...)

Q: Why is the prop called bullets? (Instead of items/steps/slides/etc)
A: Bullets are what you put in a revolver. And it sounds way cooler!

Q: Do I need this?
A: Possibly not. There are already a lot of React carousels out there. I wanted a minimalist one that allows for infinite revolving without adding an infinite number of clones to the DOM, and could not find one that did that.

Q: How does it work?
A: The bullets are cloned twice, and then the three copies are juggled around so that it all looks good however you interact with the Revolver. (Since they are copied, make sure they don't perform any side effect that should not be performed more than once.)

Installation

npm i react-revolver

Usage

import React from 'react';
import ReactRevolver from 'react-revolver';
import 'react-revolver/dist/index.css';

<ReactRevolver
    numberOfColumns={3}
    bullets={[
        <Item />,
        <Item />,
        <Item />,
        <Item />,
        <Item />,
    ]}
/>

The content will get the same height (decided by the tallest one). You can thus set your item height to 100 %, and they will all be equally tall.

Props

bullets (required) - the items you want to show in the Revolver
numberOfColumns (required) - how many items to show simultaneously
arrowOverhangMode (optional) = none|some|all (default) (choices can be imported via import {arrowOverhangModes} from 'react-revolver';) - how much the arrows extend outside the Revolver container

Methods

goToIndex
next
previous

Attach a ref to control the Revolver from your app.

I want the Revolver to do X

Update props after mounting the Revolver

Not currently possible, but will be fixed in the future. For now, you can force a remount by using a key.

<ReactRevolver
    key={counter} // Increase counter when the props change to force remount
    numberOfColumns={3}
    bullets={[
        <Item />,
        <Item />,
        <Item />,
        <Item />,
        <Item />,
    ]}
/>

Customise the styling

Instead of importing the Revolver css, copy it, modify it to your liking and import that in your app. (Each bullet's width, transform and transition is controlled by the Revolver via style and could/should not be modified.)

Remove arrows/balls

Not currently possible, but will be fixed in the future.

Start on arbitrary index

Not currently possible, but will be fixed in the future.

Something else

Please open an issue or PR.

License

MIT, see separate license file.