2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-13 09:04:18 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2019-05-03 10:16:30 -04:00
|
|
|
import Video from 'mastodon/features/video';
|
2017-05-02 20:04:16 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2020-12-06 22:29:37 -05:00
|
|
|
import Footer from 'mastodon/features/picture_in_picture/components/footer';
|
|
|
|
import { getAverageFromBlurhash } from 'mastodon/blurhash';
|
2019-05-03 10:16:30 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class VideoModal extends ImmutablePureComponent {
|
2017-04-13 09:04:18 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
media: ImmutablePropTypes.map.isRequired,
|
2020-11-26 21:24:11 -05:00
|
|
|
statusId: PropTypes.string,
|
2020-04-25 06:16:05 -04:00
|
|
|
options: PropTypes.shape({
|
|
|
|
startTime: PropTypes.number,
|
|
|
|
autoPlay: PropTypes.bool,
|
|
|
|
defaultVolume: PropTypes.number,
|
|
|
|
}),
|
2017-05-12 08:44:10 -04:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2020-12-06 22:29:37 -05:00
|
|
|
onChangeBackgroundColor: PropTypes.func.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2019-05-03 10:16:30 -04:00
|
|
|
componentDidMount () {
|
2021-07-13 23:36:23 -04:00
|
|
|
const { media, onChangeBackgroundColor } = this.props;
|
2019-05-03 10:16:30 -04:00
|
|
|
|
2020-12-06 22:29:37 -05:00
|
|
|
const backgroundColor = getAverageFromBlurhash(media.get('blurhash'));
|
2019-05-03 10:16:30 -04:00
|
|
|
|
2020-12-06 22:29:37 -05:00
|
|
|
if (backgroundColor) {
|
|
|
|
onChangeBackgroundColor(backgroundColor);
|
2019-05-03 10:16:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-13 09:04:18 -04:00
|
|
|
render () {
|
2020-12-06 22:29:37 -05:00
|
|
|
const { media, statusId, onClose } = this.props;
|
2020-04-25 06:16:05 -04:00
|
|
|
const options = this.props.options || {};
|
2019-05-03 10:16:30 -04:00
|
|
|
|
2017-04-13 09:04:18 -04:00
|
|
|
return (
|
2018-03-04 14:32:24 -05:00
|
|
|
<div className='modal-root__modal video-modal'>
|
2019-10-02 21:34:58 -04:00
|
|
|
<div className='video-modal__container'>
|
2017-09-13 21:39:10 -04:00
|
|
|
<Video
|
|
|
|
preview={media.get('preview_url')}
|
2020-11-21 17:19:04 -05:00
|
|
|
frameRate={media.getIn(['meta', 'original', 'frame_rate'])}
|
2019-04-26 21:24:09 -04:00
|
|
|
blurhash={media.get('blurhash')}
|
2017-09-13 21:39:10 -04:00
|
|
|
src={media.get('url')}
|
2020-09-28 07:29:43 -04:00
|
|
|
currentTime={options.startTime}
|
2020-04-25 06:16:05 -04:00
|
|
|
autoPlay={options.autoPlay}
|
2020-09-28 07:29:43 -04:00
|
|
|
volume={options.defaultVolume}
|
2017-09-13 21:39:10 -04:00
|
|
|
onCloseVideo={onClose}
|
2017-12-08 18:55:58 -05:00
|
|
|
detailed
|
2018-09-13 14:31:59 -04:00
|
|
|
alt={media.get('description')}
|
2017-09-13 21:39:10 -04:00
|
|
|
/>
|
2017-04-13 09:04:18 -04:00
|
|
|
</div>
|
2020-12-06 22:29:37 -05:00
|
|
|
|
|
|
|
<div className='media-modal__overlay'>
|
|
|
|
{statusId && <Footer statusId={statusId} withOpenButton onClose={onClose} />}
|
|
|
|
</div>
|
2017-04-13 09:04:18 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|