| | 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' ); |
| | }; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | 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 ( |
| | <form ref={ this.formRef } className={ classes }> |
| | { this.props.children } |
| | <input |
| | type="file" |
| | accept={ this.getInputAccept() } |
| | multiple |
| | onChange={ this.uploadFiles } |
| | onClick={ this.onClick } |
| | className="media-library__upload-button-input" |
| | /> |
| | </form> |
| | ); |
| | } |
| | } |
| |
|
| | const mapStateToProps = ( state ) => { |
| | return { |
| | postId: getEditorPostId( state ), |
| | sectionName: getSectionName( state ), |
| | }; |
| | }; |
| |
|
| | export default connect( mapStateToProps, { clearMediaItemErrors } )( |
| | withAddMedia( MediaLibraryUploadButton ) |
| | ); |
| |
|