cabana/src/components/RouteSeeker.js

284 lines
9.0 KiB
JavaScript

import React, {Component} from 'react';
import PropTypes from 'prop-types';
import { StyleSheet, css } from 'aphrodite/no-important';
import PlayButton from './PlayButton';
import debounce from '../utils/debounce';
export default class RouteSeeker extends Component {
static propTypes = {
secondsLoaded: PropTypes.number.isRequired,
segmentIndices: PropTypes.arrayOf(PropTypes.number),
onUserSeek: PropTypes.func,
onPlaySeek: PropTypes.func,
video: PropTypes.node,
onPause: PropTypes.func,
onPlay: PropTypes.func,
playing: PropTypes.bool,
segmentProgress: PropTypes.func,
ratioTime: PropTypes.func,
nearestFrameTime: PropTypes.number
};
static hiddenMarkerStyle = StyleSheet.create({marker: {display: 'none', left: 0}});
static zeroSeekedBarStyle = StyleSheet.create({seekedBar: {width: 0}});
static hiddenTooltipStyle = StyleSheet.create({tooltip: {display: 'none', left: 0}});
constructor(props) {
super(props);
this.state = {
seekedBarStyle: RouteSeeker.zeroSeekedBarStyle,
markerStyle: RouteSeeker.hiddenMarkerStyle,
tooltipStyle: RouteSeeker.hiddenTooltipStyle,
ratio: 0,
tooltipTime: '0:00',
isPlaying: false,
isDragging: false,
};
this.onMouseMove = this.onMouseMove.bind(this);
this.onMouseLeave = this.onMouseLeave.bind(this);
this.onMouseDown = this.onMouseDown.bind(this);
this.onMouseUp = this.onMouseUp.bind(this);
this.onClick = this.onClick.bind(this);
this.onPlay = this.onPlay.bind(this);
this.onPause = this.onPause.bind(this);
}
componentWillReceiveProps(nextProps) {
const {ratio} = this.state;
if(JSON.stringify(this.props.segmentIndices)
!== JSON.stringify(nextProps.segmentIndices)) {
this.setState({seekedBarStyle: RouteSeeker.zeroSeekedBarStyle,
markerStyle: RouteSeeker.hiddenMarkerStyle,
ratio: 0});
} else if(nextProps.secondsLoaded !== this.props.secondsLoaded) {
// adjust ratio in line with new secondsLoaded
const secondsSeeked = ratio * this.props.secondsLoaded;
const newRatio = secondsSeeked / nextProps.secondsLoaded;
this.updateSeekedBar(newRatio);
}
if(this.props.nearestFrameTime != nextProps.nearestFrameTime) {
const newRatio = this.props.segmentProgress(nextProps.nearestFrameTime);
this.updateSeekedBar(newRatio);
}
if(nextProps.playing && !this.state.isPlaying) {
this.onPlay();
} else if(!nextProps.playing && this.state.isPlaying) {
this.onPause();
}
}
componentWillUnmount() {
window.clearInterval(this.playTimer);
}
mouseEventXOffsetPercent(e) {
const rect = this.progressBar.getBoundingClientRect();
const x = e.clientX - rect.left;
return 100 * (x / this.progressBar.offsetWidth);
}
updateDraggingSeek = debounce((ratio) => this.props.onUserSeek(ratio), 250);
onMouseMove(e) {
const markerOffsetPct = this.mouseEventXOffsetPercent(e);
if(markerOffsetPct < 0) {
this.onMouseLeave();
return;
}
const markerWidth = Styles.marker._definition.width;
const markerLeft = `calc(${markerOffsetPct + '%'} - ${markerWidth / 2}px)`;
const markerStyle = StyleSheet.create({
marker: {
display: '',
left: markerLeft
}
});
const tooltipWidth = Styles.tooltip._definition.width;
const tooltipLeft = `calc(${markerOffsetPct + '%'} - ${tooltipWidth / 2}px)`;
const tooltipStyle = StyleSheet.create({tooltip: {display: 'flex', left: tooltipLeft}});
const ratio = Math.max(0, markerOffsetPct / 100);
if(this.state.isDragging) {
this.updateSeekedBar(ratio);
this.updateDraggingSeek(ratio);
}
this.setState({markerStyle,
tooltipStyle,
tooltipTime: this.props.ratioTime(ratio).toFixed(3)});
}
onMouseLeave(e) {
this.setState({markerStyle: RouteSeeker.hiddenMarkerStyle,
tooltipStyle: RouteSeeker.hiddenTooltipStyle,
isDragging: false});
}
updateSeekedBar(ratio) {
const seekedBarStyle = StyleSheet.create({
seekedBar: {
width: (100 * ratio) + '%'
}
});
this.setState({seekedBarStyle, ratio})
}
onClick(e) {
let ratio = this.mouseEventXOffsetPercent(e) / 100;
ratio = Math.max(0, ratio);
this.updateSeekedBar(ratio);
this.props.onUserSeek(ratio);
}
onPlay() {
window.clearInterval(this.playTimer);
this.playTimer = window.setInterval(() => {
const {videoElement} = this.props;
if(videoElement === null) return;
const {currentTime} = videoElement;
let newRatio = this.props.segmentProgress(currentTime);
if(newRatio === this.state.ratio) {
return;
}
if(newRatio >= 1) {
newRatio = 0;
this.props.onUserSeek(newRatio);
}
if(newRatio >= 0) {
this.updateSeekedBar(newRatio);
this.props.onPlaySeek(newRatio);
}
}, 30);
let {ratio} = this.state;
if(ratio >= 1) {
ratio = 0;
}
this.setState({isPlaying: true, ratio});
this.props.onPlay();
}
onPause() {
window.clearInterval(this.playTimer);
this.setState({isPlaying: false});
this.props.onPause();
}
onMouseDown() {
if(!this.state.isDragging) {
this.setState({isDragging: true});
}
}
onMouseUp() {
if(this.state.isDragging) {
this.setState({isDragging: false});
}
}
render() {
const {seekedBarStyle, markerStyle, tooltipStyle} = this.state;
return (<div className={this.props.className}>
<div className={css(Styles.root)}>
<PlayButton
className={css(Styles.playButton)}
onPlay={this.onPlay}
onPause={this.onPause}
isPlaying={this.state.isPlaying}
/>
<div className={css(Styles.progress)}>
<div className={css(Styles.progressBar)}
onMouseMove={this.onMouseMove}
onMouseLeave={this.onMouseLeave}
onMouseDown={this.onMouseDown}
onMouseUp={this.onMouseUp}
onClick={this.onClick}
ref={(ref) => this.progressBar = ref}>
<div className={css(Styles.tooltip, tooltipStyle.tooltip)}>
{this.state.tooltipTime}
</div>
<div className={css(Styles.marker, markerStyle.marker)}></div>
<div className={css(Styles.progressBarInner,
seekedBarStyle.seekedBar)}></div>
</div>
</div>
</div>
</div>);
}
}
const controlsColor = 'rgba(255,255,255,0.8)';
const Styles = StyleSheet.create({
root: {
flex: 1,
flexDirection: 'row',
display: 'flex',
background: 'linear-gradient(top, rgba(0,0,0,0.0), rgba(0,0,0,0.5))',
userSelect: 'none'
},
playButton: {
height: 25,
width: 25,
display: 'flex',
alignSelf: 'center',
opacity: 0.8,
userSelect: 'none'
},
progress: {
display: 'flex',
flex: 10
},
progressBar: {
height: 15,
width: '100%',
marginTop: 10,
marginBottom: 10,
position: 'relative',
zIndex: 1
},
progressBarInner: {
position: 'absolute',
height: 14,
left: 0,
top: 0,
backgroundColor: controlsColor,
zIndex: 2,
},
marker: {
position: 'absolute',
width: 20,
height: 20,
backgroundColor: 'white',
borderRadius: '50%',
top: '-15%',
zIndex: 3,
},
tooltip: {
position: 'absolute',
zIndex: 2,
top: -25,
height: 20,
width: 50,
borderRadius: 1,
fontSize: 12,
padding: 5,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
textAlign: 'center',
backgroundColor: 'rgba(0,0,0,0.9)',
color: 'rgb(225,225,225)'
},
});