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