mastodon/app/javascript/mastodon/features/ui/components/media_modal.js

102 lines
3.1 KiB
JavaScript
Raw Normal View History

import React from 'react';
2017-06-08 15:41:43 +00:00
import ReactSwipeable from 'react-swipeable';
2017-04-01 20:11:28 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import PropTypes from 'prop-types';
2017-04-01 20:11:28 +00:00
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';
2017-04-01 20:11:28 +00:00
const messages = defineMessages({
close: { id: 'lightbox.close', defaultMessage: 'Close' },
2017-04-01 20:11:28 +00:00
});
@injectIntl
export default class MediaModal extends ImmutablePureComponent {
2017-04-01 20:11:28 +00:00
static propTypes = {
media: ImmutablePropTypes.list.isRequired,
index: PropTypes.number.isRequired,
onClose: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
};
state = {
index: null,
};
handleNextClick = () => {
this.setState({ index: (this.getIndex() + 1) % this.props.media.size });
}
2017-04-01 20:11:28 +00:00
handlePrevClick = () => {
this.setState({ index: (this.getIndex() - 1) % this.props.media.size });
}
2017-04-01 20:11:28 +00:00
handleKeyUp = (e) => {
2017-04-01 20:11:28 +00:00
switch(e.key) {
case 'ArrowLeft':
this.handlePrevClick();
break;
case 'ArrowRight':
this.handleNextClick();
break;
}
}
2017-04-01 20:11:28 +00:00
componentDidMount () {
window.addEventListener('keyup', this.handleKeyUp, false);
}
2017-04-01 20:11:28 +00:00
componentWillUnmount () {
window.removeEventListener('keyup', this.handleKeyUp);
}
2017-04-01 20:11:28 +00:00
getIndex () {
return this.state.index !== null ? this.state.index : this.props.index;
}
2017-04-01 20:11:28 +00:00
render () {
const { media, intl, onClose } = this.props;
const index = this.getIndex();
const attachment = media.get(index);
const url = attachment.get('url');
let leftNav, rightNav, content;
leftNav = rightNav = content = '';
if (media.size > 1) {
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 20:11:28 +00:00
}
if (attachment.get('type') === 'image') {
const width = attachment.getIn(['meta', 'original', 'width']) || null;
const height = attachment.getIn(['meta', 'original', 'height']) || null;
content = <ImageLoader previewSrc={attachment.get('preview_url')} src={url} width={width} height={height} />;
2017-04-01 20:11:28 +00:00
} else if (attachment.get('type') === 'gifv') {
content = <ExtendedVideoPlayer src={url} muted controls={false} />;
2017-04-01 20:11:28 +00:00
}
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} />
2017-06-08 15:41:43 +00:00
<ReactSwipeable onSwipedRight={this.handlePrevClick} onSwipedLeft={this.handleNextClick}>
{content}
</ReactSwipeable>
2017-04-01 20:11:28 +00:00
</div>
{rightNav}
</div>
);
}
}