2017-07-12 10:02:51 +02:00
|
|
|
// Package imports //
|
2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2016-09-17 18:05:02 +02:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-23 11:23:32 +01:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2017-07-12 10:02:51 +02:00
|
|
|
|
|
|
|
// Mastodon imports //
|
|
|
|
import IconButton from '../../../mastodon/components/icon_button';
|
|
|
|
import { isIOS } from '../../../mastodon/is_mobile';
|
2016-11-18 15:36:16 +01:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-01-20 03:24:30 +01:00
|
|
|
toggle_sound: { id: 'video_player.toggle_sound', defaultMessage: 'Toggle sound' },
|
2017-04-13 15:04:18 +02:00
|
|
|
toggle_visible: { id: 'video_player.toggle_visible', defaultMessage: 'Toggle visibility' },
|
2017-04-16 01:12:47 +02:00
|
|
|
expand_video: { id: 'video_player.expand', defaultMessage: 'Expand video' },
|
2016-11-18 15:36:16 +01:00
|
|
|
});
|
2016-09-17 18:05:02 +02:00
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
@injectIntl
|
2017-07-13 11:40:16 +02:00
|
|
|
export default class StatusPlayer extends React.PureComponent {
|
2016-09-17 18:05:02 +02:00
|
|
|
|
2017-07-16 00:10:06 +02:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
|
|
|
media: ImmutablePropTypes.map.isRequired,
|
2017-06-30 11:15:18 +02:00
|
|
|
letterbox: PropTypes.bool,
|
2017-07-08 11:01:56 +02:00
|
|
|
fullwidth: PropTypes.bool,
|
2017-05-12 14:44:10 +02:00
|
|
|
height: PropTypes.number,
|
|
|
|
sensitive: PropTypes.bool,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
autoplay: PropTypes.bool,
|
2017-05-20 17:31:47 +02:00
|
|
|
onOpenVideo: PropTypes.func.isRequired,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-05-20 17:31:47 +02:00
|
|
|
height: 110,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
visible: !this.props.sensitive,
|
|
|
|
preview: true,
|
|
|
|
muted: true,
|
|
|
|
hasAudio: true,
|
2017-05-20 17:31:47 +02:00
|
|
|
videoError: false,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
2016-09-18 12:39:00 +02:00
|
|
|
this.setState({ muted: !this.state.muted });
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-09-18 12:39:00 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleVideoClick = (e) => {
|
2016-11-07 19:05:32 +01:00
|
|
|
e.stopPropagation();
|
|
|
|
|
2017-05-03 02:04:16 +02:00
|
|
|
const node = this.video;
|
2016-11-07 19:05:32 +01:00
|
|
|
|
|
|
|
if (node.paused) {
|
|
|
|
node.play();
|
|
|
|
} else {
|
|
|
|
node.pause();
|
|
|
|
}
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-11-07 19:05:32 +01:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleOpen = () => {
|
2017-01-20 03:24:30 +01:00
|
|
|
this.setState({ preview: !this.state.preview });
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-01-20 03:24:30 +01:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleVisibility = () => {
|
2017-01-20 03:24:30 +01:00
|
|
|
this.setState({
|
|
|
|
visible: !this.state.visible,
|
2017-05-20 17:31:47 +02:00
|
|
|
preview: true,
|
2017-01-20 03:24:30 +01:00
|
|
|
});
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-11-23 11:23:32 +01:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleExpand = () => {
|
2017-04-13 17:01:09 +02:00
|
|
|
this.video.pause();
|
|
|
|
this.props.onOpenVideo(this.props.media, this.video.currentTime);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-04-13 15:04:18 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
setRef = (c) => {
|
2017-02-28 23:48:41 +01:00
|
|
|
this.video = c;
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-02-28 23:48:41 +01:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleLoadedData = () => {
|
2017-02-28 23:48:41 +01:00
|
|
|
if (('WebkitAppearance' in document.documentElement.style && this.video.audioTracks.length === 0) || this.video.mozHasAudio === false) {
|
|
|
|
this.setState({ hasAudio: false });
|
|
|
|
}
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-02-28 23:48:41 +01:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleVideoError = () => {
|
2017-04-16 01:12:47 +02:00
|
|
|
this.setState({ videoError: true });
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-04-16 01:12:47 +02:00
|
|
|
|
2017-02-28 23:48:41 +01:00
|
|
|
componentDidMount () {
|
|
|
|
if (!this.video) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.video.addEventListener('loadeddata', this.handleLoadedData);
|
2017-04-16 01:12:47 +02:00
|
|
|
this.video.addEventListener('error', this.handleVideoError);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-02-28 23:48:41 +01:00
|
|
|
|
|
|
|
componentDidUpdate () {
|
|
|
|
if (!this.video) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.video.addEventListener('loadeddata', this.handleLoadedData);
|
2017-04-16 01:12:47 +02:00
|
|
|
this.video.addEventListener('error', this.handleVideoError);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-02-28 23:48:41 +01:00
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
if (!this.video) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.video.removeEventListener('loadeddata', this.handleLoadedData);
|
2017-04-16 01:12:47 +02:00
|
|
|
this.video.removeEventListener('error', this.handleVideoError);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-02-28 23:48:41 +01:00
|
|
|
|
2016-09-17 18:05:02 +02:00
|
|
|
render () {
|
2017-07-08 11:01:56 +02:00
|
|
|
const { media, intl, letterbox, fullwidth, height, sensitive, autoplay } = this.props;
|
2016-11-23 11:23:32 +01:00
|
|
|
|
2017-01-20 03:24:30 +01:00
|
|
|
let spoilerButton = (
|
2017-05-19 11:42:54 +02:00
|
|
|
<div className={`status__video-player-spoiler ${this.state.visible ? 'status__video-player-spoiler--visible' : ''}`}>
|
2017-04-13 17:01:09 +02:00
|
|
|
<IconButton overlay title={intl.formatMessage(messages.toggle_visible)} icon={this.state.visible ? 'eye' : 'eye-slash'} onClick={this.handleVisibility} />
|
2017-01-20 03:24:30 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2017-07-16 00:10:06 +02:00
|
|
|
let expandButton = !this.context.router ? '' : (
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='status__video-player-expand'>
|
2017-04-13 17:01:09 +02:00
|
|
|
<IconButton overlay title={intl.formatMessage(messages.expand_video)} icon='expand' onClick={this.handleExpand} />
|
2017-04-13 15:04:18 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2017-02-28 23:48:41 +01:00
|
|
|
let muteButton = '';
|
|
|
|
|
|
|
|
if (this.state.hasAudio) {
|
|
|
|
muteButton = (
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='status__video-player-mute'>
|
2017-04-13 17:01:09 +02:00
|
|
|
<IconButton overlay title={intl.formatMessage(messages.toggle_sound)} icon={this.state.muted ? 'volume-off' : 'volume-up'} onClick={this.handleClick} />
|
2017-02-28 23:48:41 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-20 03:24:30 +01:00
|
|
|
if (!this.state.visible) {
|
|
|
|
if (sensitive) {
|
|
|
|
return (
|
2017-07-09 09:07:14 +02:00
|
|
|
<div role='button' tabIndex='0' style={{ height: `${height}px` }} className={`media-spoiler ${fullwidth ? 'full-width' : ''}`} onClick={this.handleVisibility}>
|
2017-01-20 03:24:30 +01:00
|
|
|
{spoilerButton}
|
2017-04-23 04:26:55 +02:00
|
|
|
<span className='media-spoiler__warning'><FormattedMessage id='status.sensitive_warning' defaultMessage='Sensitive content' /></span>
|
|
|
|
<span className='media-spoiler__trigger'><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span>
|
2017-01-20 03:24:30 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
2017-07-09 09:07:14 +02:00
|
|
|
<div role='button' tabIndex='0' style={{ height: `${height}px` }} className={`media-spoiler ${fullwidth ? 'full-width' : ''}`} onClick={this.handleVisibility}>
|
2017-01-20 03:24:30 +01:00
|
|
|
{spoilerButton}
|
2017-04-23 04:26:55 +02:00
|
|
|
<span className='media-spoiler__warning'><FormattedMessage id='status.media_hidden' defaultMessage='Media hidden' /></span>
|
|
|
|
<span className='media-spoiler__trigger'><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span>
|
2017-01-20 03:24:30 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-28 23:48:41 +01:00
|
|
|
if (this.state.preview && !autoplay) {
|
2016-12-04 12:26:12 +01:00
|
|
|
return (
|
2017-07-08 11:01:56 +02:00
|
|
|
<div role='button' tabIndex='0' className={`media-spoiler-video ${fullwidth ? 'full-width' : ''}`} style={{ height: `${height}px`, backgroundImage: `url(${media.get('preview_url')})` }} onClick={this.handleOpen}>
|
2017-01-20 03:24:30 +01:00
|
|
|
{spoilerButton}
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='media-spoiler-video-play-icon'><i className='fa fa-play' /></div>
|
2016-12-04 12:26:12 +01:00
|
|
|
</div>
|
|
|
|
);
|
2016-11-23 11:23:32 +01:00
|
|
|
}
|
2016-11-16 17:20:52 +01:00
|
|
|
|
2017-04-16 01:12:47 +02:00
|
|
|
if (this.state.videoError) {
|
|
|
|
return (
|
2017-06-30 11:15:18 +02:00
|
|
|
<div style={{ height: `${height}px` }} className='video-error-cover' >
|
2017-04-23 04:26:55 +02:00
|
|
|
<span className='media-spoiler__warning'><FormattedMessage id='video_player.video_error' defaultMessage='Video could not be played' /></span>
|
2017-04-16 01:12:47 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-17 18:05:02 +02:00
|
|
|
return (
|
2017-07-08 11:01:56 +02:00
|
|
|
<div className={`status__video-player ${fullwidth ? 'full-width' : ''}`} style={{ height: `${height}px` }}>
|
2017-01-20 03:24:30 +01:00
|
|
|
{spoilerButton}
|
2017-02-28 23:48:41 +01:00
|
|
|
{muteButton}
|
2017-04-13 15:04:18 +02:00
|
|
|
{expandButton}
|
2017-05-03 02:04:16 +02:00
|
|
|
|
|
|
|
<video
|
2017-06-30 11:15:18 +02:00
|
|
|
className={`status__video-player-video${letterbox ? ' letterbox' : ''}`}
|
2017-05-03 02:04:16 +02:00
|
|
|
role='button'
|
|
|
|
tabIndex='0'
|
|
|
|
ref={this.setRef}
|
|
|
|
src={media.get('url')}
|
|
|
|
autoPlay={!isIOS()}
|
2017-06-06 13:20:07 +02:00
|
|
|
loop
|
2017-05-03 02:04:16 +02:00
|
|
|
muted={this.state.muted}
|
|
|
|
onClick={this.handleVideoClick}
|
|
|
|
/>
|
2016-09-17 18:05:02 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|