Skip to content
Extraits de code Groupes Projets
  • Eugen Rochko's avatar
    4ec17711
    Add ability to specify alternative text for media attachments (#5123) · 4ec17711
    Eugen Rochko a rédigé
    * 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
    4ec17711
    Historique
    Add ability to specify alternative text for media attachments (#5123)
    Eugen Rochko a rédigé
    * 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
extended_video_player.js 1,14 Kio
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>
    );
  }

}