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

react-photostory

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-photostory

A mobile optimised lighweight gallery component written in React

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
increased by40%
Maintainers
1
Weekly downloads
 
Created
Source

#react-photostory

A lightweight carousel made in React and optimized for mobile

codecov Build Status

Demo is available here. Make sure devtools is open and mobile emulation is selected as this library currently only supports touch events.

##Features

  1. lazy-loading by default
  2. AutoPlay
  3. Drag and swipe

Installation

npm install --save react-photostory

Basic Usage

import { Slide, Swipe } from 'react-photostory';

<Swipe className="photostory">
    <Slide image="a.jpg" defaultImage="default1.jpg">Text 1</Slide>
    <Slide image="b.jpg" defaultimage="default2.jpg">Text 2</Slide>
</Swipe>

Options

<Swipe/> Component

propdefaultdescription
className''Custom classname
initialIndex0initially visible slide index
autoPlayfalsewhether to display slide show or not
overScan0Number of Slide offsets to load excluding the current slide.If its 1 it will load current, current+-1
onSwipe({initialIndex, currentIndex})function executed whenever the current slide changes
onClick{index}function executed when a slide is clicked
prevReact element to replace the PREV button
nextReact element to replace the NEXT button
threshold0.5Ratio of carousel width one should drag to make successful swipe
responsivefalseShould the gallery be responsive

To manually go to a particular slide you can use gotoSlide(i) method

const x = (
<Swipe className="photostory">
    <Slide image="a.jpg" defaultImage="default1.jpg">Text 1</Slide>
    <Slide image="b.jpg" defaultimage="default2.jpg">Text 2</Slide>
    <Slide image="c.jpg" defaultimage="default3.jpg">Text 2</Slide>
</Swipe>
)

x.gotoSlide(2) // will go to the 3rd slide

<Slide/> Component

propdefaultdescription
imagestringfinal image to be loaded
defaultImagestringpre-loader image to be shown
autoLoadfalseshould the component automatically lazyLoad the image
attributes{}Additional attributes for component root
title''serves like alt attribute for img tag
lazyLoadtrueenable/disable lazy load

If autoload is set to false the you have to manually call .load() to load the image

// This will not load `image` automatically. Will load default1.jpg
const a = <Slide image="a.jpg" defaultImage="default1.jpg">Text 1</Slide>
a.load() // now image will be loaded

// Alternatively set `autoLoad` to true. So `a.jpg` will automatically replace
// default1.jpg when it is loaded.
<Slide image="a.jpg" defaultImage="default1.jpg" autoLoad={true}>Text 1</Slide>

Development

git clone https://github.com/housinghq/react-photostory
cd react-photostory
npm install
npm run storybook

Make sure you develop in emulation mode (open devtools and select mobile emulation). Currently this only supports touch events.

Make sure you open issue before opening a PR. This package is optimised for mobile so not many features may be implemented.

License @ MIT

Keywords

FAQs

Package last updated on 10 Oct 2016

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