lightbox-react:
^0.3.7
Code:
import React, { Component } from 'react';
import Lightbox from 'lightbox-react';
import 'lightbox-react/style.css';
const Video = () => (
<iframe
title="cats"
width="560"
height="315"
src="https://www.youtube.com/embed/5dsGWM5XGdg"
style={{
maxWidth: '97%',
position: 'absolute',
left: 0,
right: 0,
margin: 'auto',
top: '50%',
transform: 'translateY(-50%)',
}}
/>
);
const images = [
Video,
'//placekitten.com/1500/500',
'//placekitten.com/4000/3000',
'//placekitten.com/800/1200',
'//placekitten.com/1500/1500',
];
export class LightboxComponent extends Component {
constructor(props) {
super(props);
this.state = {
photoIndex: 0,
isOpen: false,
};
}
render() {
const { photoIndex, isOpen } = this.state;
return (
<div>
<button type="button" onClick={() => this.setState({ isOpen: true })}>
Open Lightbox
</button>
{isOpen && (
<Lightbox
mainSrc={images[photoIndex]}
nextSrc={images[(photoIndex + 1) % images.length]}
prevSrc={images[(photoIndex + images.length - 1) % images.length]}
onCloseRequest={() => this.setState({ isOpen: false })}
onMovePrevRequest={() =>
this.setState({
photoIndex: (photoIndex + images.length - 1) % images.length,
})
}
onMoveNextRequest={() =>
this.setState({
photoIndex: (photoIndex + 1) % images.length,
})
}
/>
)}
</div>
);
}
}
export default LightboxComponent;
Effect:
images inside ril-inner are rendered correctly, but div with iframe does not appear inside ril-inner.
<div class="ril-inner ril__inner">
<!-- <div> with <iframe> does not appear here -->
<img class="ril-image-current ril__image" ... />
<img class="ril-image-prev ril__imagePrev ril__image" ... />
</div>
Everything works fine on the demo page (iframe with div appear inside ril-inner) http://treyhuffine.com/lightbox-react/
<div class="inner ril-inner inner___1rfRQ">
<img class="image-next ril-image-next imageNext___1uRqJ image___2FLq2" ... />
<!-- it is OK! -->
<div class="image-current ril-image-current image___2FLq2">
<iframe ...></iframe>
</div>
<img class="image-prev ril-image-prev imagePrev___F6xVQ image___2FLq2" .../>
</div>
I can not tell what are the differences between the version presented on the demo and v0.3.7. If anyone knows, please let me know :)
lightbox-react:
^0.3.7
Code:
Effect:
images inside ril-inner are rendered correctly, but div with iframe does not appear inside ril-inner.
Everything works fine on the demo page (iframe with div appear inside ril-inner) http://treyhuffine.com/lightbox-react/
I can not tell what are the differences between the version presented on the demo and v0.3.7. If anyone knows, please let me know :)