import page from '@automattic/calypso-router'; import clsx from 'clsx'; import PropTypes from 'prop-types'; import { createRef, Component } from 'react'; import { connect } from 'react-redux'; import { withAddMedia } from 'calypso/data/media/with-add-media'; import { bumpStat } from 'calypso/lib/analytics/mc'; import { VideoPressFileTypes } from 'calypso/lib/media/constants'; import { getAllowedFileTypesForSite, isSiteAllowedFileTypesToBeTrusted, } from 'calypso/lib/media/utils'; import { getEditorPostId } from 'calypso/state/editor/selectors'; import { clearMediaItemErrors } from 'calypso/state/media/actions'; import { getSectionName } from 'calypso/state/ui/selectors'; import './upload-button.scss'; const noop = () => {}; class MediaLibraryUploadButton extends Component { static propTypes = { site: PropTypes.object, onAddMedia: PropTypes.func, className: PropTypes.string, addMedia: PropTypes.func, }; static defaultProps = { onAddMedia: noop, type: 'button', href: null, }; formRef = createRef(); onClick = () => { if ( this.props.onClick ) { this.props.onClick(); } if ( this.props.href ) { page( this.props.href ); } }; uploadFiles = ( event ) => { if ( event.target.files && this.props.site ) { this.props.clearMediaItemErrors( this.props.site.ID ); this.props.addMedia( event.target.files, this.props.site, this.props.postId ); } this.formRef.current.reset(); this.props.onAddMedia(); bumpStat( 'editor_upload_via', 'add_button' ); }; /** * Returns a string of comma-separated file extensions supported for the * current site, to be used as the `accept` attribute in an `input` element * of type `file`. This is a non-standard use of the `accept` attribute, * but is supported in Internet Explorer and Chrome browsers. Further input * validation will occur when attempting to upload the file. * @returns {string} Supported file extensions, as comma-separated string */ getInputAccept = () => { if ( ! isSiteAllowedFileTypesToBeTrusted( this.props.site ) ) { return null; } const allowedFileTypesForSite = getAllowedFileTypesForSite( this.props.site ); return [ ...new Set( allowedFileTypesForSite.concat( VideoPressFileTypes ) ) ] .map( ( type ) => `.${ type }` ) .join(); }; render() { const classes = clsx( 'media-library__upload-button', 'button', this.props.className ); return (
); } } const mapStateToProps = ( state ) => { return { postId: getEditorPostId( state ), sectionName: getSectionName( state ), }; }; export default connect( mapStateToProps, { clearMediaItemErrors } )( withAddMedia( MediaLibraryUploadButton ) );