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

@reelkit/react-lightbox

v0.2.1

Published

Full-screen image and video gallery lightbox for React with touch gestures, transitions, and render props

Downloads

544

Readme

@reelkit/react-lightbox

Image gallery lightbox for React — opens full-screen with swipe navigation, keyboard controls, and transition effects. Everything is replaceable via render props if the defaults don't fit. ~3.2 kB gzip.

Installation

npm install @reelkit/react-lightbox @reelkit/react lucide-react

Quick Start

import { useState } from 'react';
import { LightboxOverlay, type LightboxItem } from '@reelkit/react-lightbox';
import '@reelkit/react-lightbox/styles.css';

const images: LightboxItem[] = [
  {
    src: 'https://example.com/image1.jpg',
    title: 'Sunset',
    description: 'Beautiful sunset over the ocean',
  },
  {
    src: 'https://example.com/image2.jpg',
    title: 'Mountains',
  },
];

function App() {
  const [index, setIndex] = useState<number | null>(null);

  return (
    <>
      {images.map((img, i) => (
        <img key={i} src={img.src} onClick={() => setIndex(i)} />
      ))}
      <LightboxOverlay
        isOpen={index !== null}
        images={images}
        initialIndex={index ?? 0}
        onClose={() => setIndex(null)}
      />
    </>
  );
}

Features

  • Touch gestures — swipe to navigate, swipe up to close
  • Keyboard navigation — arrow keys, Escape
  • Fullscreen — cross-browser Fullscreen API
  • Transitions — slide, fade, and zoom-in effects
  • Image preloading — adjacent images prefetched
  • Video slides (opt-in) — tree-shakeable video support via useVideoSlideRenderer
  • Counter — "1 / 10" indicator
  • Info overlay — title and description with gradient
  • Render props — renderControls, renderNavigation, renderInfo, renderSlide to override any part of the UI
  • Sub-components — CloseButton, Counter, FullscreenButton, SoundButton for composing custom controls

API Reference

LightboxOverlay Props

| Prop | Type | Default | Description | | ------------------ | ---------------------------------------------------- | --------- | ---------------------------- | | isOpen | boolean | required | Controls lightbox visibility | | images | LightboxItem[] | required | Array of images to display | | initialIndex | number | 0 | Starting image index | | transition | TransitionType | 'slide' | Transition animation type | | apiRef | MutableRefObject<ReelApi> | - | Ref to access Reel API | | renderControls | (props) => ReactNode | - | Custom controls | | renderNavigation | (props) => ReactNode | - | Custom navigation arrows | | renderInfo | (props) => ReactNode | - | Custom info overlay | | renderSlide | (item, index, size, isActive) => ReactNode \| null | - | Custom slide rendering |

Callbacks

| Prop | Type | Description | | --------------- | ------------------------- | --------------------------- | | onClose | () => void | Called when lightbox closes | | onSlideChange | (index: number) => void | Called after slide change |

Reel Props (proxied)

| Prop | Type | Default | Description | | --------------------- | --------- | ------- | -------------------------- | | loop | boolean | false | Enable infinite loop | | useNavKeys | boolean | true | Enable keyboard navigation | | enableWheel | boolean | true | Enable mouse wheel | | wheelDebounceMs | number | 200 | Wheel debounce (ms) | | transitionDuration | number | 300 | Animation duration (ms) | | swipeDistanceFactor | number | 0.12 | Swipe threshold (0-1) |

Types

interface LightboxItem {
  src: string;
  type?: 'image' | 'video'; // defaults to 'image'
  poster?: string; // thumbnail for video items
  title?: string;
  description?: string;
  width?: number;
  height?: number;
}

type TransitionType = 'slide' | 'fade' | 'zoom-in';

Video Slides (Opt-in)

Video support is tree-shakeable — image-only usage pays zero extra bundle cost. Import useVideoSlideRenderer and wire it into LightboxOverlay to enable video slides.

import {
  LightboxOverlay,
  Counter,
  CloseButton,
  SoundButton,
  useVideoSlideRenderer,
  type LightboxItem,
} from '@reelkit/react-lightbox';
import '@reelkit/react-lightbox/styles.css';

const items: LightboxItem[] = [
  { src: '/photo.jpg', title: 'Photo' },
  {
    src: '/clip.mp4',
    type: 'video',
    poster: '/clip-thumb.jpg',
    title: 'Video Clip',
  },
];

function Gallery() {
  const [index, setIndex] = useState<number | null>(null);
  const isOpen = index !== null;
  const { renderSlide, isMuted, onToggleMute, hasVideo } =
    useVideoSlideRenderer(items, isOpen);

  return (
    <>
      {/* thumbnails… */}
      <LightboxOverlay
        isOpen={isOpen}
        images={items}
        initialIndex={index ?? 0}
        onClose={() => setIndex(null)}
        renderSlide={renderSlide}
        renderControls={({ onClose, currentIndex, count }) => (
          <>
            <div className="rk-lightbox-controls-left">
              <Counter currentIndex={currentIndex} count={count} />
              {hasVideo && (
                <SoundButton isMuted={isMuted} onToggle={onToggleMute} />
              )}
            </div>
            <CloseButton onClick={onClose} />
          </>
        )}
      />
    </>
  );
}

useVideoSlideRenderer

function useVideoSlideRenderer(
  items: LightboxItem[],
  isOpen?: boolean,
): {
  renderSlide: (item, index, size, isActive) => ReactNode | null;
  isMuted: boolean; // current mute state (default: true)
  onToggleMute: () => void;
  hasVideo: boolean; // true if items contain at least one video
};

Pass isOpen to reset muted state when the lightbox closes (enables autoplay on reopen).

SoundButton

| Prop | Type | Description | | ----------- | --------------- | -------------------------------------- | | isMuted | boolean | Current mute state | | onToggle | () => void | Toggle callback | | className | string | CSS class (default: rk-lightbox-btn) | | style | CSSProperties | Inline styles |

Keyboard Shortcuts

| Key | Action | | ------------ | ----------------------------------- | | ArrowLeft | Previous image | | ArrowRight | Next image | | Escape | Close lightbox (or exit fullscreen) |

CSS Classes

All UI elements use CSS classes prefixed with rk-lightbox- that can be overridden:

| Class | Description | | ------------------------------ | --------------------------- | | .rk-lightbox-container | Root container | | .rk-lightbox-close | Close button | | .rk-lightbox-nav | Navigation arrows | | .rk-lightbox-nav-prev | Previous arrow | | .rk-lightbox-nav-next | Next arrow | | .rk-lightbox-counter | Image counter | | .rk-lightbox-btn | Control buttons | | .rk-lightbox-info | Title/description container | | .rk-lightbox-title | Image title | | .rk-lightbox-description | Image description | | .rk-lightbox-slide | Slide container | | .rk-lightbox-img | Image element | | .rk-lightbox-video-container | Video slide wrapper | | .rk-lightbox-video-element | Video element | | .rk-lightbox-video-poster | Video poster image | | .rk-lightbox-video-loader | Video loading indicator |

Documentation

Docs, demos, and customization examples at reelkit.dev/docs/lightbox.

Support

If ReelKit saved you some time, a star on GitHub would mean a lot — it's a small thing, but it really helps the project get noticed.

Star on GitHub

License

MIT