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';
|
2018-05-13 07:48:14 -04:00
|
|
|
import Video from '../../video';
|
2017-04-01 16:11:28 -04:00
|
|
|
import ExtendedVideoPlayer from '../../../components/extended_video_player';
|
2018-03-04 14:32:24 -05:00
|
|
|
import classNames from 'classnames';
|
2017-04-01 16:11:28 -04:00
|
|
|
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-07-30 18:18:15 -04:00
|
|
|
previous: { id: 'lightbox.previous', defaultMessage: 'Previous' },
|
|
|
|
next: { id: 'lightbox.next', defaultMessage: 'Next' },
|
2017-04-01 16:11:28 -04:00
|
|
|
});
|
|
|
|
|
2018-07-29 10:52:06 -04:00
|
|
|
export const previewState = 'previewMediaModal';
|
2018-07-03 10:12:05 -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
|
|
|
};
|
|
|
|
|
2018-07-03 10:12:05 -04:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
state = {
|
2017-05-20 11:31:47 -04:00
|
|
|
index: null,
|
2018-03-04 14:32:24 -05:00
|
|
|
navigationHidden: false,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
handleSwipe = (index) => {
|
2017-10-03 11:11:22 -04:00
|
|
|
this.setState({ index: index % this.props.media.size });
|
2017-07-09 09:02:26 -04:00
|
|
|
}
|
|
|
|
|
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-10-03 11:11:22 -04:00
|
|
|
handleChangeIndex = (e) => {
|
|
|
|
const index = Number(e.currentTarget.getAttribute('data-index'));
|
|
|
|
this.setState({ index: index % this.props.media.size });
|
|
|
|
}
|
|
|
|
|
2018-07-25 22:50:50 -04:00
|
|
|
handleKeyDown = (e) => {
|
2017-04-01 16:11:28 -04:00
|
|
|
switch(e.key) {
|
|
|
|
case 'ArrowLeft':
|
|
|
|
this.handlePrevClick();
|
2018-07-25 22:50:50 -04:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-04-01 16:11:28 -04:00
|
|
|
break;
|
|
|
|
case 'ArrowRight':
|
|
|
|
this.handleNextClick();
|
2018-07-25 22:50:50 -04:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-04-01 16:11:28 -04:00
|
|
|
break;
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
componentDidMount () {
|
2018-07-25 22:50:50 -04:00
|
|
|
window.addEventListener('keydown', this.handleKeyDown, false);
|
2018-07-04 09:34:28 -04:00
|
|
|
if (this.context.router) {
|
|
|
|
const history = this.context.router.history;
|
|
|
|
history.push(history.location.pathname, previewState);
|
|
|
|
this.unlistenHistory = history.listen(() => {
|
|
|
|
this.props.onClose();
|
|
|
|
});
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
componentWillUnmount () {
|
2018-07-25 22:50:50 -04:00
|
|
|
window.removeEventListener('keydown', this.handleKeyDown);
|
2018-07-04 09:34:28 -04:00
|
|
|
if (this.context.router) {
|
|
|
|
this.unlistenHistory();
|
2018-07-03 10:12:05 -04:00
|
|
|
|
2018-07-04 09:34:28 -04:00
|
|
|
if (this.context.router.history.location.state === previewState) {
|
|
|
|
this.context.router.history.goBack();
|
|
|
|
}
|
2018-07-03 10:12:05 -04:00
|
|
|
}
|
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
|
|
|
|
2018-03-04 14:32:24 -05:00
|
|
|
toggleNavigation = () => {
|
|
|
|
this.setState(prevState => ({
|
|
|
|
navigationHidden: !prevState.navigationHidden,
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
render () {
|
|
|
|
const { media, intl, onClose } = this.props;
|
2018-03-04 14:32:24 -05:00
|
|
|
const { navigationHidden } = this.state;
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
const index = this.getIndex();
|
2017-10-03 11:11:22 -04:00
|
|
|
let pagination = [];
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2018-03-04 14:32:24 -05:00
|
|
|
const leftNav = media.size > 1 && <button tabIndex='0' className='media-modal__nav media-modal__nav--left' onClick={this.handlePrevClick} aria-label={intl.formatMessage(messages.previous)}><i className='fa fa-fw fa-chevron-left' /></button>;
|
|
|
|
const rightNav = media.size > 1 && <button tabIndex='0' className='media-modal__nav media-modal__nav--right' onClick={this.handleNextClick} aria-label={intl.formatMessage(messages.next)}><i className='fa fa-fw fa-chevron-right' /></button>;
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-10-03 11:11:22 -04:00
|
|
|
if (media.size > 1) {
|
|
|
|
pagination = media.map((item, i) => {
|
|
|
|
const classes = ['media-modal__button'];
|
|
|
|
if (i === index) {
|
|
|
|
classes.push('media-modal__button--active');
|
|
|
|
}
|
|
|
|
return (<li className='media-modal__page-dot' key={i}><button tabIndex='0' className={classes.join(' ')} onClick={this.handleChangeIndex} data-index={i}>{i + 1}</button></li>);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-07-30 18:18:15 -04:00
|
|
|
const content = media.map((image) => {
|
2017-07-13 16:18:18 -04:00
|
|
|
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') {
|
2018-03-04 14:32:24 -05:00
|
|
|
return (
|
|
|
|
<ImageLoader
|
|
|
|
previewSrc={image.get('preview_url')}
|
|
|
|
src={image.get('url')}
|
|
|
|
width={width}
|
|
|
|
height={height}
|
|
|
|
alt={image.get('description')}
|
|
|
|
key={image.get('url')}
|
|
|
|
onClick={this.toggleNavigation}
|
|
|
|
/>
|
|
|
|
);
|
2018-05-13 07:48:14 -04:00
|
|
|
} else if (image.get('type') === 'video') {
|
|
|
|
const { time } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Video
|
|
|
|
preview={image.get('preview_url')}
|
|
|
|
src={image.get('url')}
|
|
|
|
width={image.get('width')}
|
|
|
|
height={image.get('height')}
|
|
|
|
startTime={time || 0}
|
|
|
|
onCloseVideo={onClose}
|
|
|
|
detailed
|
|
|
|
description={image.get('description')}
|
|
|
|
key={image.get('url')}
|
|
|
|
/>
|
|
|
|
);
|
2017-07-13 16:18:18 -04:00
|
|
|
} else if (image.get('type') === 'gifv') {
|
2018-03-04 14:32:24 -05:00
|
|
|
return (
|
|
|
|
<ExtendedVideoPlayer
|
|
|
|
src={image.get('url')}
|
|
|
|
muted
|
|
|
|
controls={false}
|
|
|
|
width={width}
|
|
|
|
height={height}
|
|
|
|
key={image.get('preview_url')}
|
|
|
|
alt={image.get('description')}
|
|
|
|
onClick={this.toggleNavigation}
|
|
|
|
/>
|
|
|
|
);
|
2017-07-13 16:18:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}).toArray();
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2018-03-11 22:52:05 -04:00
|
|
|
// you can't use 100vh, because the viewport height is taller
|
|
|
|
// than the visible part of the document in some mobile
|
|
|
|
// browsers when it's address bar is visible.
|
|
|
|
// https://developers.google.com/web/updates/2016/12/url-bar-resizing
|
|
|
|
const swipeableViewsStyle = {
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
};
|
|
|
|
|
2017-09-28 14:43:18 -04:00
|
|
|
const containerStyle = {
|
|
|
|
alignItems: 'center', // center vertically
|
|
|
|
};
|
|
|
|
|
2018-03-04 14:32:24 -05:00
|
|
|
const navigationClassName = classNames('media-modal__navigation', {
|
|
|
|
'media-modal__navigation--hidden': navigationHidden,
|
|
|
|
});
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
return (
|
|
|
|
<div className='modal-root__modal media-modal'>
|
2018-03-04 14:32:24 -05:00
|
|
|
<div
|
|
|
|
className='media-modal__closer'
|
|
|
|
role='presentation'
|
|
|
|
onClick={onClose}
|
|
|
|
>
|
2018-03-11 22:52:05 -04:00
|
|
|
<ReactSwipeableViews
|
|
|
|
style={swipeableViewsStyle}
|
|
|
|
containerStyle={containerStyle}
|
|
|
|
onChangeIndex={this.handleSwipe}
|
|
|
|
onSwitching={this.handleSwitching}
|
|
|
|
index={index}
|
|
|
|
>
|
|
|
|
{content}
|
|
|
|
</ReactSwipeableViews>
|
2018-03-04 14:32:24 -05:00
|
|
|
</div>
|
|
|
|
<div className={navigationClassName}>
|
|
|
|
<IconButton className='media-modal__close' title={intl.formatMessage(messages.close)} icon='times' onClick={onClose} size={40} />
|
|
|
|
{leftNav}
|
|
|
|
{rightNav}
|
|
|
|
<ul className='media-modal__pagination'>
|
|
|
|
{pagination}
|
|
|
|
</ul>
|
2017-04-01 16:11:28 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|