2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-09-05 14:38:31 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-09-24 05:15:11 -04:00
|
|
|
import { is } from 'immutable';
|
2017-01-15 20:26:03 -05:00
|
|
|
import IconButton from './icon_button';
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2017-03-07 03:54:57 -05:00
|
|
|
import { isIOS } from '../is_mobile';
|
2017-09-23 23:58:30 -04:00
|
|
|
import classNames from 'classnames';
|
2019-10-24 16:51:41 -04:00
|
|
|
import { autoPlayGif, cropImages, displayMedia, useBlurhash } from '../initial_state';
|
2020-06-24 04:25:32 -04:00
|
|
|
import { debounce } from 'lodash';
|
2020-07-09 07:01:30 -04:00
|
|
|
import Blurhash from 'mastodon/components/blurhash';
|
2017-01-15 20:26:03 -05:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2021-05-07 19:56:40 -04:00
|
|
|
toggle_visible: { id: 'media_gallery.toggle_visible', defaultMessage: '{number, plural, one {Hide image} other {Hide images}}' },
|
2017-01-15 20:26:03 -05:00
|
|
|
});
|
2016-11-23 05:23:32 -05:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
class Item extends React.PureComponent {
|
2017-03-04 16:17:10 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
attachment: ImmutablePropTypes.map.isRequired,
|
2017-09-23 23:58:30 -04:00
|
|
|
standalone: PropTypes.bool,
|
2017-05-12 08:44:10 -04:00
|
|
|
index: PropTypes.number.isRequired,
|
|
|
|
size: PropTypes.number.isRequired,
|
|
|
|
onClick: PropTypes.func.isRequired,
|
2018-05-21 10:04:01 -04:00
|
|
|
displayWidth: PropTypes.number,
|
2019-04-26 21:24:09 -04:00
|
|
|
visible: PropTypes.bool.isRequired,
|
2020-01-18 13:50:43 -05:00
|
|
|
autoplay: PropTypes.bool,
|
2017-07-11 09:27:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-09-23 23:58:30 -04:00
|
|
|
standalone: false,
|
|
|
|
index: 0,
|
|
|
|
size: 1,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
state = {
|
|
|
|
loaded: false,
|
|
|
|
};
|
|
|
|
|
2017-07-11 09:27:59 -04:00
|
|
|
handleMouseEnter = (e) => {
|
|
|
|
if (this.hoverToPlay()) {
|
|
|
|
e.target.play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMouseLeave = (e) => {
|
|
|
|
if (this.hoverToPlay()) {
|
|
|
|
e.target.pause();
|
|
|
|
e.target.currentTime = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-18 13:50:43 -05:00
|
|
|
getAutoPlay() {
|
|
|
|
return this.props.autoplay || autoPlayGif;
|
|
|
|
}
|
|
|
|
|
2017-07-11 09:27:59 -04:00
|
|
|
hoverToPlay () {
|
2017-10-27 11:04:44 -04:00
|
|
|
const { attachment } = this.props;
|
2020-01-18 13:50:43 -05:00
|
|
|
return !this.getAutoPlay() && attachment.get('type') === 'gifv';
|
2017-07-11 09:27:59 -04:00
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleClick = (e) => {
|
2017-03-04 16:17:10 -05:00
|
|
|
const { index, onClick } = this.props;
|
|
|
|
|
2018-08-18 06:50:32 -04:00
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
2019-01-07 09:54:40 -05:00
|
|
|
if (this.hoverToPlay()) {
|
|
|
|
e.target.pause();
|
|
|
|
e.target.currentTime = 0;
|
|
|
|
}
|
2017-03-04 16:17:10 -05:00
|
|
|
e.preventDefault();
|
|
|
|
onClick(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
e.stopPropagation();
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-03-04 16:17:10 -05:00
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
handleImageLoad = () => {
|
|
|
|
this.setState({ loaded: true });
|
|
|
|
}
|
|
|
|
|
2017-03-04 16:17:10 -05:00
|
|
|
render () {
|
2019-04-26 21:24:09 -04:00
|
|
|
const { attachment, index, size, standalone, displayWidth, visible } = this.props;
|
2017-03-04 16:17:10 -05:00
|
|
|
|
|
|
|
let width = 50;
|
|
|
|
let height = 100;
|
|
|
|
let top = 'auto';
|
|
|
|
let left = 'auto';
|
|
|
|
let bottom = 'auto';
|
|
|
|
let right = 'auto';
|
|
|
|
|
|
|
|
if (size === 1) {
|
|
|
|
width = 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size === 4 || (size === 3 && index > 0)) {
|
|
|
|
height = 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size === 2) {
|
|
|
|
if (index === 0) {
|
|
|
|
right = '2px';
|
|
|
|
} else {
|
|
|
|
left = '2px';
|
|
|
|
}
|
|
|
|
} else if (size === 3) {
|
|
|
|
if (index === 0) {
|
|
|
|
right = '2px';
|
|
|
|
} else if (index > 0) {
|
|
|
|
left = '2px';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index === 1) {
|
|
|
|
bottom = '2px';
|
|
|
|
} else if (index > 1) {
|
|
|
|
top = '2px';
|
|
|
|
}
|
|
|
|
} else if (size === 4) {
|
|
|
|
if (index === 0 || index === 2) {
|
|
|
|
right = '2px';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index === 1 || index === 3) {
|
|
|
|
left = '2px';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index < 2) {
|
|
|
|
bottom = '2px';
|
|
|
|
} else {
|
|
|
|
top = '2px';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let thumbnail = '';
|
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
if (attachment.get('type') === 'unknown') {
|
|
|
|
return (
|
|
|
|
<div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={{ left: left, top: top, right: right, bottom: bottom, width: `${width}%`, height: `${height}%` }}>
|
2019-10-24 16:44:42 -04:00
|
|
|
<a className='media-gallery__item-thumbnail' href={attachment.get('remote_url') || attachment.get('url')} style={{ cursor: 'pointer' }} title={attachment.get('description')} target='_blank' rel='noopener noreferrer'>
|
2020-07-09 07:01:30 -04:00
|
|
|
<Blurhash
|
|
|
|
hash={attachment.get('blurhash')}
|
|
|
|
className='media-gallery__preview'
|
|
|
|
dummy={!useBlurhash}
|
|
|
|
/>
|
2019-04-26 21:24:09 -04:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else if (attachment.get('type') === 'image') {
|
2018-02-21 18:35:46 -05:00
|
|
|
const previewUrl = attachment.get('preview_url');
|
2017-06-27 07:46:37 -04:00
|
|
|
const previewWidth = attachment.getIn(['meta', 'small', 'width']);
|
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
const originalUrl = attachment.get('url');
|
|
|
|
const originalWidth = attachment.getIn(['meta', 'original', 'width']);
|
2017-06-27 07:46:37 -04:00
|
|
|
|
2017-07-08 11:20:53 -04:00
|
|
|
const hasSize = typeof originalWidth === 'number' && typeof previewWidth === 'number';
|
|
|
|
|
2017-09-16 09:00:01 -04:00
|
|
|
const srcSet = hasSize ? `${originalUrl} ${originalWidth}w, ${previewUrl} ${previewWidth}w` : null;
|
2018-06-24 18:12:15 -04:00
|
|
|
const sizes = hasSize && (displayWidth > 0) ? `${displayWidth * (width / 100)}px` : null;
|
2018-02-21 18:35:46 -05:00
|
|
|
|
2018-03-11 10:12:33 -04:00
|
|
|
const focusX = attachment.getIn(['meta', 'focus', 'x']) || 0;
|
|
|
|
const focusY = attachment.getIn(['meta', 'focus', 'y']) || 0;
|
|
|
|
const x = ((focusX / 2) + .5) * 100;
|
|
|
|
const y = ((focusY / -2) + .5) * 100;
|
2017-06-27 07:46:37 -04:00
|
|
|
|
2017-03-04 16:17:10 -05:00
|
|
|
thumbnail = (
|
2017-06-27 07:46:37 -04:00
|
|
|
<a
|
2017-04-22 22:26:55 -04:00
|
|
|
className='media-gallery__item-thumbnail'
|
2017-06-27 07:46:37 -04:00
|
|
|
href={attachment.get('remote_url') || originalUrl}
|
2017-03-04 16:17:10 -05:00
|
|
|
onClick={this.handleClick}
|
|
|
|
target='_blank'
|
2019-10-24 16:44:42 -04:00
|
|
|
rel='noopener noreferrer'
|
2017-06-27 07:46:37 -04:00
|
|
|
>
|
2018-02-21 18:35:46 -05:00
|
|
|
<img
|
|
|
|
src={previewUrl}
|
|
|
|
srcSet={srcSet}
|
|
|
|
sizes={sizes}
|
|
|
|
alt={attachment.get('description')}
|
|
|
|
title={attachment.get('description')}
|
2018-03-11 10:12:33 -04:00
|
|
|
style={{ objectPosition: `${x}% ${y}%` }}
|
2019-04-26 21:24:09 -04:00
|
|
|
onLoad={this.handleImageLoad}
|
2018-02-21 18:35:46 -05:00
|
|
|
/>
|
2017-06-27 07:46:37 -04:00
|
|
|
</a>
|
2017-03-04 16:17:10 -05:00
|
|
|
);
|
|
|
|
} else if (attachment.get('type') === 'gifv') {
|
2020-01-18 13:50:43 -05:00
|
|
|
const autoPlay = !isIOS() && this.getAutoPlay();
|
2017-04-17 19:57:50 -04:00
|
|
|
|
|
|
|
thumbnail = (
|
2017-09-23 23:58:30 -04:00
|
|
|
<div className={classNames('media-gallery__gifv', { autoplay: autoPlay })}>
|
2017-04-17 19:57:50 -04:00
|
|
|
<video
|
2017-04-22 22:26:55 -04:00
|
|
|
className='media-gallery__item-gifv-thumbnail'
|
2017-09-28 09:31:31 -04:00
|
|
|
aria-label={attachment.get('description')}
|
2018-08-24 17:55:41 -04:00
|
|
|
title={attachment.get('description')}
|
2017-04-22 22:26:55 -04:00
|
|
|
role='application'
|
2017-04-17 19:57:50 -04:00
|
|
|
src={attachment.get('url')}
|
|
|
|
onClick={this.handleClick}
|
2017-07-11 09:27:59 -04:00
|
|
|
onMouseEnter={this.handleMouseEnter}
|
|
|
|
onMouseLeave={this.handleMouseLeave}
|
2017-04-17 19:57:50 -04:00
|
|
|
autoPlay={autoPlay}
|
2017-06-06 07:20:07 -04:00
|
|
|
loop
|
|
|
|
muted
|
2017-04-17 19:57:50 -04:00
|
|
|
/>
|
|
|
|
|
|
|
|
<span className='media-gallery__gifv__label'>GIF</span>
|
|
|
|
</div>
|
|
|
|
);
|
2017-03-04 16:17:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-09-25 14:26:50 -04:00
|
|
|
<div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={{ left: left, top: top, right: right, bottom: bottom, width: `${width}%`, height: `${height}%` }}>
|
2020-07-09 07:01:30 -04:00
|
|
|
<Blurhash
|
|
|
|
hash={attachment.get('blurhash')}
|
|
|
|
dummy={!useBlurhash}
|
|
|
|
className={classNames('media-gallery__preview', {
|
|
|
|
'media-gallery__preview--hidden': visible && this.state.loaded,
|
|
|
|
})}
|
|
|
|
/>
|
2019-04-26 21:24:09 -04:00
|
|
|
{visible && thumbnail}
|
2017-03-04 16:17:10 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-03-04 16:17:10 -05:00
|
|
|
|
2018-09-14 11:59:48 -04:00
|
|
|
export default @injectIntl
|
|
|
|
class MediaGallery extends React.PureComponent {
|
2016-09-05 14:38:31 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
sensitive: PropTypes.bool,
|
2017-09-23 23:58:30 -04:00
|
|
|
standalone: PropTypes.bool,
|
2017-05-12 08:44:10 -04:00
|
|
|
media: ImmutablePropTypes.list.isRequired,
|
2017-09-23 23:58:30 -04:00
|
|
|
size: PropTypes.object,
|
2017-05-12 08:44:10 -04:00
|
|
|
height: PropTypes.number.isRequired,
|
|
|
|
onOpenMedia: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2019-02-11 07:19:59 -05:00
|
|
|
defaultWidth: PropTypes.number,
|
|
|
|
cacheWidth: PropTypes.func,
|
2019-05-25 17:20:51 -04:00
|
|
|
visible: PropTypes.bool,
|
2020-01-18 13:50:43 -05:00
|
|
|
autoplay: PropTypes.bool,
|
2019-05-25 17:20:51 -04:00
|
|
|
onToggleVisibility: PropTypes.func,
|
2017-07-11 09:27:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-09-23 23:58:30 -04:00
|
|
|
standalone: false,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2019-05-25 17:20:51 -04:00
|
|
|
visible: this.props.visible !== undefined ? this.props.visible : (displayMedia !== 'hide_all' && !this.props.sensitive || displayMedia === 'show_all'),
|
2019-02-11 07:19:59 -05:00
|
|
|
width: this.props.defaultWidth,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2016-09-05 14:38:31 -04:00
|
|
|
|
2020-06-24 04:25:32 -04:00
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('resize', this.handleResize, { passive: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('resize', this.handleResize);
|
|
|
|
}
|
|
|
|
|
2017-07-18 09:24:57 -04:00
|
|
|
componentWillReceiveProps (nextProps) {
|
2019-05-25 17:20:51 -04:00
|
|
|
if (!is(nextProps.media, this.props.media) && nextProps.visible === undefined) {
|
|
|
|
this.setState({ visible: displayMedia !== 'hide_all' && !nextProps.sensitive || displayMedia === 'show_all' });
|
|
|
|
} else if (!is(nextProps.visible, this.props.visible) && nextProps.visible !== undefined) {
|
|
|
|
this.setState({ visible: nextProps.visible });
|
2017-07-18 09:24:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-24 04:25:32 -04:00
|
|
|
handleResize = debounce(() => {
|
|
|
|
if (this.node) {
|
|
|
|
this._setDimensions();
|
|
|
|
}
|
|
|
|
}, 250, {
|
|
|
|
trailing: true,
|
|
|
|
});
|
|
|
|
|
2017-06-23 10:05:04 -04:00
|
|
|
handleOpen = () => {
|
2019-05-25 17:20:51 -04:00
|
|
|
if (this.props.onToggleVisibility) {
|
|
|
|
this.props.onToggleVisibility();
|
|
|
|
} else {
|
|
|
|
this.setState({ visible: !this.state.visible });
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-24 12:07:40 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleClick = (index) => {
|
2017-03-04 16:17:10 -05:00
|
|
|
this.props.onOpenMedia(this.props.media, index);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-23 05:23:32 -05:00
|
|
|
|
2020-06-24 04:25:32 -04:00
|
|
|
handleRef = c => {
|
|
|
|
this.node = c;
|
|
|
|
|
|
|
|
if (this.node) {
|
|
|
|
this._setDimensions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_setDimensions () {
|
|
|
|
const width = this.node.offsetWidth;
|
2019-04-26 21:24:09 -04:00
|
|
|
|
2020-06-24 04:25:32 -04:00
|
|
|
// offsetWidth triggers a layout, so only calculate when we need to
|
|
|
|
if (this.props.cacheWidth) {
|
|
|
|
this.props.cacheWidth(width);
|
2017-09-29 16:46:43 -04:00
|
|
|
}
|
2020-06-24 04:25:32 -04:00
|
|
|
|
|
|
|
this.setState({
|
|
|
|
width: width,
|
|
|
|
});
|
2017-09-29 16:46:43 -04:00
|
|
|
}
|
|
|
|
|
2019-10-24 16:51:41 -04:00
|
|
|
isFullSizeEligible() {
|
|
|
|
const { media } = this.props;
|
|
|
|
return media.size === 1 && media.getIn([0, 'meta', 'small', 'aspect']);
|
2017-09-29 16:46:43 -04:00
|
|
|
}
|
|
|
|
|
2016-09-05 14:38:31 -04:00
|
|
|
render () {
|
2020-01-18 13:50:43 -05:00
|
|
|
const { media, intl, sensitive, height, defaultWidth, standalone, autoplay } = this.props;
|
2019-02-11 07:19:59 -05:00
|
|
|
const { visible } = this.state;
|
|
|
|
|
|
|
|
const width = this.state.width || defaultWidth;
|
2016-09-05 19:26:35 -04:00
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
let children, spoilerButton;
|
2016-11-23 05:23:32 -05:00
|
|
|
|
2017-09-23 23:58:30 -04:00
|
|
|
const style = {};
|
|
|
|
|
2019-10-24 16:51:41 -04:00
|
|
|
if (this.isFullSizeEligible() && (standalone || !cropImages)) {
|
2018-02-18 20:39:18 -05:00
|
|
|
if (width) {
|
2017-09-29 16:46:43 -04:00
|
|
|
style.height = width / this.props.media.getIn([0, 'meta', 'small', 'aspect']);
|
|
|
|
}
|
2018-03-02 01:00:04 -05:00
|
|
|
} else if (width) {
|
|
|
|
style.height = width / (16/9);
|
2017-09-23 23:58:30 -04:00
|
|
|
} else {
|
|
|
|
style.height = height;
|
|
|
|
}
|
|
|
|
|
2019-09-01 13:43:35 -04:00
|
|
|
const size = media.take(4).size;
|
|
|
|
const uncached = media.every(attachment => attachment.get('type') === 'unknown');
|
2017-03-04 16:17:10 -05:00
|
|
|
|
2019-10-24 16:51:41 -04:00
|
|
|
if (standalone && this.isFullSizeEligible()) {
|
2020-01-18 13:50:43 -05:00
|
|
|
children = <Item standalone autoplay={autoplay} onClick={this.handleClick} attachment={media.get(0)} displayWidth={width} visible={visible} />;
|
2019-04-26 21:24:09 -04:00
|
|
|
} else {
|
2020-01-18 13:50:43 -05:00
|
|
|
children = media.take(4).map((attachment, i) => <Item key={attachment.get('id')} autoplay={autoplay} onClick={this.handleClick} attachment={attachment} index={i} size={size} displayWidth={width} visible={visible || uncached} />);
|
2019-04-26 21:24:09 -04:00
|
|
|
}
|
2017-03-04 16:17:10 -05:00
|
|
|
|
2019-09-01 13:43:35 -04:00
|
|
|
if (uncached) {
|
|
|
|
spoilerButton = (
|
|
|
|
<button type='button' disabled className='spoiler-button__overlay'>
|
|
|
|
<span className='spoiler-button__overlay__label'><FormattedMessage id='status.uncached_media_warning' defaultMessage='Not available' /></span>
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
} else if (visible) {
|
2020-05-25 06:30:34 -04:00
|
|
|
spoilerButton = <IconButton title={intl.formatMessage(messages.toggle_visible, { number: size })} icon='eye-slash' overlay onClick={this.handleOpen} />;
|
2019-04-26 21:24:09 -04:00
|
|
|
} else {
|
|
|
|
spoilerButton = (
|
|
|
|
<button type='button' onClick={this.handleOpen} className='spoiler-button__overlay'>
|
|
|
|
<span className='spoiler-button__overlay__label'>{sensitive ? <FormattedMessage id='status.sensitive_warning' defaultMessage='Sensitive content' /> : <FormattedMessage id='status.media_hidden' defaultMessage='Media hidden' />}</span>
|
2017-07-30 18:18:15 -04:00
|
|
|
</button>
|
2017-03-04 16:17:10 -05:00
|
|
|
);
|
2016-11-23 05:23:32 -05:00
|
|
|
}
|
2017-02-04 20:48:11 -05:00
|
|
|
|
2016-09-05 14:38:31 -04:00
|
|
|
return (
|
2018-02-21 18:35:46 -05:00
|
|
|
<div className='media-gallery' style={style} ref={this.handleRef}>
|
2019-09-02 22:56:40 -04:00
|
|
|
<div className={classNames('spoiler-button', { 'spoiler-button--minified': visible && !uncached, 'spoiler-button--click-thru': uncached })}>
|
2019-04-26 21:24:09 -04:00
|
|
|
{spoilerButton}
|
2017-01-19 21:24:30 -05:00
|
|
|
</div>
|
2017-03-04 16:17:10 -05:00
|
|
|
|
2016-09-05 14:38:31 -04:00
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|