Code Monkey home page Code Monkey logo

Comments (5)

fritz-c avatar fritz-c commented on July 18, 2024

Thanks for the feedback! (And sorry I took so long to notice your comment - I think I've fixed my notifications now).

I'll see if I can get to this over the weekend.

from react-image-lightbox.

fritz-c avatar fritz-c commented on July 18, 2024

This feature is now available in 2.1.0 using clickOutsideToClose. Hope it helps!

from react-image-lightbox.

pierreavizou avatar pierreavizou commented on July 18, 2024

Great, just tested and already love it, thanks for implementing this so quickly :)

from react-image-lightbox.

havesomeleeway avatar havesomeleeway commented on July 18, 2024

I know this is an old issue but I'm trying to figure out how to add clickOutsideToClose to my code

import React from "react";
import Lightbox from "react-image-lightbox";
import { array, bool, func, number, object } from "prop-types";

const Gallery = props => {
  const images = props.galleryImages;
  const imagesIds = props.galleryImagesIds;
  const index = props.index;

  const GalleryComponent = props.open ? (
    <Lightbox
      reactModalStyle={{ overlay: { zIndex: 2000 } }}
      mainSrc={images[imagesIds[index]]}
      nextSrc={
        index + 1 === imagesIds.length ? (
          undefined
        ) : (
          images[imagesIds[(index + 1) % imagesIds.length]]
        )
      }
      prevSrc={
        index === 0 ? (
          undefined
        ) : (
          images[imagesIds[(index + imagesIds.length - 1) % imagesIds.length]]
        )
      }
      onCloseRequest={props.onClose}
      onMovePrevRequest={props.onPrev}
      onMoveNextRequest={props.onNext}
      imageTitle={props.titleImages[imagesIds[index]]}
      imagePadding={50}
    />
  ) : null;

  return GalleryComponent;
};

Gallery.defaultProps = {
  galleryImages: {}, // object of images, b/c we need to load asyn to get each image
  galleryImagesIds: [], // array of imagesIds, b/c we need to load asyn to get each image
  open: false,
  titleImages: {}, // object of images, b/c we need to load asyn to get each image
};

Gallery.propTypes = {
  galleryImages: object,
  galleryImagesIds: array,
  index: number.isRequired,
  onClose: func.isRequired,
  onNext: func.isRequired,
  onPrev: func.isRequired,
  open: bool,
  titleImages: object,
};

export default Gallery;

from react-image-lightbox.

DeekshaPandit avatar DeekshaPandit commented on July 18, 2024

I know this is an old issue but I'm trying to figure out how to add clickOutsideToClose to my code

import React from "react";
import Lightbox from "react-image-lightbox";
import { array, bool, func, number, object } from "prop-types";

const Gallery = props => {
  const images = props.galleryImages;
  const imagesIds = props.galleryImagesIds;
  const index = props.index;

  const GalleryComponent = props.open ? (
    <Lightbox
      reactModalStyle={{ overlay: { zIndex: 2000 } }}
      mainSrc={images[imagesIds[index]]}
      nextSrc={
        index + 1 === imagesIds.length ? (
          undefined
        ) : (
          images[imagesIds[(index + 1) % imagesIds.length]]
        )
      }
      prevSrc={
        index === 0 ? (
          undefined
        ) : (
          images[imagesIds[(index + imagesIds.length - 1) % imagesIds.length]]
        )
      }
      onCloseRequest={props.onClose}
      onMovePrevRequest={props.onPrev}
      onMoveNextRequest={props.onNext}
      imageTitle={props.titleImages[imagesIds[index]]}
      imagePadding={50}
    />
  ) : null;

  return GalleryComponent;
};

Gallery.defaultProps = {
  galleryImages: {}, // object of images, b/c we need to load asyn to get each image
  galleryImagesIds: [], // array of imagesIds, b/c we need to load asyn to get each image
  open: false,
  titleImages: {}, // object of images, b/c we need to load asyn to get each image
};

Gallery.propTypes = {
  galleryImages: object,
  galleryImagesIds: array,
  index: number.isRequired,
  onClose: func.isRequired,
  onNext: func.isRequired,
  onPrev: func.isRequired,
  open: bool,
  titleImages: object,
};

export default Gallery;

Hi,

I have implemented the same and in the documentation, it is given that default value of onClickOutsideToClose is true. it should work automatically. did you succeed in this?

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.