react-photo-grid

Show images in a grid like facebook does. Useful to show a preview of main images when many are uploaded.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
react-photo-grid
45241.4.114 years ago9 years agoMinified + gzip package size for react-photo-grid in KB

Readme

Reactjs Component for Facebook like photo/image grids
This component shows images in a neat square (or whatever dimensions you want) grid. Acts like facebooks image grids. Switches between two modes randomly (small images on right or bottom).
The component tries to figure out the best image to show as the main image (based on their dimensions).
Live Demo
How it looks
Usage
var imageData = [
    'http://via.placeholder.com/400x400/',
    'http://via.placeholder.com/500x700/',
    'http://via.placeholder.com/600x500/',
    'http://via.placeholder.com/600x800/'
];

// whereever you use ReactPhotoGrid
<ReactPhotoGrid
    onImageClick={this.handleImageClick}
    data={imageData} 
/>
);

The dimensions of the final grid depends on the images provided and the amount of space in the parent container. If the widest image is selected as the hero image and the width of container element is more that that width, the grid width will be that images width.
To contain the grid width, you can do one of 3 things -
  1. Specify a gridSize. The grid size is specified as wxh, width and height
numbers separated by an `x`. E.g. `500x500`;
<ReactPhotoGrid
  onImageClick={this.handleImageClick}
  data={imageData}
  gridSize="400x400"
/>

  1. Set a width on the container of ReactPhotoGrid like below -

<div style={{width: 500}}>
  <ReactPhotoGrid
      onImageClick={this.handleImageClick}
      data={imageData}
  />
</div>

  1. Specify a containerWidth

<ReactPhotoGrid
    onImageClick={this.handleImageClick}
    data={imageData}
    containerWidth={500}
/>

You can also pass gridSize as a property. It's a string which consists of width and height separated by an x. E.g. gridSize="500x500".
If you don't pass any gridSize, the grid size is chosen based on the parent's width.