2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-13 13:04:18 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-12-04 07:26:40 +00:00
|
|
|
import Video from 'flavours/glitch/features/video';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-04-13 13:04:18 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class VideoModal extends ImmutablePureComponent {
|
2017-04-13 13:04:18 +00:00
|
|
|
|
2019-05-03 14:16:30 +00:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
media: ImmutablePropTypes.map.isRequired,
|
2020-11-27 02:24:11 +00:00
|
|
|
statusId: PropTypes.string,
|
2020-04-25 10:16:05 +00:00
|
|
|
options: PropTypes.shape({
|
|
|
|
startTime: PropTypes.number,
|
|
|
|
autoPlay: PropTypes.bool,
|
|
|
|
defaultVolume: PropTypes.number,
|
|
|
|
}),
|
2017-05-12 12:44:10 +00:00
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
2017-04-13 13:04:18 +00:00
|
|
|
render () {
|
2020-11-27 02:24:11 +00:00
|
|
|
const { media, onClose } = this.props;
|
2020-04-25 10:16:05 +00:00
|
|
|
const options = this.props.options || {};
|
2019-05-03 14:16:30 +00:00
|
|
|
|
2017-04-13 13:04:18 +00:00
|
|
|
return (
|
2018-04-08 21:15:25 +00:00
|
|
|
<div className='modal-root__modal video-modal'>
|
2019-10-03 01:34:58 +00:00
|
|
|
<div className='video-modal__container'>
|
2017-09-14 01:39:10 +00:00
|
|
|
<Video
|
|
|
|
preview={media.get('preview_url')}
|
2020-11-21 22:19:04 +00:00
|
|
|
frameRate={media.getIn(['meta', 'original', 'frame_rate'])}
|
2019-04-27 01:24:09 +00:00
|
|
|
blurhash={media.get('blurhash')}
|
2017-09-14 01:39:10 +00:00
|
|
|
src={media.get('url')}
|
2020-09-28 11:29:43 +00:00
|
|
|
currentTime={options.startTime}
|
2020-04-25 10:16:05 +00:00
|
|
|
autoPlay={options.autoPlay}
|
2020-09-28 11:29:43 +00:00
|
|
|
volume={options.defaultVolume}
|
2017-09-14 01:39:10 +00:00
|
|
|
onCloseVideo={onClose}
|
2018-01-13 18:41:20 +00:00
|
|
|
detailed
|
2018-09-11 13:45:51 +00:00
|
|
|
alt={media.get('description')}
|
2017-09-14 01:39:10 +00:00
|
|
|
/>
|
2017-04-13 13:04:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|