Created
October 19, 2017 14:28
-
-
Save lauterry/cd3cef520644b1413471d5841645c597 to your computer and use it in GitHub Desktop.
Handle Lazy Loading with Nuka Carousel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PhotoCarousel extends React.Component { | |
constructor() { | |
super(); | |
this.state = { | |
currentSlideIndex: 0 // track the index of the current slide | |
}; | |
this.handleAfterSlide = this.handleAfterSlide.bind(this); | |
} | |
handleAfterSlide(newSlideIndex) { | |
this.setState({ | |
currentSlideIndex: newSlideIndex | |
}); | |
} | |
render() { | |
const {photos = [], isSlideshowMode = false} = this.props; | |
const photosNodes = photos.map((photo, key) => { | |
// this is the trick : only show the 2 next img from the current slide position | |
// On mount, only the first 2 images are loaded, then each time the user go to the next slide | |
// we load the next 2 images | |
if (key <= this.state.currentSlideIndex + 2) { | |
return <img key={ key } src={ src } alt={ photo.alt }/>; | |
} | |
return <div></div>; | |
}); | |
return ( | |
<Carousel | |
className="hero-carousel" | |
ref="slideshow" | |
afterSlide={ this.handleAfterSlide } | |
decorators={ decorators } | |
> | |
{ photosNodes } | |
</Carousel> | |
); | |
} | |
} | |
PhotoCarousel.propTypes = { | |
photos: PropTypes.arrayOf(photoPropTypes), | |
isSlideshowMode: PropTypes.bool | |
}; | |
export default registerStyle(style)(PhotoCarousel); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment