Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-smart-gallery

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-smart-gallery

Render images based on optimal layout, like facebook render images inside timeline.

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
111
increased by177.5%
Maintainers
1
Weekly downloads
 
Created
Source

Render images based on optimal layout, like facebook render images inside timeline.

Demo: https://gauravchl.github.io/react-smart-gallery/demo/

screen shot 2017-02-22 at 11 46 55 pm screen shot 2017-02-22 at 11 48 15 pm

Install:

npm install react-smart-gallery

Use:

import SmartGallery from 'react-smart-gallery';

const images = [
  'https://source.unsplash.com/random/400x400',
  'https://source.unsplash.com/random/400x400',
  'https://source.unsplash.com/random/400x400',
];

<SmartGallery images={images} />

Props:

PropsTypeDescription
images[string]Array of image source url
rootStyleobjectStyle for root element
widthnumberWidth of gallery box (default 500)
heightnumberHeight of gallery box (default 500)
onImageSelectfunctionCalled when user click on any image item. e.g. function(event, src, index) {window.open(src)}
onLoadfunctionRuns after images prepared and loaded in UI.

More Examples:

[with custom width and height]

import SmartGallery from 'react-smart-gallery';

const images = [
  'https://source.unsplash.com/random/400x400',
  'https://source.unsplash.com/random/400x400',
  'https://source.unsplash.com/random/400x400',
];

<SmartGallery width={800} height={800} images={images} />

[with custom style and callback]

import SmartGallery from 'react-smart-gallery';

const images = [
  'https://source.unsplash.com/random/400x400',
  'https://source.unsplash.com/random/400x400',
  'https://source.unsplash.com/random/400x400',
];

<SmartGallery
  rootStyle={{boxShadow: '2px 2px 4px #000'}}
  images={images}
  onImageSelect={(event, src) => window.open(src)}
/>

Contributing:

Please feel free to submit any bugs or suggestions as issues. Pull requests are welcome. To build package locally run following commands which will build the package from source and will update the demo inside /react-smart-gallery/demo/.

cd /react-smart-gallery/
npm install
npm run build

TODOs:

  • Update props.images to support array of objects, Send image's width and height along with src within this props to improve performance.
  • Add new prop imageStyle to style the image element

Keywords

FAQs

Package last updated on 27 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc