Giter Site home page Giter Site logo

Comments (1)

fritz-c avatar fritz-c commented on August 13, 2024

The component is made such that you can request such a url change in the onMoveNextRequest or onMovePrevRequest listeners.

Here's a half-built example based on the readme example:

var React    = require('react');
var Lightbox = require('react-image-lightbox');

var images = [
    {src: '//placekitten.com/1500/500', slug: 'image1'},
    {src: '//placekitten.com/4000/3000', slug: 'image2'},
    {src: '//placekitten.com/800/1200', slug: 'image3'},
    {src: '//placekitten.com/1500/1500', slug: 'image4'}
];

module.exports = React.createClass({
    getInitialState: function() {
        return {
            index: this.getIndexFromWindowUrl(),
            isOpen: false
        };
    },
    openLightbox: function() {
        this.setState({ isOpen: true });
    },
    closeLightbox: function() {
        this.setState({ isOpen: false });
    },
    setMyWindowUrl: function(slug) {
        // do url modification
        // ...
    },
    getIndexFromWindowUrl: function() {
        // get image index from your current URL
        // ...
    },
    moveNext: function() {
        var nextIndex = (this.state.index + 1) % images.length;
        this.setMyWindowUrl(images[nextIndex].slug);
        this.setState({ index: nextIndex });
    },
    movePrev: function() {
        var nextIndex = (this.state.index + images.length - 1) % images.length;
        this.setMyWindowUrl(images[nextIndex].slug);
        this.setState({ index: nextIndex });
    },
    render: function() {
        var lightbox = '';
        if (this.state.isOpen) {
            lightbox = (
                <Lightbox
                    mainSrc={images[this.state.index].src}
                    nextSrc={images[(this.state.index + 1) % images.length].src}
                    prevSrc={images[(this.state.index + images.length - 1) % images.length].src}

                    onCloseRequest={this.closeLightbox}
                    onMovePrevRequest={this.movePrev}
                    onMoveNextRequest={this.moveNext}
                />
            );
        }

        return (
            <div>
                <button type="button" onClick={this.openLightbox}>Open Lightbox</button>
                {lightbox}
            </div>
        );
    }
});

from react-image-lightbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.