@wordpress/block-library
Version:
Block library for the WordPress editor.
39 lines (36 loc) • 831 B
JavaScript
/**
* WordPress dependencies
*/
import { BlockIcon, MediaPlaceholder } from '@wordpress/block-editor';
import { __ } from '@wordpress/i18n';
import { cover as icon } from '@wordpress/icons';
/**
* Internal dependencies
*/
import { ALLOWED_MEDIA_TYPES } from '../shared';
export default function CoverPlaceholder( {
disableMediaButtons = false,
children,
onSelectMedia,
onError,
style,
toggleUseFeaturedImage,
} ) {
return (
<MediaPlaceholder
icon={ <BlockIcon icon={ icon } /> }
labels={ {
title: __( 'Cover' ),
} }
onSelect={ onSelectMedia }
accept="image/*,video/*"
allowedTypes={ ALLOWED_MEDIA_TYPES }
disableMediaButtons={ disableMediaButtons }
onToggleFeaturedImage={ toggleUseFeaturedImage }
onError={ onError }
style={ style }
>
{ children }
</MediaPlaceholder>
);
}