2016-09-17 09:05:02 -07:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-09-18 03:39:00 -07:00
|
|
|
import IconButton from './icon_button';
|
2016-09-17 09:05:02 -07:00
|
|
|
|
2016-11-07 09:42:39 -08:00
|
|
|
const videoStyle = {
|
|
|
|
position: 'relative',
|
|
|
|
zIndex: '1',
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
objectFit: 'cover',
|
|
|
|
top: '50%',
|
|
|
|
transform: 'translateY(-50%)'
|
|
|
|
};
|
|
|
|
|
|
|
|
const muteStyle = {
|
|
|
|
position: 'absolute',
|
|
|
|
top: '10px',
|
|
|
|
left: '10px',
|
|
|
|
opacity: '0.8',
|
|
|
|
zIndex: '5'
|
|
|
|
};
|
|
|
|
|
2016-09-17 09:05:02 -07:00
|
|
|
const VideoPlayer = React.createClass({
|
|
|
|
propTypes: {
|
2016-09-25 05:58:07 -07:00
|
|
|
media: ImmutablePropTypes.map.isRequired,
|
|
|
|
width: React.PropTypes.number,
|
|
|
|
height: React.PropTypes.number
|
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps () {
|
|
|
|
return {
|
|
|
|
width: 196,
|
|
|
|
height: 110
|
|
|
|
};
|
2016-09-17 09:05:02 -07:00
|
|
|
},
|
|
|
|
|
2016-09-18 03:39:00 -07:00
|
|
|
getInitialState () {
|
|
|
|
return {
|
|
|
|
muted: true
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-09-17 09:05:02 -07:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-09-18 03:39:00 -07:00
|
|
|
handleClick () {
|
|
|
|
this.setState({ muted: !this.state.muted });
|
|
|
|
},
|
|
|
|
|
2016-09-17 09:05:02 -07:00
|
|
|
render () {
|
|
|
|
return (
|
2016-09-25 05:58:07 -07:00
|
|
|
<div style={{ cursor: 'default', marginTop: '8px', overflow: 'hidden', width: `${this.props.width}px`, height: `${this.props.height}px`, boxSizing: 'border-box', background: '#000', position: 'relative' }}>
|
2016-11-07 09:42:39 -08:00
|
|
|
<div style={muteStyle}><IconButton title='Toggle sound' icon={this.state.muted ? 'volume-up' : 'volume-off'} onClick={this.handleClick} /></div>
|
|
|
|
<video src={this.props.media.get('url')} autoPlay='true' loop={true} muted={this.state.muted} style={videoStyle} />
|
2016-09-17 09:05:02 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default VideoPlayer;
|