2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-07-09 09:02:26 -04:00
|
|
|
import ReactSwipeableViews from 'react-swipeable-views';
|
2017-04-01 16:11:28 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-04-01 16:11:28 -04:00
|
|
|
import ExtendedVideoPlayer from '../../../components/extended_video_player';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import IconButton from '../../../components/icon_button';
|
2017-05-02 20:04:16 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-05-31 11:07:25 -04:00
|
|
|
import ImageLoader from './image_loader';
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 11:31:47 -04:00
|
|
|
close: { id: 'lightbox.close', defaultMessage: 'Close' },
|
2017-04-01 16:11:28 -04:00
|
|
|
});
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@injectIntl
|
|
|
|
export default class MediaModal extends ImmutablePureComponent {
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
media: ImmutablePropTypes.list.isRequired,
|
|
|
|
index: PropTypes.number.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2017-05-20 11:31:47 -04:00
|
|
|
index: null,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
handleSwipe = (index) => {
|
|
|
|
this.setState({ index: (index) % this.props.media.size });
|
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleNextClick = () => {
|
2017-06-01 11:25:10 -04:00
|
|
|
this.setState({ index: (this.getIndex() + 1) % this.props.media.size });
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handlePrevClick = () => {
|
2017-07-11 13:56:45 -04:00
|
|
|
this.setState({ index: (this.props.media.size + this.getIndex() - 1) % this.props.media.size });
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleKeyUp = (e) => {
|
2017-04-01 16:11:28 -04:00
|
|
|
switch(e.key) {
|
|
|
|
case 'ArrowLeft':
|
|
|
|
this.handlePrevClick();
|
|
|
|
break;
|
|
|
|
case 'ArrowRight':
|
|
|
|
this.handleNextClick();
|
|
|
|
break;
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('keyup', this.handleKeyUp, false);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('keyup', this.handleKeyUp);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
getIndex () {
|
|
|
|
return this.state.index !== null ? this.state.index : this.props.index;
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { media, intl, onClose } = this.props;
|
|
|
|
|
|
|
|
const index = this.getIndex();
|
|
|
|
|
|
|
|
let leftNav, rightNav, content;
|
|
|
|
|
|
|
|
leftNav = rightNav = content = '';
|
|
|
|
|
|
|
|
if (media.size > 1) {
|
2017-04-22 22:26:55 -04:00
|
|
|
leftNav = <div role='button' tabIndex='0' className='modal-container__nav modal-container__nav--left' onClick={this.handlePrevClick}><i className='fa fa-fw fa-chevron-left' /></div>;
|
|
|
|
rightNav = <div role='button' tabIndex='0' className='modal-container__nav modal-container__nav--right' onClick={this.handleNextClick}><i className='fa fa-fw fa-chevron-right' /></div>;
|
2017-04-01 16:11:28 -04:00
|
|
|
}
|
|
|
|
|
2017-07-13 16:18:18 -04:00
|
|
|
content = media.map((image) => {
|
|
|
|
const width = image.getIn(['meta', 'original', 'width']) || null;
|
|
|
|
const height = image.getIn(['meta', 'original', 'height']) || null;
|
2017-07-08 11:21:59 -04:00
|
|
|
|
2017-07-13 16:18:18 -04:00
|
|
|
if (image.get('type') === 'image') {
|
2017-07-09 09:02:26 -04:00
|
|
|
return <ImageLoader previewSrc={image.get('preview_url')} src={image.get('url')} width={width} height={height} key={image.get('preview_url')} />;
|
2017-07-13 16:18:18 -04:00
|
|
|
} else if (image.get('type') === 'gifv') {
|
|
|
|
return <ExtendedVideoPlayer src={image.get('url')} muted controls={false} width={width} height={height} key={image.get('preview_url')} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}).toArray();
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal media-modal'>
|
|
|
|
{leftNav}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='media-modal__content'>
|
|
|
|
<IconButton className='media-modal__close' title={intl.formatMessage(messages.close)} icon='times' onClick={onClose} size={16} />
|
2017-07-09 12:49:07 -04:00
|
|
|
<ReactSwipeableViews onChangeIndex={this.handleSwipe} index={index} animateHeight>
|
2017-06-08 11:41:43 -04:00
|
|
|
{content}
|
2017-07-09 09:02:26 -04:00
|
|
|
</ReactSwipeableViews>
|
2017-04-01 16:11:28 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{rightNav}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|