2016-09-18 01:05:02 +09:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-17 01:20:52 +09:00
|
|
|
import IconButton from './icon_button';
|
2016-11-23 19:23:32 +09:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2017-03-07 17:54:57 +09:00
|
|
|
import { isIOS } from '../is_mobile';
|
2016-11-18 23:36:16 +09:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-01-20 11:24:30 +09:00
|
|
|
toggle_sound: { id: 'video_player.toggle_sound', defaultMessage: 'Toggle sound' },
|
2017-04-13 22:04:18 +09:00
|
|
|
toggle_visible: { id: 'video_player.toggle_visible', defaultMessage: 'Toggle visibility' },
|
2017-04-16 08:12:47 +09:00
|
|
|
expand_video: { id: 'video_player.expand', defaultMessage: 'Expand video' },
|
|
|
|
expand_video: { id: 'video_player.video_error', defaultMessage: 'Video could not be played' }
|
2016-11-18 23:36:16 +09:00
|
|
|
});
|
2016-09-18 01:05:02 +09:00
|
|
|
|
2016-11-08 02:42:39 +09:00
|
|
|
const videoStyle = {
|
|
|
|
position: 'relative',
|
|
|
|
zIndex: '1',
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
objectFit: 'cover',
|
|
|
|
top: '50%',
|
|
|
|
transform: 'translateY(-50%)'
|
|
|
|
};
|
|
|
|
|
|
|
|
const muteStyle = {
|
|
|
|
position: 'absolute',
|
2017-04-14 00:01:09 +09:00
|
|
|
top: '4px',
|
|
|
|
right: '4px',
|
2017-04-03 03:55:13 +09:00
|
|
|
color: 'white',
|
2017-04-03 03:54:24 +09:00
|
|
|
textShadow: "0px 1px 1px black, 1px 0px 1px black",
|
2016-11-08 02:42:39 +09:00
|
|
|
opacity: '0.8',
|
|
|
|
zIndex: '5'
|
|
|
|
};
|
|
|
|
|
2017-04-16 08:12:47 +09:00
|
|
|
const coverStyle = {
|
2016-11-24 02:53:23 +09:00
|
|
|
marginTop: '8px',
|
2016-11-23 19:23:32 +09:00
|
|
|
textAlign: 'center',
|
|
|
|
height: '100%',
|
2016-11-24 02:53:23 +09:00
|
|
|
cursor: 'pointer',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
2017-01-20 11:24:30 +09:00
|
|
|
flexDirection: 'column',
|
|
|
|
position: 'relative'
|
2016-11-23 19:23:32 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
const spoilerSpanStyle = {
|
|
|
|
display: 'block',
|
2016-11-24 02:53:23 +09:00
|
|
|
fontSize: '14px'
|
2016-11-23 19:23:32 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
const spoilerSubSpanStyle = {
|
2016-11-24 02:53:23 +09:00
|
|
|
display: 'block',
|
2016-11-23 19:23:32 +09:00
|
|
|
fontSize: '11px',
|
|
|
|
fontWeight: '500'
|
|
|
|
};
|
|
|
|
|
2017-01-20 11:24:30 +09:00
|
|
|
const spoilerButtonStyle = {
|
|
|
|
position: 'absolute',
|
2017-04-14 00:01:09 +09:00
|
|
|
top: '4px',
|
|
|
|
left: '4px',
|
2017-04-03 03:55:13 +09:00
|
|
|
color: 'white',
|
2017-04-03 03:54:24 +09:00
|
|
|
textShadow: "0px 1px 1px black, 1px 0px 1px black",
|
2017-01-20 11:24:30 +09:00
|
|
|
zIndex: '100'
|
|
|
|
};
|
|
|
|
|
2017-04-13 22:04:18 +09:00
|
|
|
const expandButtonStyle = {
|
|
|
|
position: 'absolute',
|
2017-04-14 00:01:09 +09:00
|
|
|
bottom: '4px',
|
|
|
|
right: '4px',
|
2017-04-13 22:04:18 +09:00
|
|
|
color: 'white',
|
|
|
|
textShadow: "0px 1px 1px black, 1px 0px 1px black",
|
|
|
|
zIndex: '100'
|
|
|
|
};
|
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
class VideoPlayer extends React.PureComponent {
|
2016-09-18 01:05:02 +09:00
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.state = {
|
2017-01-20 11:24:30 +09:00
|
|
|
visible: !this.props.sensitive,
|
|
|
|
preview: true,
|
2017-03-01 07:48:41 +09:00
|
|
|
muted: true,
|
2017-04-16 08:12:47 +09:00
|
|
|
hasAudio: true,
|
|
|
|
videoError: false
|
2016-09-18 19:39:00 +09:00
|
|
|
};
|
2017-04-22 03:05:35 +09:00
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
|
|
this.handleVideoClick = this.handleVideoClick.bind(this);
|
|
|
|
this.handleOpen = this.handleOpen.bind(this);
|
|
|
|
this.handleVisibility = this.handleVisibility.bind(this);
|
|
|
|
this.handleExpand = this.handleExpand.bind(this);
|
|
|
|
this.setRef = this.setRef.bind(this);
|
|
|
|
this.handleLoadedData = this.handleLoadedData.bind(this);
|
|
|
|
this.handleVideoError = this.handleVideoError.bind(this);
|
|
|
|
}
|
2016-09-18 01:05:02 +09:00
|
|
|
|
2016-09-18 19:39:00 +09:00
|
|
|
handleClick () {
|
|
|
|
this.setState({ muted: !this.state.muted });
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2016-09-18 19:39:00 +09:00
|
|
|
|
2016-11-08 03:05:32 +09:00
|
|
|
handleVideoClick (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
const node = ReactDOM.findDOMNode(this).querySelector('video');
|
|
|
|
|
|
|
|
if (node.paused) {
|
|
|
|
node.play();
|
|
|
|
} else {
|
|
|
|
node.pause();
|
|
|
|
}
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2016-11-08 03:05:32 +09:00
|
|
|
|
2016-11-23 19:23:32 +09:00
|
|
|
handleOpen () {
|
2017-01-20 11:24:30 +09:00
|
|
|
this.setState({ preview: !this.state.preview });
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-01-20 11:24:30 +09:00
|
|
|
|
|
|
|
handleVisibility () {
|
|
|
|
this.setState({
|
|
|
|
visible: !this.state.visible,
|
|
|
|
preview: true
|
|
|
|
});
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2016-11-23 19:23:32 +09:00
|
|
|
|
2017-04-13 22:04:18 +09:00
|
|
|
handleExpand () {
|
2017-04-14 00:01:09 +09:00
|
|
|
this.video.pause();
|
|
|
|
this.props.onOpenVideo(this.props.media, this.video.currentTime);
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-04-13 22:04:18 +09:00
|
|
|
|
2017-03-01 07:48:41 +09:00
|
|
|
setRef (c) {
|
|
|
|
this.video = c;
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-03-01 07:48:41 +09:00
|
|
|
|
|
|
|
handleLoadedData () {
|
|
|
|
if (('WebkitAppearance' in document.documentElement.style && this.video.audioTracks.length === 0) || this.video.mozHasAudio === false) {
|
|
|
|
this.setState({ hasAudio: false });
|
|
|
|
}
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-03-01 07:48:41 +09:00
|
|
|
|
2017-04-16 08:12:47 +09:00
|
|
|
handleVideoError () {
|
|
|
|
this.setState({ videoError: true });
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-04-16 08:12:47 +09:00
|
|
|
|
2017-03-01 07:48:41 +09:00
|
|
|
componentDidMount () {
|
|
|
|
if (!this.video) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.video.addEventListener('loadeddata', this.handleLoadedData);
|
2017-04-16 08:12:47 +09:00
|
|
|
this.video.addEventListener('error', this.handleVideoError);
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-03-01 07:48:41 +09:00
|
|
|
|
|
|
|
componentDidUpdate () {
|
|
|
|
if (!this.video) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.video.addEventListener('loadeddata', this.handleLoadedData);
|
2017-04-16 08:12:47 +09:00
|
|
|
this.video.addEventListener('error', this.handleVideoError);
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-03-01 07:48:41 +09:00
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
if (!this.video) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.video.removeEventListener('loadeddata', this.handleLoadedData);
|
2017-04-16 08:12:47 +09:00
|
|
|
this.video.removeEventListener('error', this.handleVideoError);
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-03-01 07:48:41 +09:00
|
|
|
|
2016-09-18 01:05:02 +09:00
|
|
|
render () {
|
2017-03-01 07:48:41 +09:00
|
|
|
const { media, intl, width, height, sensitive, autoplay } = this.props;
|
2016-11-23 19:23:32 +09:00
|
|
|
|
2017-01-20 11:24:30 +09:00
|
|
|
let spoilerButton = (
|
2017-04-14 00:01:09 +09:00
|
|
|
<div style={{...spoilerButtonStyle, display: !this.state.visible ? 'none' : 'block'}} >
|
|
|
|
<IconButton overlay title={intl.formatMessage(messages.toggle_visible)} icon={this.state.visible ? 'eye' : 'eye-slash'} onClick={this.handleVisibility} />
|
2017-01-20 11:24:30 +09:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2017-04-13 22:04:18 +09:00
|
|
|
let expandButton = (
|
|
|
|
<div style={expandButtonStyle} >
|
2017-04-14 00:01:09 +09:00
|
|
|
<IconButton overlay title={intl.formatMessage(messages.expand_video)} icon='expand' onClick={this.handleExpand} />
|
2017-04-13 22:04:18 +09:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2017-03-01 07:48:41 +09:00
|
|
|
let muteButton = '';
|
|
|
|
|
|
|
|
if (this.state.hasAudio) {
|
|
|
|
muteButton = (
|
|
|
|
<div style={muteStyle}>
|
2017-04-14 00:01:09 +09:00
|
|
|
<IconButton overlay title={intl.formatMessage(messages.toggle_sound)} icon={this.state.muted ? 'volume-off' : 'volume-up'} onClick={this.handleClick} />
|
2017-03-01 07:48:41 +09:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-20 11:24:30 +09:00
|
|
|
if (!this.state.visible) {
|
|
|
|
if (sensitive) {
|
|
|
|
return (
|
2017-04-16 08:12:47 +09:00
|
|
|
<div role='button' tabIndex='0' style={{...coverStyle, width: `${width}px`, height: `${height}px` }} className='media-spoiler' onClick={this.handleVisibility}>
|
2017-01-20 11:24:30 +09:00
|
|
|
{spoilerButton}
|
|
|
|
<span style={spoilerSpanStyle}><FormattedMessage id='status.sensitive_warning' defaultMessage='Sensitive content' /></span>
|
|
|
|
<span style={spoilerSubSpanStyle}><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
2017-04-16 08:12:47 +09:00
|
|
|
<div role='button' tabIndex='0' style={{...coverStyle, width: `${width}px`, height: `${height}px` }} className='media-spoiler' onClick={this.handleVisibility}>
|
2017-01-20 11:24:30 +09:00
|
|
|
{spoilerButton}
|
|
|
|
<span style={spoilerSpanStyle}><FormattedMessage id='status.media_hidden' defaultMessage='Media hidden' /></span>
|
|
|
|
<span style={spoilerSubSpanStyle}><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 07:48:41 +09:00
|
|
|
if (this.state.preview && !autoplay) {
|
2016-12-04 20:26:12 +09:00
|
|
|
return (
|
2017-04-15 20:27:27 +09:00
|
|
|
<div role='button' tabIndex='0' style={{ cursor: 'pointer', position: 'relative', marginTop: '8px', width: `${width}px`, height: `${height}px`, background: `url(${media.get('preview_url')}) no-repeat center`, backgroundSize: 'cover' }} onClick={this.handleOpen}>
|
2017-01-20 11:24:30 +09:00
|
|
|
{spoilerButton}
|
2016-12-04 20:26:12 +09:00
|
|
|
<div style={{ position: 'absolute', top: '50%', left: '50%', fontSize: '36px', transform: 'translate(-50%, -50%)', padding: '5px', borderRadius: '100px', color: 'rgba(255, 255, 255, 0.8)' }}><i className='fa fa-play' /></div>
|
|
|
|
</div>
|
|
|
|
);
|
2016-11-23 19:23:32 +09:00
|
|
|
}
|
2016-11-17 01:20:52 +09:00
|
|
|
|
2017-04-16 08:12:47 +09:00
|
|
|
if (this.state.videoError) {
|
|
|
|
return (
|
|
|
|
<div style={{...coverStyle, width: `${width}px`, height: `${height}px` }} className='video-error-cover' >
|
|
|
|
<span style={spoilerSpanStyle}><FormattedMessage id='video_player.video_error' defaultMessage='Video could not be played' /></span>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-18 01:05:02 +09:00
|
|
|
return (
|
2016-11-17 01:20:52 +09:00
|
|
|
<div style={{ cursor: 'default', marginTop: '8px', overflow: 'hidden', width: `${width}px`, height: `${height}px`, boxSizing: 'border-box', background: '#000', position: 'relative' }}>
|
2017-01-20 11:24:30 +09:00
|
|
|
{spoilerButton}
|
2017-03-01 07:48:41 +09:00
|
|
|
{muteButton}
|
2017-04-13 22:04:18 +09:00
|
|
|
{expandButton}
|
2017-04-15 20:27:27 +09:00
|
|
|
<video role='button' tabIndex='0' ref={this.setRef} src={media.get('url')} autoPlay={!isIOS()} loop={true} muted={this.state.muted} style={videoStyle} onClick={this.handleVideoClick} />
|
2016-09-18 01:05:02 +09:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
VideoPlayer.propTypes = {
|
|
|
|
media: ImmutablePropTypes.map.isRequired,
|
|
|
|
width: PropTypes.number,
|
|
|
|
height: PropTypes.number,
|
|
|
|
sensitive: PropTypes.bool,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
autoplay: PropTypes.bool,
|
|
|
|
onOpenVideo: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
VideoPlayer.defaultProps = {
|
|
|
|
width: 239,
|
|
|
|
height: 110
|
|
|
|
};
|
2016-09-18 01:05:02 +09:00
|
|
|
|
2016-11-17 01:20:52 +09:00
|
|
|
export default injectIntl(VideoPlayer);
|