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).
#Usage
var imageData = [ 'http://via.placeholder.com/400x400/', 'http://via.placeholder.com/500x700/', 'http://via.placeholder.com/600x500/', 'http://via.placeholder.com/600x800/' ]; var imageGrid = ( <ReactPhotoGrid onImageClick={this.handleImageClick} data={imageData} /> ); React.render(imageGrid, document.getElementById('container'));
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.