mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-02 17:21:12 +01:00
4ec1771165
* Fix #117 - Add ability to specify alternative text for media attachments - POST /api/v1/media accepts `description` straight away - PUT /api/v1/media/:id to update `description` (only for unattached ones) - Serialized as `name` of Document object in ActivityPub - Uploads form adjusted for better performance and description input * Add tests * Change undo button blend mode to difference
33 lines
849 B
JavaScript
33 lines
849 B
JavaScript
import React from 'react';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import PropTypes from 'prop-types';
|
|
import Video from '../../video';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
export default class VideoModal extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
media: ImmutablePropTypes.map.isRequired,
|
|
time: PropTypes.number,
|
|
onClose: PropTypes.func.isRequired,
|
|
};
|
|
|
|
render () {
|
|
const { media, time, onClose } = this.props;
|
|
|
|
return (
|
|
<div className='modal-root__modal media-modal'>
|
|
<div>
|
|
<Video
|
|
preview={media.get('preview_url')}
|
|
src={media.get('url')}
|
|
startTime={time}
|
|
onCloseVideo={onClose}
|
|
description={media.get('description')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|