import ImmutablePropTypes from 'react-immutable-proptypes'; import PropTypes from 'prop-types'; import IconButton from './icon_button'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import { isIOS } from '../is_mobile'; const messages = defineMessages({ toggle_sound: { id: 'video_player.toggle_sound', defaultMessage: 'Toggle sound' }, toggle_visible: { id: 'video_player.toggle_visible', defaultMessage: 'Toggle visibility' }, expand_video: { id: 'video_player.expand', defaultMessage: 'Expand video' }, expand_video: { id: 'video_player.video_error', defaultMessage: 'Video could not be played' } }); const videoStyle = { position: 'relative', zIndex: '1', width: '100%', height: '100%', objectFit: 'cover', top: '50%', transform: 'translateY(-50%)' }; const muteStyle = { position: 'absolute', top: '4px', right: '4px', color: 'white', textShadow: "0px 1px 1px black, 1px 0px 1px black", opacity: '0.8', zIndex: '5' }; const coverStyle = { marginTop: '8px', textAlign: 'center', height: '100%', cursor: 'pointer', display: 'flex', alignItems: 'center', justifyContent: 'center', flexDirection: 'column', position: 'relative' }; const spoilerSpanStyle = { display: 'block', fontSize: '14px' }; const spoilerSubSpanStyle = { display: 'block', fontSize: '11px', fontWeight: '500' }; const spoilerButtonStyle = { position: 'absolute', top: '4px', left: '4px', color: 'white', textShadow: "0px 1px 1px black, 1px 0px 1px black", zIndex: '100' }; const expandButtonStyle = { position: 'absolute', bottom: '4px', right: '4px', color: 'white', textShadow: "0px 1px 1px black, 1px 0px 1px black", zIndex: '100' }; class VideoPlayer extends React.PureComponent { constructor (props, context) { super(props, context); this.state = { visible: !this.props.sensitive, preview: true, muted: true, hasAudio: true, videoError: false }; 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); } handleClick () { this.setState({ muted: !this.state.muted }); } handleVideoClick (e) { e.stopPropagation(); const node = ReactDOM.findDOMNode(this).querySelector('video'); if (node.paused) { node.play(); } else { node.pause(); } } handleOpen () { this.setState({ preview: !this.state.preview }); } handleVisibility () { this.setState({ visible: !this.state.visible, preview: true }); } handleExpand () { this.video.pause(); this.props.onOpenVideo(this.props.media, this.video.currentTime); } setRef (c) { this.video = c; } handleLoadedData () { if (('WebkitAppearance' in document.documentElement.style && this.video.audioTracks.length === 0) || this.video.mozHasAudio === false) { this.setState({ hasAudio: false }); } } handleVideoError () { this.setState({ videoError: true }); } componentDidMount () { if (!this.video) { return; } this.video.addEventListener('loadeddata', this.handleLoadedData); this.video.addEventListener('error', this.handleVideoError); } componentDidUpdate () { if (!this.video) { return; } this.video.addEventListener('loadeddata', this.handleLoadedData); this.video.addEventListener('error', this.handleVideoError); } componentWillUnmount () { if (!this.video) { return; } this.video.removeEventListener('loadeddata', this.handleLoadedData); this.video.removeEventListener('error', this.handleVideoError); } render () { const { media, intl, width, height, sensitive, autoplay } = this.props; let spoilerButton = (
); let expandButton = (
); let muteButton = ''; if (this.state.hasAudio) { muteButton = (
); } if (!this.state.visible) { if (sensitive) { return (
{spoilerButton}
); } else { return (
{spoilerButton}
); } } if (this.state.preview && !autoplay) { return (
{spoilerButton}
); } if (this.state.videoError) { return (
); } return (
{spoilerButton} {muteButton} {expandButton}
); } } 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 }; export default injectIntl(VideoPlayer);