2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2017-03-04 22:17:10 +01:00
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
export default class ExtendedVideoPlayer extends React.PureComponent {
|
2017-03-04 22:17:10 +01:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
|
|
|
src: PropTypes.string.isRequired,
|
2017-09-28 15:31:31 +02:00
|
|
|
alt: PropTypes.string,
|
2017-07-13 22:18:18 +02:00
|
|
|
width: PropTypes.number,
|
|
|
|
height: PropTypes.number,
|
2017-05-12 14:44:10 +02:00
|
|
|
time: PropTypes.number,
|
|
|
|
controls: PropTypes.bool.isRequired,
|
2017-05-20 17:31:47 +02:00
|
|
|
muted: PropTypes.bool.isRequired,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
handleLoadedData = () => {
|
2017-04-13 17:01:09 +02:00
|
|
|
if (this.props.time) {
|
|
|
|
this.video.currentTime = this.props.time;
|
|
|
|
}
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-04-13 17:01:09 +02:00
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
this.video.addEventListener('loadeddata', this.handleLoadedData);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-04-13 17:01:09 +02:00
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
this.video.removeEventListener('loadeddata', this.handleLoadedData);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-04-13 17:01:09 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
setRef = (c) => {
|
2017-04-13 17:01:09 +02:00
|
|
|
this.video = c;
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2017-04-13 17:01:09 +02:00
|
|
|
|
2017-03-04 22:17:10 +01:00
|
|
|
render () {
|
2017-09-28 15:31:31 +02:00
|
|
|
const { src, muted, controls, alt } = this.props;
|
|
|
|
|
2017-03-04 22:17:10 +01:00
|
|
|
return (
|
2017-07-17 19:05:29 +02:00
|
|
|
<div className='extended-video-player'>
|
2017-04-13 17:01:09 +02:00
|
|
|
<video
|
|
|
|
ref={this.setRef}
|
2017-09-28 15:31:31 +02:00
|
|
|
src={src}
|
2017-04-13 17:01:09 +02:00
|
|
|
autoPlay
|
2017-09-28 15:31:31 +02:00
|
|
|
role='button'
|
|
|
|
tabIndex='0'
|
|
|
|
aria-label={alt}
|
|
|
|
muted={muted}
|
|
|
|
controls={controls}
|
|
|
|
loop={!controls}
|
2017-04-13 17:01:09 +02:00
|
|
|
/>
|
2017-03-04 22:17:10 +01:00
|
|
|
</div>
|
|
|
|
);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|