0.0.10 • Published 3 months ago
next-static-images-gallery v0.0.10
next-static-images-gallery
An opinionated 'image gallery plugin' for next.js sites
Features:
- Masonry grid
- Via
react-masonry-css
- Via
- Infinite scroll
- Via
react-infinite-scroll-component
- Via
- Lazy-loading of images
- Lightbox Photo Viewer
- Via
photoswipe
- Via
- Build-time thumbnail generation
- Via
sharp
- Via
Get Started
- Install library
yarn add next-static-images-gallery
- Configure plugin
// next.config.js
const { withStaticImagesGallery } = require("next-static-images-gallery/src/plugin");
module.exports = withStaticImagesGallery(nextConfig, {
// the /public directory for the app (so images are available)
publicRoot: path.join(__dirname, "public"),
// the "sub path" within /public that contains the images
inputDir: "gallery",
// the "sub path" within /public that the thumbnails will be saved to
outputDir: "gallery/thumbs",
// the generated thumbnail maximum width
thumbnailWidth: 400,
});
- Use gallery
/**
* ⚠️ Run next.js build first to remove the type errors below
* generated from next-static-images-gallery/src/plugin
*/
import { ImageGrid } from "next-static-images-gallery";
import images from "../../../public/gallery/thumbs/gallery.json";
export default function Page() {
return (
<div>
<ImageGrid images={images} />
</div>
);
}