2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-09-05 18:38:31 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-09-24 09:15:11 +00:00
|
|
|
import { is } from 'immutable';
|
2017-01-16 01:26:03 +00:00
|
|
|
import IconButton from './icon_button';
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2017-03-07 08:54:57 +00:00
|
|
|
import { isIOS } from '../is_mobile';
|
2017-09-24 03:58:30 +00:00
|
|
|
import classNames from 'classnames';
|
2018-02-08 23:26:57 +00:00
|
|
|
import { autoPlayGif, displaySensitiveMedia } from '../initial_state';
|
2017-01-16 01:26:03 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 15:31:47 +00:00
|
|
|
toggle_visible: { id: 'media_gallery.toggle_visible', defaultMessage: 'Toggle visibility' },
|
2017-01-16 01:26:03 +00:00
|
|
|
});
|
2016-11-23 10:23:32 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class Item extends React.PureComponent {
|
2017-03-04 21:17:10 +00:00
|
|
|
|
2017-07-11 13:27:59 +00:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
attachment: ImmutablePropTypes.map.isRequired,
|
2017-09-24 03:58:30 +00:00
|
|
|
standalone: PropTypes.bool,
|
2017-05-12 12:44:10 +00:00
|
|
|
index: PropTypes.number.isRequired,
|
|
|
|
size: PropTypes.number.isRequired,
|
|
|
|
onClick: PropTypes.func.isRequired,
|
2017-07-11 13:27:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-09-24 03:58:30 +00:00
|
|
|
standalone: false,
|
|
|
|
index: 0,
|
|
|
|
size: 1,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-07-11 13:27:59 +00:00
|
|
|
handleMouseEnter = (e) => {
|
|
|
|
if (this.hoverToPlay()) {
|
|
|
|
e.target.play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMouseLeave = (e) => {
|
|
|
|
if (this.hoverToPlay()) {
|
|
|
|
e.target.pause();
|
|
|
|
e.target.currentTime = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hoverToPlay () {
|
2017-10-27 15:04:44 +00:00
|
|
|
const { attachment } = this.props;
|
2017-07-11 13:27:59 +00:00
|
|
|
return !autoPlayGif && attachment.get('type') === 'gifv';
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleClick = (e) => {
|
2017-03-04 21:17:10 +00:00
|
|
|
const { index, onClick } = this.props;
|
|
|
|
|
2017-07-11 13:27:59 +00:00
|
|
|
if (this.context.router && e.button === 0) {
|
2017-03-04 21:17:10 +00:00
|
|
|
e.preventDefault();
|
|
|
|
onClick(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
e.stopPropagation();
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-04 21:17:10 +00:00
|
|
|
|
|
|
|
render () {
|
2017-09-24 03:58:30 +00:00
|
|
|
const { attachment, index, size, standalone } = this.props;
|
2017-03-04 21:17:10 +00: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 = '';
|
|
|
|
|
|
|
|
if (attachment.get('type') === 'image') {
|
2017-06-27 11:46:37 +00:00
|
|
|
const previewUrl = attachment.get('preview_url');
|
|
|
|
const previewWidth = attachment.getIn(['meta', 'small', 'width']);
|
|
|
|
|
|
|
|
const originalUrl = attachment.get('url');
|
|
|
|
const originalWidth = attachment.getIn(['meta', 'original', 'width']);
|
|
|
|
|
2017-07-08 15:20:53 +00:00
|
|
|
const hasSize = typeof originalWidth === 'number' && typeof previewWidth === 'number';
|
|
|
|
|
2017-09-16 13:00:01 +00:00
|
|
|
const srcSet = hasSize ? `${originalUrl} ${originalWidth}w, ${previewUrl} ${previewWidth}w` : null;
|
|
|
|
const sizes = hasSize ? `(min-width: 1025px) ${320 * (width / 100)}px, ${width}vw` : null;
|
2017-06-27 11:46:37 +00:00
|
|
|
|
2017-03-04 21:17:10 +00:00
|
|
|
thumbnail = (
|
2017-06-27 11:46:37 +00:00
|
|
|
<a
|
2017-04-23 02:26:55 +00:00
|
|
|
className='media-gallery__item-thumbnail'
|
2017-06-27 11:46:37 +00:00
|
|
|
href={attachment.get('remote_url') || originalUrl}
|
2017-03-04 21:17:10 +00:00
|
|
|
onClick={this.handleClick}
|
|
|
|
target='_blank'
|
2017-06-27 11:46:37 +00:00
|
|
|
>
|
2017-09-30 22:35:49 +00:00
|
|
|
<img src={previewUrl} srcSet={srcSet} sizes={sizes} alt={attachment.get('description')} title={attachment.get('description')} />
|
2017-06-27 11:46:37 +00:00
|
|
|
</a>
|
2017-03-04 21:17:10 +00:00
|
|
|
);
|
|
|
|
} else if (attachment.get('type') === 'gifv') {
|
2017-10-27 15:04:44 +00:00
|
|
|
const autoPlay = !isIOS() && autoPlayGif;
|
2017-04-17 23:57:50 +00:00
|
|
|
|
|
|
|
thumbnail = (
|
2017-09-24 03:58:30 +00:00
|
|
|
<div className={classNames('media-gallery__gifv', { autoplay: autoPlay })}>
|
2017-04-17 23:57:50 +00:00
|
|
|
<video
|
2017-04-23 02:26:55 +00:00
|
|
|
className='media-gallery__item-gifv-thumbnail'
|
2017-09-28 13:31:31 +00:00
|
|
|
aria-label={attachment.get('description')}
|
2017-04-23 02:26:55 +00:00
|
|
|
role='application'
|
2017-04-17 23:57:50 +00:00
|
|
|
src={attachment.get('url')}
|
|
|
|
onClick={this.handleClick}
|
2017-07-11 13:27:59 +00:00
|
|
|
onMouseEnter={this.handleMouseEnter}
|
|
|
|
onMouseLeave={this.handleMouseLeave}
|
2017-04-17 23:57:50 +00:00
|
|
|
autoPlay={autoPlay}
|
2017-06-06 11:20:07 +00:00
|
|
|
loop
|
|
|
|
muted
|
2017-04-17 23:57:50 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<span className='media-gallery__gifv__label'>GIF</span>
|
|
|
|
</div>
|
|
|
|
);
|
2017-03-04 21:17:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-09-25 18:26:50 +00: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}%` }}>
|
2017-03-04 21:17:10 +00:00
|
|
|
{thumbnail}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-04 21:17:10 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@injectIntl
|
|
|
|
export default class MediaGallery extends React.PureComponent {
|
2016-09-05 18:38:31 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
sensitive: PropTypes.bool,
|
2017-09-24 03:58:30 +00:00
|
|
|
standalone: PropTypes.bool,
|
2017-05-12 12:44:10 +00:00
|
|
|
media: ImmutablePropTypes.list.isRequired,
|
2017-09-24 03:58:30 +00:00
|
|
|
size: PropTypes.object,
|
2017-05-12 12:44:10 +00:00
|
|
|
height: PropTypes.number.isRequired,
|
|
|
|
onOpenMedia: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2017-07-11 13:27:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-09-24 03:58:30 +00:00
|
|
|
standalone: false,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2018-02-08 23:26:57 +00:00
|
|
|
visible: !this.props.sensitive || displaySensitiveMedia,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2016-09-05 18:38:31 +00:00
|
|
|
|
2017-07-18 13:24:57 +00:00
|
|
|
componentWillReceiveProps (nextProps) {
|
2017-09-24 09:15:11 +00:00
|
|
|
if (!is(nextProps.media, this.props.media)) {
|
2017-07-18 13:24:57 +00:00
|
|
|
this.setState({ visible: !nextProps.sensitive });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-23 14:05:04 +00:00
|
|
|
handleOpen = () => {
|
2017-03-04 21:17:10 +00:00
|
|
|
this.setState({ visible: !this.state.visible });
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-24 16:07:40 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleClick = (index) => {
|
2017-03-04 21:17:10 +00:00
|
|
|
this.props.onOpenMedia(this.props.media, index);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-23 10:23:32 +00:00
|
|
|
|
2017-09-29 20:46:43 +00:00
|
|
|
handleRef = (node) => {
|
|
|
|
if (node && this.isStandaloneEligible()) {
|
|
|
|
// offsetWidth triggers a layout, so only calculate when we need to
|
|
|
|
this.setState({
|
|
|
|
width: node.offsetWidth,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
isStandaloneEligible() {
|
|
|
|
const { media, standalone } = this.props;
|
|
|
|
return standalone && media.size === 1 && media.getIn([0, 'meta', 'small', 'aspect']);
|
|
|
|
}
|
|
|
|
|
2016-09-05 18:38:31 +00:00
|
|
|
render () {
|
2017-09-29 20:46:43 +00:00
|
|
|
const { media, intl, sensitive, height } = this.props;
|
|
|
|
const { width, visible } = this.state;
|
2016-09-05 23:26:35 +00:00
|
|
|
|
2016-11-23 10:23:32 +00:00
|
|
|
let children;
|
|
|
|
|
2017-09-24 03:58:30 +00:00
|
|
|
const style = {};
|
|
|
|
|
2017-09-29 20:46:43 +00:00
|
|
|
if (this.isStandaloneEligible()) {
|
2018-02-19 01:39:18 +00:00
|
|
|
if (width) {
|
2017-09-29 20:46:43 +00:00
|
|
|
style.height = width / this.props.media.getIn([0, 'meta', 'small', 'aspect']);
|
|
|
|
}
|
2017-09-24 03:58:30 +00:00
|
|
|
} else {
|
2017-09-29 20:46:43 +00:00
|
|
|
// crop the image
|
2017-09-24 03:58:30 +00:00
|
|
|
style.height = height;
|
|
|
|
}
|
|
|
|
|
2017-09-29 20:46:43 +00:00
|
|
|
if (!visible) {
|
2017-03-04 21:17:10 +00:00
|
|
|
let warning;
|
|
|
|
|
2017-01-20 02:24:30 +00:00
|
|
|
if (sensitive) {
|
2017-03-04 21:17:10 +00:00
|
|
|
warning = <FormattedMessage id='status.sensitive_warning' defaultMessage='Sensitive content' />;
|
2017-01-20 02:24:30 +00:00
|
|
|
} else {
|
2017-03-04 21:17:10 +00:00
|
|
|
warning = <FormattedMessage id='status.media_hidden' defaultMessage='Media hidden' />;
|
2017-01-20 02:24:30 +00:00
|
|
|
}
|
2017-03-04 21:17:10 +00:00
|
|
|
|
|
|
|
children = (
|
2018-02-15 03:40:42 +00:00
|
|
|
<button type='button' className='media-spoiler' onClick={this.handleOpen} style={style} ref={this.handleRef}>
|
2017-04-23 02:26:55 +00:00
|
|
|
<span className='media-spoiler__warning'>{warning}</span>
|
|
|
|
<span className='media-spoiler__trigger'><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span>
|
2017-07-30 22:18:15 +00:00
|
|
|
</button>
|
2017-03-04 21:17:10 +00:00
|
|
|
);
|
2016-11-23 10:23:32 +00:00
|
|
|
} else {
|
|
|
|
const size = media.take(4).size;
|
2017-09-24 03:58:30 +00:00
|
|
|
|
2017-09-29 20:46:43 +00:00
|
|
|
if (this.isStandaloneEligible()) {
|
2017-10-27 15:04:44 +00:00
|
|
|
children = <Item standalone onClick={this.handleClick} attachment={media.get(0)} />;
|
2017-09-24 03:58:30 +00:00
|
|
|
} else {
|
2017-10-27 15:04:44 +00:00
|
|
|
children = media.take(4).map((attachment, i) => <Item key={attachment.get('id')} onClick={this.handleClick} attachment={attachment} index={i} size={size} />);
|
2017-09-24 03:58:30 +00:00
|
|
|
}
|
2016-11-23 10:23:32 +00:00
|
|
|
}
|
2017-02-05 01:48:11 +00:00
|
|
|
|
2016-09-05 18:38:31 +00:00
|
|
|
return (
|
2017-09-24 03:58:30 +00:00
|
|
|
<div className='media-gallery' style={style}>
|
2017-09-29 20:46:43 +00:00
|
|
|
<div className={classNames('spoiler-button', { 'spoiler-button--visible': visible })}>
|
|
|
|
<IconButton title={intl.formatMessage(messages.toggle_visible)} icon={visible ? 'eye' : 'eye-slash'} overlay onClick={this.handleOpen} />
|
2017-01-20 02:24:30 +00:00
|
|
|
</div>
|
2017-03-04 21:17:10 +00:00
|
|
|
|
2016-09-05 18:38:31 +00:00
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|