Last active
September 20, 2018 10:35
-
-
Save rin/e4e7219f7a53e03538d5d4db04bedb0c to your computer and use it in GitHub Desktop.
React component for videojs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { PropTypes as T } from 'prop-types'; | |
import videojs from 'video.js'; | |
// a component for use with videojs | |
// use it like this: | |
// <VideoPreview video={myVideo} key={myVideo.id} /> | |
export default class VideoPreview extends Component { | |
ref = React.createRef(); | |
player = null; | |
static propTypes = { | |
video: T.object.isRequired, | |
}; | |
componentDidMount () { | |
this.player: videojs(this.ref.current.firstChild, | |
{ fluid: true, controls: true }); | |
} | |
componentWillUnmount () { | |
this.player.dispose(); | |
} | |
render () { | |
const { video } = this.props; | |
return ( | |
<div ref={this.ref}> | |
<video | |
id={ `video-${video.id}` } | |
className="video-js" | |
> | |
{ video.sources.map(({ id, url, mimeType }) => | |
<source key={id} src={url} type={mimeType} /> | |
)} | |
</video> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment