2016-09-17 09:05:02 -07:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 08:20:52 -08:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import IconButton from './icon_button';
|
2016-11-23 02:23:32 -08:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2016-11-18 06:36:16 -08:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
toggle_sound: { id: 'video_player.toggle_sound', defaultMessage: 'Toggle sound' }
|
|
|
|
});
|
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-11-23 02:23:32 -08:00
|
|
|
const spoilerStyle = {
|
2016-11-23 09:53:23 -08:00
|
|
|
marginTop: '8px',
|
2016-11-23 02:23:32 -08:00
|
|
|
background: '#000',
|
|
|
|
color: '#fff',
|
|
|
|
textAlign: 'center',
|
|
|
|
height: '100%',
|
2016-11-23 09:53:23 -08:00
|
|
|
cursor: 'pointer',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
flexDirection: 'column'
|
2016-11-23 02:23:32 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
const spoilerSpanStyle = {
|
|
|
|
display: 'block',
|
2016-11-23 09:53:23 -08:00
|
|
|
fontSize: '14px'
|
2016-11-23 02:23:32 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
const spoilerSubSpanStyle = {
|
2016-11-23 09:53:23 -08:00
|
|
|
display: 'block',
|
2016-11-23 02:23:32 -08:00
|
|
|
fontSize: '11px',
|
|
|
|
fontWeight: '500'
|
|
|
|
};
|
|
|
|
|
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,
|
2016-12-04 03:26:12 -08:00
|
|
|
height: React.PropTypes.number,
|
|
|
|
sensitive: React.PropTypes.bool
|
2016-09-25 05:58:07 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps () {
|
|
|
|
return {
|
|
|
|
width: 196,
|
|
|
|
height: 110
|
|
|
|
};
|
2016-09-17 09:05:02 -07:00
|
|
|
},
|
|
|
|
|
2016-09-18 03:39:00 -07:00
|
|
|
getInitialState () {
|
|
|
|
return {
|
2016-11-23 02:23:32 -08:00
|
|
|
visible: false,
|
2016-09-18 03:39:00 -07:00
|
|
|
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-11-07 10:05:32 -08:00
|
|
|
handleVideoClick (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
const node = ReactDOM.findDOMNode(this).querySelector('video');
|
|
|
|
|
|
|
|
if (node.paused) {
|
|
|
|
node.play();
|
|
|
|
} else {
|
|
|
|
node.pause();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-11-23 02:23:32 -08:00
|
|
|
handleOpen () {
|
|
|
|
this.setState({ visible: true });
|
|
|
|
},
|
|
|
|
|
2016-09-17 09:05:02 -07:00
|
|
|
render () {
|
2016-11-23 02:23:32 -08:00
|
|
|
const { media, intl, width, height, sensitive } = this.props;
|
|
|
|
|
|
|
|
if (sensitive && !this.state.visible) {
|
|
|
|
return (
|
2016-11-23 09:53:23 -08:00
|
|
|
<div style={{...spoilerStyle, width: `${width}px`, height: `${height}px` }} onClick={this.handleOpen}>
|
2016-11-23 02:23:32 -08:00
|
|
|
<span style={spoilerSpanStyle}><FormattedMessage id='status.sensitive_warning' defaultMessage='Sensitive content' /></span>
|
|
|
|
<span style={spoilerSubSpanStyle}><FormattedMessage id='status.sensitive_toggle' defaultMessage='Click to view' /></span>
|
|
|
|
</div>
|
|
|
|
);
|
2016-12-04 03:26:12 -08:00
|
|
|
} else if (!sensitive && !this.state.visible) {
|
|
|
|
return (
|
|
|
|
<div style={{ cursor: 'pointer', position: 'relative', marginTop: '8px', width: `${width}px`, height: `${height}px`, background: `url(${media.get('preview_url')}) no-repeat center`, backgroundSize: 'cover' }} onClick={this.handleOpen}>
|
|
|
|
<div style={{ position: 'absolute', top: '50%', left: '50%', fontSize: '36px', transform: 'translate(-50%, -50%)', padding: '5px', borderRadius: '100px', color: 'rgba(255, 255, 255, 0.8)' }}><i className='fa fa-play' /></div>
|
|
|
|
</div>
|
|
|
|
);
|
2016-11-23 02:23:32 -08:00
|
|
|
}
|
2016-11-16 08:20:52 -08:00
|
|
|
|
2016-09-17 09:05:02 -07:00
|
|
|
return (
|
2016-11-16 08:20:52 -08:00
|
|
|
<div style={{ cursor: 'default', marginTop: '8px', overflow: 'hidden', width: `${width}px`, height: `${height}px`, boxSizing: 'border-box', background: '#000', position: 'relative' }}>
|
2017-01-07 17:21:50 -08:00
|
|
|
<div style={muteStyle}><IconButton title={intl.formatMessage(messages.toggle_sound)} icon={this.state.muted ? 'volume-off' : 'volume-up'} onClick={this.handleClick} /></div>
|
2016-11-16 08:20:52 -08:00
|
|
|
<video src={media.get('url')} autoPlay='true' loop={true} muted={this.state.muted} style={videoStyle} onClick={this.handleVideoClick} />
|
2016-09-17 09:05:02 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 08:20:52 -08:00
|
|
|
export default injectIntl(VideoPlayer);
|