2016-10-24 18:07:40 +02:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { closeModal } from '../../../actions/modal';
|
2016-11-07 18:23:36 +01:00
|
|
|
import Lightbox from '../../../components/lightbox';
|
2016-10-24 18:07:40 +02:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
url: state.getIn(['modal', 'url']),
|
|
|
|
isVisible: state.getIn(['modal', 'open'])
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onCloseClicked () {
|
|
|
|
dispatch(closeModal());
|
|
|
|
},
|
|
|
|
|
|
|
|
onOverlayClicked () {
|
|
|
|
dispatch(closeModal());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-11-07 18:23:36 +01:00
|
|
|
const imageStyle = {
|
|
|
|
display: 'block',
|
2016-11-10 23:21:24 +01:00
|
|
|
maxWidth: '80vw',
|
|
|
|
maxHeight: '80vh'
|
2016-10-24 18:07:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const Modal = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
url: React.PropTypes.string,
|
|
|
|
isVisible: React.PropTypes.bool,
|
|
|
|
onCloseClicked: React.PropTypes.func,
|
|
|
|
onOverlayClicked: React.PropTypes.func
|
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { url, ...other } = this.props;
|
|
|
|
|
|
|
|
return (
|
2016-11-07 18:23:36 +01:00
|
|
|
<Lightbox {...other}>
|
|
|
|
<img src={url} style={imageStyle} />
|
|
|
|
</Lightbox>
|
2016-10-24 18:07:40 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Modal);
|