You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.5 KiB
103 lines
3.5 KiB
import React from 'react'; |
|
import ReactSwipeableViews from 'react-swipeable-views'; |
|
import ImmutablePropTypes from 'react-immutable-proptypes'; |
|
import PropTypes from 'prop-types'; |
|
import ExtendedVideoPlayer from '../../../components/extended_video_player'; |
|
import { defineMessages, injectIntl } from 'react-intl'; |
|
import IconButton from '../../../components/icon_button'; |
|
import ImmutablePureComponent from 'react-immutable-pure-component'; |
|
import ImageLoader from './image_loader'; |
|
|
|
const messages = defineMessages({ |
|
close: { id: 'lightbox.close', defaultMessage: 'Close' }, |
|
previous: { id: 'lightbox.previous', defaultMessage: 'Previous' }, |
|
next: { id: 'lightbox.next', defaultMessage: 'Next' }, |
|
}); |
|
|
|
@injectIntl |
|
export default class MediaModal extends ImmutablePureComponent { |
|
|
|
static propTypes = { |
|
media: ImmutablePropTypes.list.isRequired, |
|
index: PropTypes.number.isRequired, |
|
onClose: PropTypes.func.isRequired, |
|
intl: PropTypes.object.isRequired, |
|
}; |
|
|
|
state = { |
|
index: null, |
|
}; |
|
|
|
handleSwipe = (index) => { |
|
this.setState({ index: (index) % this.props.media.size }); |
|
} |
|
|
|
handleNextClick = () => { |
|
this.setState({ index: (this.getIndex() + 1) % this.props.media.size }); |
|
} |
|
|
|
handlePrevClick = () => { |
|
this.setState({ index: (this.props.media.size + this.getIndex() - 1) % this.props.media.size }); |
|
} |
|
|
|
handleKeyUp = (e) => { |
|
switch(e.key) { |
|
case 'ArrowLeft': |
|
this.handlePrevClick(); |
|
break; |
|
case 'ArrowRight': |
|
this.handleNextClick(); |
|
break; |
|
} |
|
} |
|
|
|
componentDidMount () { |
|
window.addEventListener('keyup', this.handleKeyUp, false); |
|
} |
|
|
|
componentWillUnmount () { |
|
window.removeEventListener('keyup', this.handleKeyUp); |
|
} |
|
|
|
getIndex () { |
|
return this.state.index !== null ? this.state.index : this.props.index; |
|
} |
|
|
|
render () { |
|
const { media, intl, onClose } = this.props; |
|
|
|
const index = this.getIndex(); |
|
|
|
const leftNav = media.size > 1 && <button tabIndex='0' className='modal-container__nav modal-container__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='modal-container__nav modal-container__nav--right' onClick={this.handleNextClick} aria-label={intl.formatMessage(messages.next)}><i className='fa fa-fw fa-chevron-right' /></button>; |
|
|
|
const content = media.map((image) => { |
|
const width = image.getIn(['meta', 'original', 'width']) || null; |
|
const height = image.getIn(['meta', 'original', 'height']) || null; |
|
|
|
if (image.get('type') === 'image') { |
|
return <ImageLoader previewSrc={image.get('preview_url')} src={image.get('url')} width={width} height={height} key={image.get('preview_url')} />; |
|
} 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(); |
|
|
|
return ( |
|
<div className='modal-root__modal media-modal'> |
|
{leftNav} |
|
|
|
<div className='media-modal__content'> |
|
<IconButton className='media-modal__close' title={intl.formatMessage(messages.close)} icon='times' onClick={onClose} size={16} /> |
|
<ReactSwipeableViews onChangeIndex={this.handleSwipe} index={index} animateHeight> |
|
{content} |
|
</ReactSwipeableViews> |
|
</div> |
|
|
|
{rightNav} |
|
</div> |
|
); |
|
} |
|
|
|
}
|
|
|