Filterable Album Grid

(Albums)

Three years of work, sorted by where it happened.

Desks, walls and the state of the floor between deadlines.

4 frames

About this block

Filterable Album GridPRO

Album gallery with pill filters that swap the whole set below, where any tile opens a light full-screen viewer: the frame hangs on the page surface while a side column carries the caption, the album summary, the controls and a plainly labelled thumbnail index.

Gallery3: Filterable Album Grid

Photographs sorted into albums, switched with pill filters and a summary line that carries the frame count. The viewer opens on the page's own surface, with the picture on one side and a detail column holding the caption, the controls and the rest of the album.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/gallery3?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/gallery3?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/gallery3.tsx plus the badge7 eyebrow it uses.

Quick start

The installed file exports gallery3Demo alongside the block: the exact props behind the preview above. Spread it to get a working gallery in one line.

tsx
import { Gallery3, gallery3Demo } from "@/components/beste/block/gallery3";

export default function Page() {
  return <Gallery3 {...gallery3Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Gallery3 } from "@/components/beste/block/gallery3";

export default function Page() {
  return (
    <Gallery3
      badge={{ label: "Albums" }}
      heading="Three years of work, sorted by where it happened."
      albums={[
        {
          label: "In the studio",
          summary: "Desks, walls and the state of the floor between deadlines.",
          images: [
            { src: "/albums/studio-1.jpg", alt: "Specimens on a desk", caption: "Specimens, mid-selection" },
            { src: "/albums/studio-2.jpg", alt: "Team at a shared table", caption: "Thursday review" },
          ],
        },
        {
          label: "On site",
          summary: "Installations, mostly photographed before anyone arrived.",
          images: [
            { src: "/albums/site-1.jpg", alt: "Signage on a lobby wall", caption: "Wayfinding, level two" },
          ],
        },
      ]}
      labels={{
        countSuffix: "frames",
        openLabel: "Open this frame",
        closeLabel: "Close the viewer",
        previousLabel: "Previous frame",
        nextLabel: "Next frame",
        counterSeparator: "of",
        detailTitle: "Also in this album",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading above the filters
albumsAlbum[][]Albums, first one selected on mount
labelsGallery3Labels{}Fixed strings that are not content: count suffix, viewer controls, counter separator and the detail column title
lightboxbooleantrueRender the built-in viewer; set false to leave the frames static
classNamestringExtra classes for the outer <section>
ts
type Album = {
  label: string;
  summary: string;
  images: AlbumImage[];
};

type AlbumImage = {
  src: string;
  alt: string;
  caption: string;
};

type Gallery3Labels = {
  countSuffix?: string;
  openLabel?: string;
  closeLabel?: string;
  previousLabel?: string;
  nextLabel?: string;
  counterSeparator?: string;
  detailTitle?: string;
};

Behavior notes

  • Switching album also clears the open frame, so the viewer can never be left showing a picture from a set you are no longer looking at.
  • The viewer is light rather than dark: it fills the screen on bg-background, with the picture on the page's own surface and a bordered detail column beside it, so nothing is layered on top of the photograph.
  • That column carries the caption, the album summary, the step controls and a thumbnail grid of the whole album, so you can move sideways through the set without closing anything.
  • Thumbnails fade to opacity-40 when they are not the open frame, which marks the position without adding a border or a colour.
  • Setting lightbox={false} disables every frame button and switches the cursor back to default, leaving a plain filterable grid.
  • Escape closes and the left and right arrows step through, with the index wrapping inside the current album only.
  • The frame count is rendered as a number plus a countSuffix you supply, so it stays translatable without string concatenation in the block.
  • Below md the detail column moves under the picture and gains a top border instead of a left one, so the viewer stays usable on a phone.

More Gallery blocks

View all Gallery
PRO

gallery2

Lightbox Frame Grid

Captioned image grid where any tile opens a full-screen lightbox on a dark scrim, with a frame counter, keyboard arrows, escape to close and previous and next controls beside the caption.

PRO

gallery9

Zoomable Justified Gallery

Justified rows of frames that grow to fill every line, opening a viewer whose picture doubles as the zoom control: clicking switches between fitting the screen and filling it, with the caption and controls on one closing rule.

PRO

gallery29

Plate Grid Lightbox

An even three-column grid of photographic plates that open into an ink lightbox: every frame keeps the same ratio so the captions line up, arrows and keys turn the page, either half of the plate is clickable, and a plate that belongs to a page offers it as a link.

PRO

gallery10

Overview Toggle Viewer

Square grid whose viewer holds two states: a single frame with caption and controls, or an in-place overview of the whole set that you can jump from without closing the layer.

PRO

gallery26

Cover Archive With Lightbox

A square cover grid that names each picture only on hover and opens it full screen on click, where arrows and the keyboard walk the archive and a link leads into the issue itself.

PRO

gallery18

Edition Inspector

Matted edition cards opening a viewer that keeps the whole sheet and its detail crops in one place: pill controls swap what the large frame shows while the side column holds process, sheet size and edition.