commit: 0400734df7a38f4b100d601eb8cffd7cd9689c76
parent: a39a92bd22b89f09b9f208b767e2a674aaa05777
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Mon, 7 Nov 2016 19:05:32 +0100
Click video player to toggle playback
Diffstat:
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/app/assets/javascripts/components/components/video_player.jsx b/app/assets/javascripts/components/components/video_player.jsx
@@ -46,11 +46,23 @@ const VideoPlayer = React.createClass({
this.setState({ muted: !this.state.muted });
},
+ handleVideoClick (e) {
+ e.stopPropagation();
+
+ const node = ReactDOM.findDOMNode(this).querySelector('video');
+
+ if (node.paused) {
+ node.play();
+ } else {
+ node.pause();
+ }
+ },
+
render () {
return (
<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' }}>
<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} />
+ <video src={this.props.media.get('url')} autoPlay='true' loop={true} muted={this.state.muted} style={videoStyle} onClick={this.handleVideoClick} />
</div>
);
}