2017-09-14 01:39:10 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2018-05-17 15:10:17 +00:00
|
|
|
import { fromJS } from 'immutable';
|
2017-09-14 01:39:10 +00:00
|
|
|
import { throttle } from 'lodash';
|
|
|
|
import classNames from 'classnames';
|
2017-12-04 07:26:40 +00:00
|
|
|
import { isFullscreen, requestFullscreen, exitFullscreen } from 'flavours/glitch/util/fullscreen';
|
2018-10-01 12:15:47 +00:00
|
|
|
import { displayMedia } from 'flavours/glitch/util/initial_state';
|
2017-09-14 01:39:10 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
play: { id: 'video.play', defaultMessage: 'Play' },
|
|
|
|
pause: { id: 'video.pause', defaultMessage: 'Pause' },
|
|
|
|
mute: { id: 'video.mute', defaultMessage: 'Mute sound' },
|
|
|
|
unmute: { id: 'video.unmute', defaultMessage: 'Unmute sound' },
|
|
|
|
hide: { id: 'video.hide', defaultMessage: 'Hide video' },
|
|
|
|
expand: { id: 'video.expand', defaultMessage: 'Expand video' },
|
|
|
|
close: { id: 'video.close', defaultMessage: 'Close video' },
|
|
|
|
fullscreen: { id: 'video.fullscreen', defaultMessage: 'Full screen' },
|
|
|
|
exit_fullscreen: { id: 'video.exit_fullscreen', defaultMessage: 'Exit full screen' },
|
|
|
|
});
|
|
|
|
|
2018-01-13 18:41:20 +00:00
|
|
|
const formatTime = secondsNum => {
|
|
|
|
let hours = Math.floor(secondsNum / 3600);
|
|
|
|
let minutes = Math.floor((secondsNum - (hours * 3600)) / 60);
|
|
|
|
let seconds = secondsNum - (hours * 3600) - (minutes * 60);
|
|
|
|
|
|
|
|
if (hours < 10) hours = '0' + hours;
|
|
|
|
if (minutes < 10) minutes = '0' + minutes;
|
|
|
|
if (seconds < 10) seconds = '0' + seconds;
|
|
|
|
return (hours === '00' ? '' : `${hours}:`) + `${minutes}:${seconds}`;
|
|
|
|
};
|
|
|
|
|
2018-04-14 18:31:47 +00:00
|
|
|
export const findElementPosition = el => {
|
2017-09-14 01:39:10 +00:00
|
|
|
let box;
|
|
|
|
|
|
|
|
if (el.getBoundingClientRect && el.parentNode) {
|
|
|
|
box = el.getBoundingClientRect();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!box) {
|
|
|
|
return {
|
|
|
|
left: 0,
|
|
|
|
top: 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const docEl = document.documentElement;
|
|
|
|
const body = document.body;
|
|
|
|
|
|
|
|
const clientLeft = docEl.clientLeft || body.clientLeft || 0;
|
|
|
|
const scrollLeft = window.pageXOffset || body.scrollLeft;
|
|
|
|
const left = (box.left + scrollLeft) - clientLeft;
|
|
|
|
|
|
|
|
const clientTop = docEl.clientTop || body.clientTop || 0;
|
|
|
|
const scrollTop = window.pageYOffset || body.scrollTop;
|
|
|
|
const top = (box.top + scrollTop) - clientTop;
|
|
|
|
|
|
|
|
return {
|
|
|
|
left: Math.round(left),
|
|
|
|
top: Math.round(top),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-04-14 18:31:47 +00:00
|
|
|
export const getPointerPosition = (el, event) => {
|
2017-09-14 01:39:10 +00:00
|
|
|
const position = {};
|
|
|
|
const box = findElementPosition(el);
|
|
|
|
const boxW = el.offsetWidth;
|
|
|
|
const boxH = el.offsetHeight;
|
|
|
|
const boxY = box.top;
|
|
|
|
const boxX = box.left;
|
|
|
|
|
|
|
|
let pageY = event.pageY;
|
|
|
|
let pageX = event.pageX;
|
|
|
|
|
|
|
|
if (event.changedTouches) {
|
|
|
|
pageX = event.changedTouches[0].pageX;
|
|
|
|
pageY = event.changedTouches[0].pageY;
|
|
|
|
}
|
|
|
|
|
2018-04-14 18:31:47 +00:00
|
|
|
position.y = Math.max(0, Math.min(1, (pageY - boxY) / boxH));
|
2017-09-14 01:39:10 +00:00
|
|
|
position.x = Math.max(0, Math.min(1, (pageX - boxX) / boxW));
|
|
|
|
|
|
|
|
return position;
|
|
|
|
};
|
|
|
|
|
|
|
|
@injectIntl
|
|
|
|
export default class Video extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
preview: PropTypes.string,
|
|
|
|
src: PropTypes.string.isRequired,
|
2017-09-28 13:31:31 +00:00
|
|
|
alt: PropTypes.string,
|
2017-09-14 01:39:10 +00:00
|
|
|
width: PropTypes.number,
|
|
|
|
height: PropTypes.number,
|
|
|
|
sensitive: PropTypes.bool,
|
2018-05-07 13:00:55 +00:00
|
|
|
revealed: PropTypes.bool,
|
2017-09-14 01:39:10 +00:00
|
|
|
startTime: PropTypes.number,
|
|
|
|
onOpenVideo: PropTypes.func,
|
|
|
|
onCloseVideo: PropTypes.func,
|
2017-11-18 03:11:18 +00:00
|
|
|
letterbox: PropTypes.bool,
|
|
|
|
fullwidth: PropTypes.bool,
|
2018-01-13 18:41:20 +00:00
|
|
|
detailed: PropTypes.bool,
|
2018-04-14 15:14:04 +00:00
|
|
|
inline: PropTypes.bool,
|
2018-09-04 16:50:45 +00:00
|
|
|
preventPlayback: PropTypes.bool,
|
2017-09-14 01:39:10 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2019-02-09 19:54:11 +00:00
|
|
|
cacheWidth: PropTypes.func,
|
2017-09-14 01:39:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2018-01-13 18:41:20 +00:00
|
|
|
currentTime: 0,
|
|
|
|
duration: 0,
|
2018-11-27 14:21:57 +00:00
|
|
|
volume: 0.5,
|
2017-09-14 01:39:10 +00:00
|
|
|
paused: true,
|
|
|
|
dragging: false,
|
2019-02-09 19:54:11 +00:00
|
|
|
containerWidth: this.props.width,
|
2017-09-14 01:39:10 +00:00
|
|
|
fullscreen: false,
|
|
|
|
hovered: false,
|
|
|
|
muted: false,
|
2018-10-01 12:15:47 +00:00
|
|
|
revealed: this.props.revealed === undefined ? (displayMedia !== 'hide_all' && !this.props.sensitive || displayMedia === 'show_all') : this.props.revealed,
|
2017-09-14 01:39:10 +00:00
|
|
|
};
|
|
|
|
|
2019-03-10 19:34:51 +00:00
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (nextProps.revealed === true) {
|
|
|
|
this.setState({ revealed: true });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-27 14:21:57 +00:00
|
|
|
// hard coded in components.scss
|
|
|
|
// any way to get ::before values programatically?
|
|
|
|
volWidth = 50;
|
|
|
|
volOffset = 70;
|
|
|
|
volHandleOffset = v => {
|
|
|
|
const offset = v * this.volWidth + this.volOffset;
|
|
|
|
return (offset > 110) ? 110 : offset;
|
|
|
|
}
|
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
setPlayerRef = c => {
|
|
|
|
this.player = c;
|
2018-04-14 15:14:04 +00:00
|
|
|
|
2018-11-22 15:50:33 +00:00
|
|
|
if (c && c.offsetWidth && c.offsetWidth != this.state.containerWidth) {
|
2019-02-09 19:54:11 +00:00
|
|
|
if (this.props.cacheWidth) this.props.cacheWidth(this.player.offsetWidth);
|
2018-04-14 15:14:04 +00:00
|
|
|
this.setState({
|
|
|
|
containerWidth: c.offsetWidth,
|
|
|
|
});
|
|
|
|
}
|
2017-09-14 01:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setVideoRef = c => {
|
|
|
|
this.video = c;
|
2019-01-27 21:02:59 +00:00
|
|
|
if (this.video) {
|
|
|
|
this.setState({ volume: this.video.volume, muted: this.video.muted });
|
|
|
|
}
|
2017-09-14 01:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setSeekRef = c => {
|
|
|
|
this.seek = c;
|
|
|
|
}
|
|
|
|
|
2018-11-27 14:21:57 +00:00
|
|
|
setVolumeRef = c => {
|
|
|
|
this.volume = c;
|
|
|
|
}
|
|
|
|
|
2018-09-17 12:19:35 +00:00
|
|
|
handleMouseDownRoot = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
2018-05-17 15:10:17 +00:00
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
handlePlay = () => {
|
|
|
|
this.setState({ paused: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
handlePause = () => {
|
|
|
|
this.setState({ paused: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleTimeUpdate = () => {
|
2018-01-13 18:41:20 +00:00
|
|
|
this.setState({
|
|
|
|
currentTime: Math.floor(this.video.currentTime),
|
|
|
|
duration: Math.floor(this.video.duration),
|
|
|
|
});
|
2017-09-14 01:39:10 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 14:21:57 +00:00
|
|
|
handleVolumeMouseDown = e => {
|
|
|
|
|
|
|
|
document.addEventListener('mousemove', this.handleMouseVolSlide, true);
|
|
|
|
document.addEventListener('mouseup', this.handleVolumeMouseUp, true);
|
|
|
|
document.addEventListener('touchmove', this.handleMouseVolSlide, true);
|
|
|
|
document.addEventListener('touchend', this.handleVolumeMouseUp, true);
|
|
|
|
|
|
|
|
this.handleMouseVolSlide(e);
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleVolumeMouseUp = () => {
|
|
|
|
document.removeEventListener('mousemove', this.handleMouseVolSlide, true);
|
|
|
|
document.removeEventListener('mouseup', this.handleVolumeMouseUp, true);
|
|
|
|
document.removeEventListener('touchmove', this.handleMouseVolSlide, true);
|
|
|
|
document.removeEventListener('touchend', this.handleVolumeMouseUp, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMouseVolSlide = throttle(e => {
|
|
|
|
|
|
|
|
const rect = this.volume.getBoundingClientRect();
|
|
|
|
const x = (e.clientX - rect.left) / this.volWidth; //x position within the element.
|
|
|
|
|
|
|
|
if(!isNaN(x)) {
|
|
|
|
var slideamt = x;
|
|
|
|
if(x > 1) {
|
|
|
|
slideamt = 1;
|
|
|
|
} else if(x < 0) {
|
|
|
|
slideamt = 0;
|
|
|
|
}
|
|
|
|
this.video.volume = slideamt;
|
|
|
|
this.setState({ volume: slideamt });
|
|
|
|
}
|
|
|
|
}, 60);
|
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
handleMouseDown = e => {
|
|
|
|
document.addEventListener('mousemove', this.handleMouseMove, true);
|
|
|
|
document.addEventListener('mouseup', this.handleMouseUp, true);
|
|
|
|
document.addEventListener('touchmove', this.handleMouseMove, true);
|
|
|
|
document.addEventListener('touchend', this.handleMouseUp, true);
|
|
|
|
|
|
|
|
this.setState({ dragging: true });
|
|
|
|
this.video.pause();
|
|
|
|
this.handleMouseMove(e);
|
2018-08-14 12:39:53 +00:00
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-09-14 01:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleMouseUp = () => {
|
|
|
|
document.removeEventListener('mousemove', this.handleMouseMove, true);
|
|
|
|
document.removeEventListener('mouseup', this.handleMouseUp, true);
|
|
|
|
document.removeEventListener('touchmove', this.handleMouseMove, true);
|
|
|
|
document.removeEventListener('touchend', this.handleMouseUp, true);
|
|
|
|
|
|
|
|
this.setState({ dragging: false });
|
|
|
|
this.video.play();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMouseMove = throttle(e => {
|
|
|
|
const { x } = getPointerPosition(this.seek, e);
|
2018-01-13 18:41:20 +00:00
|
|
|
const currentTime = Math.floor(this.video.duration * x);
|
|
|
|
|
2018-08-14 13:19:40 +00:00
|
|
|
if (!isNaN(currentTime)) {
|
|
|
|
this.video.currentTime = currentTime;
|
|
|
|
this.setState({ currentTime });
|
|
|
|
}
|
2017-09-14 01:39:10 +00:00
|
|
|
}, 60);
|
|
|
|
|
|
|
|
togglePlay = () => {
|
|
|
|
if (this.state.paused) {
|
|
|
|
this.video.play();
|
|
|
|
} else {
|
|
|
|
this.video.pause();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleFullscreen = () => {
|
|
|
|
if (isFullscreen()) {
|
|
|
|
exitFullscreen();
|
|
|
|
} else {
|
|
|
|
requestFullscreen(this.player);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
document.addEventListener('fullscreenchange', this.handleFullscreenChange, true);
|
|
|
|
document.addEventListener('webkitfullscreenchange', this.handleFullscreenChange, true);
|
|
|
|
document.addEventListener('mozfullscreenchange', this.handleFullscreenChange, true);
|
|
|
|
document.addEventListener('MSFullscreenChange', this.handleFullscreenChange, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
document.removeEventListener('fullscreenchange', this.handleFullscreenChange, true);
|
|
|
|
document.removeEventListener('webkitfullscreenchange', this.handleFullscreenChange, true);
|
|
|
|
document.removeEventListener('mozfullscreenchange', this.handleFullscreenChange, true);
|
|
|
|
document.removeEventListener('MSFullscreenChange', this.handleFullscreenChange, true);
|
|
|
|
}
|
|
|
|
|
2018-09-04 16:50:45 +00:00
|
|
|
componentDidUpdate (prevProps) {
|
2018-11-22 15:50:33 +00:00
|
|
|
if (this.player && this.player.offsetWidth && this.player.offsetWidth != this.state.containerWidth && !this.state.fullscreen) {
|
2019-02-09 19:54:11 +00:00
|
|
|
if (this.props.cacheWidth) this.props.cacheWidth(this.player.offsetWidth);
|
2018-10-20 17:47:10 +00:00
|
|
|
this.setState({
|
|
|
|
containerWidth: this.player.offsetWidth,
|
|
|
|
});
|
|
|
|
}
|
2018-09-04 16:50:45 +00:00
|
|
|
if (this.video && this.state.revealed && this.props.preventPlayback && !prevProps.preventPlayback) {
|
|
|
|
this.video.pause();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
handleFullscreenChange = () => {
|
|
|
|
this.setState({ fullscreen: isFullscreen() });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMouseEnter = () => {
|
|
|
|
this.setState({ hovered: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMouseLeave = () => {
|
|
|
|
this.setState({ hovered: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleMute = () => {
|
|
|
|
this.video.muted = !this.video.muted;
|
|
|
|
this.setState({ muted: this.video.muted });
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleReveal = () => {
|
|
|
|
if (this.state.revealed) {
|
|
|
|
this.video.pause();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ revealed: !this.state.revealed });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleLoadedData = () => {
|
|
|
|
if (this.props.startTime) {
|
|
|
|
this.video.currentTime = this.props.startTime;
|
|
|
|
this.video.play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-08 00:33:08 +00:00
|
|
|
handleProgress = () => {
|
2017-10-10 13:17:53 +00:00
|
|
|
if (this.video.buffered.length > 0) {
|
|
|
|
this.setState({ buffer: this.video.buffered.end(0) / this.video.duration * 100 });
|
|
|
|
}
|
2017-10-08 00:33:08 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 21:02:59 +00:00
|
|
|
handleVolumeChange = () => {
|
|
|
|
this.setState({ volume: this.video.volume, muted: this.video.muted });
|
|
|
|
}
|
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
handleOpenVideo = () => {
|
2018-09-11 13:45:51 +00:00
|
|
|
const { src, preview, width, height, alt } = this.props;
|
2018-05-17 15:10:17 +00:00
|
|
|
const media = fromJS({
|
|
|
|
type: 'video',
|
|
|
|
url: src,
|
|
|
|
preview_url: preview,
|
2018-09-11 13:45:51 +00:00
|
|
|
description: alt,
|
2018-05-17 15:10:17 +00:00
|
|
|
width,
|
|
|
|
height,
|
|
|
|
});
|
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
this.video.pause();
|
2018-05-17 15:10:17 +00:00
|
|
|
this.props.onOpenVideo(media, this.video.currentTime);
|
2017-09-14 01:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleCloseVideo = () => {
|
|
|
|
this.video.pause();
|
|
|
|
this.props.onCloseVideo();
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2018-05-07 13:00:55 +00:00
|
|
|
const { preview, src, inline, startTime, onOpenVideo, onCloseVideo, intl, alt, letterbox, fullwidth, detailed, sensitive } = this.props;
|
2018-11-27 14:21:57 +00:00
|
|
|
const { containerWidth, currentTime, duration, volume, buffer, dragging, paused, fullscreen, hovered, muted, revealed } = this.state;
|
2018-01-13 18:41:20 +00:00
|
|
|
const progress = (currentTime / duration) * 100;
|
2018-04-14 15:14:04 +00:00
|
|
|
const playerStyle = {};
|
|
|
|
|
2018-11-27 14:21:57 +00:00
|
|
|
const volumeWidth = (muted) ? 0 : volume * this.volWidth;
|
|
|
|
const volumeHandleLoc = (muted) ? this.volHandleOffset(0) : this.volHandleOffset(volume);
|
|
|
|
|
2018-11-22 15:50:33 +00:00
|
|
|
const computedClass = classNames('video-player', { inactive: !revealed, detailed, inline: inline && !fullscreen, fullscreen, letterbox, 'full-width': fullwidth });
|
|
|
|
|
2018-04-14 15:14:04 +00:00
|
|
|
let { width, height } = this.props;
|
|
|
|
|
|
|
|
if (inline && containerWidth) {
|
|
|
|
width = containerWidth;
|
|
|
|
height = containerWidth / (16/9);
|
|
|
|
|
|
|
|
playerStyle.height = height;
|
2018-11-22 15:50:33 +00:00
|
|
|
} else if (inline) {
|
|
|
|
return (<div className={computedClass} ref={this.setPlayerRef} tabindex={0}></div>);
|
2018-04-14 15:14:04 +00:00
|
|
|
}
|
2017-09-14 01:39:10 +00:00
|
|
|
|
2018-05-07 13:00:55 +00:00
|
|
|
let warning;
|
|
|
|
if (sensitive) {
|
|
|
|
warning = <FormattedMessage id='status.sensitive_warning' defaultMessage='Sensitive content' />;
|
|
|
|
} else {
|
|
|
|
warning = <FormattedMessage id='status.media_hidden' defaultMessage='Media hidden' />;
|
|
|
|
}
|
|
|
|
|
2018-08-14 16:21:29 +00:00
|
|
|
let preload;
|
|
|
|
if (startTime || fullscreen || dragging) {
|
|
|
|
preload = 'auto';
|
|
|
|
} else if (detailed) {
|
|
|
|
preload = 'metadata';
|
|
|
|
} else {
|
|
|
|
preload = 'none';
|
|
|
|
}
|
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
return (
|
2018-05-17 15:10:17 +00:00
|
|
|
<div
|
2018-11-22 15:50:33 +00:00
|
|
|
className={computedClass}
|
2018-05-17 15:10:17 +00:00
|
|
|
style={playerStyle}
|
|
|
|
ref={this.setPlayerRef}
|
|
|
|
onMouseEnter={this.handleMouseEnter}
|
|
|
|
onMouseLeave={this.handleMouseLeave}
|
2018-09-17 12:19:35 +00:00
|
|
|
onMouseDown={this.handleMouseDownRoot}
|
2018-05-17 15:10:17 +00:00
|
|
|
tabIndex={0}
|
|
|
|
>
|
2017-09-14 01:39:10 +00:00
|
|
|
<video
|
|
|
|
ref={this.setVideoRef}
|
|
|
|
src={src}
|
|
|
|
poster={preview}
|
2018-08-14 16:21:29 +00:00
|
|
|
preload={preload}
|
2017-09-14 01:39:10 +00:00
|
|
|
loop
|
|
|
|
role='button'
|
|
|
|
tabIndex='0'
|
2017-09-28 13:31:31 +00:00
|
|
|
aria-label={alt}
|
2018-08-27 15:40:25 +00:00
|
|
|
title={alt}
|
2017-09-14 01:39:10 +00:00
|
|
|
width={width}
|
|
|
|
height={height}
|
2018-11-27 14:21:57 +00:00
|
|
|
volume={volume}
|
2017-09-14 01:39:10 +00:00
|
|
|
onClick={this.togglePlay}
|
|
|
|
onPlay={this.handlePlay}
|
|
|
|
onPause={this.handlePause}
|
|
|
|
onTimeUpdate={this.handleTimeUpdate}
|
|
|
|
onLoadedData={this.handleLoadedData}
|
2017-10-08 00:33:08 +00:00
|
|
|
onProgress={this.handleProgress}
|
2019-01-27 21:02:59 +00:00
|
|
|
onVolumeChange={this.handleVolumeChange}
|
2017-09-14 01:39:10 +00:00
|
|
|
/>
|
|
|
|
|
2018-04-14 10:30:55 +00:00
|
|
|
<button type='button' className={classNames('video-player__spoiler', { active: !revealed })} onClick={this.toggleReveal}>
|
2018-05-07 13:00:55 +00:00
|
|
|
<span className='video-player__spoiler__title'>{warning}</span>
|
2017-09-14 01:39:10 +00:00
|
|
|
<span className='video-player__spoiler__subtitle'><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div className={classNames('video-player__controls', { active: paused || hovered })}>
|
|
|
|
<div className='video-player__seek' onMouseDown={this.handleMouseDown} ref={this.setSeekRef}>
|
2017-10-08 00:33:08 +00:00
|
|
|
<div className='video-player__seek__buffer' style={{ width: `${buffer}%` }} />
|
2017-09-14 01:39:10 +00:00
|
|
|
<div className='video-player__seek__progress' style={{ width: `${progress}%` }} />
|
|
|
|
|
|
|
|
<span
|
|
|
|
className={classNames('video-player__seek__handle', { active: dragging })}
|
|
|
|
tabIndex='0'
|
|
|
|
style={{ left: `${progress}%` }}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2018-01-13 18:41:20 +00:00
|
|
|
<div className='video-player__buttons-bar'>
|
|
|
|
<div className='video-player__buttons left'>
|
2018-04-14 10:30:55 +00:00
|
|
|
<button type='button' aria-label={intl.formatMessage(paused ? messages.play : messages.pause)} onClick={this.togglePlay}><i className={classNames('fa fa-fw', { 'fa-play': paused, 'fa-pause': !paused })} /></button>
|
2019-01-27 21:02:59 +00:00
|
|
|
<button type='button' aria-label={intl.formatMessage(muted ? messages.unmute : messages.mute)} onClick={this.toggleMute}><i className={classNames('fa fa-fw', { 'fa-volume-off': muted, 'fa-volume-up': !muted })} /></button>
|
2018-11-27 14:21:57 +00:00
|
|
|
<div className='video-player__volume' onMouseDown={this.handleVolumeMouseDown} ref={this.setVolumeRef}>
|
|
|
|
<div className='video-player__volume__current' style={{ width: `${volumeWidth}px` }} />
|
|
|
|
<span
|
|
|
|
className={classNames('video-player__volume__handle')}
|
|
|
|
tabIndex='0'
|
|
|
|
style={{ left: `${volumeHandleLoc}px` }}
|
|
|
|
/>
|
|
|
|
</div>
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
{(detailed || fullscreen) &&
|
|
|
|
<span>
|
|
|
|
<span className='video-player__time-current'>{formatTime(currentTime)}</span>
|
|
|
|
<span className='video-player__time-sep'>/</span>
|
|
|
|
<span className='video-player__time-total'>{formatTime(duration)}</span>
|
|
|
|
</span>
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='video-player__buttons right'>
|
2018-11-27 14:21:57 +00:00
|
|
|
{!onCloseVideo && <button type='button' aria-label={intl.formatMessage(messages.hide)} onClick={this.toggleReveal}><i className='fa fa-fw fa-eye' /></button>}
|
2018-04-14 10:30:55 +00:00
|
|
|
{(!fullscreen && onOpenVideo) && <button type='button' aria-label={intl.formatMessage(messages.expand)} onClick={this.handleOpenVideo}><i className='fa fa-fw fa-expand' /></button>}
|
|
|
|
{onCloseVideo && <button type='button' aria-label={intl.formatMessage(messages.close)} onClick={this.handleCloseVideo}><i className='fa fa-fw fa-compress' /></button>}
|
|
|
|
<button type='button' aria-label={intl.formatMessage(fullscreen ? messages.exit_fullscreen : messages.fullscreen)} onClick={this.toggleFullscreen}><i className={classNames('fa fa-fw', { 'fa-arrows-alt': !fullscreen, 'fa-compress': fullscreen })} /></button>
|
2018-01-13 18:41:20 +00:00
|
|
|
</div>
|
2017-09-14 01:39:10 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2018-01-13 19:12:41 +00:00
|
|
|
|
2017-09-14 01:39:10 +00:00
|
|
|
}
|