mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 23:21:11 +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
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default class ExtendedVideoPlayer extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
src: PropTypes.string.isRequired,
|
|
alt: PropTypes.string,
|
|
width: PropTypes.number,
|
|
height: PropTypes.number,
|
|
time: PropTypes.number,
|
|
controls: PropTypes.bool.isRequired,
|
|
muted: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
handleLoadedData = () => {
|
|
if (this.props.time) {
|
|
this.video.currentTime = this.props.time;
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.video.addEventListener('loadeddata', this.handleLoadedData);
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
this.video.removeEventListener('loadeddata', this.handleLoadedData);
|
|
}
|
|
|
|
setRef = (c) => {
|
|
this.video = c;
|
|
}
|
|
|
|
render () {
|
|
const { src, muted, controls, alt } = this.props;
|
|
|
|
return (
|
|
<div className='extended-video-player'>
|
|
<video
|
|
ref={this.setRef}
|
|
src={src}
|
|
autoPlay
|
|
role='button'
|
|
tabIndex='0'
|
|
aria-label={alt}
|
|
muted={muted}
|
|
controls={controls}
|
|
loop={!controls}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|