// Based on https://github.com/WordPress/gutenberg/blob/trunk/packages/block-library/src/embed/embed-preview.js /** * Internal dependencies */ /** * External dependencies */ import classnames from 'classnames/dedupe'; /** * WordPress dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { Placeholder, SandBox } from '@wordpress/components'; import { RichText, BlockIcon, } from '@wordpress/block-editor'; import { Component } from '@wordpress/element'; import { createBlock, getDefaultBlockName } from '@wordpress/blocks'; /** * Internal dependencies */ import WpEmbedPreview from './WpEmbedPreview'; class EmbedPreview extends Component { constructor() { super(...arguments); this.hideOverlay = this.hideOverlay.bind(this); this.state = { interactive: false, }; } static getDerivedStateFromProps(nextProps, state) { if (!nextProps.isSelected && state.interactive) { // We only want to change this when the block is not selected, because changing it when // the block becomes selected makes the overlap disappear too early. Hiding the overlay // happens on mouseup when the overlay is clicked. return { interactive: false }; } return null; } hideOverlay() { // This is called onMouseUp on the overlay. We can't respond to the `isSelected` prop // changing, because that happens on mouse down, and the overlay immediately disappears, // and the mouse event can end up in the preview content. We can't use onClick on // the overlay to hide it either, because then the editor misses the mouseup event, and // thinks we're multi-selecting blocks. this.setState({ interactive: true }); } render() { const { preview, previewable, url, type, caption, onCaptionChange, isSelected, className, icon, label, insertBlocksAfter, } = this.props; const { scripts } = preview; const { interactive } = this.state; const { html } = preview; const parsedHost = new URL(url).host.split('.'); const parsedHostBaseUrl = parsedHost .splice(parsedHost.length - 2, parsedHost.length - 1) .join('.'); const iframeTitle = sprintf( // translators: %s: host providing embed content e.g: www.youtube.com __('Embedded content from %s'), parsedHostBaseUrl, ); const sandboxClassnames = classnames( type, className, 'wp-block-embed__wrapper', ); // Disabled because the overlay div doesn't actually have a role or functionality // as far as the user is concerned. We're just catching the first click so that // the block can be selected without interacting with the embed preview that the overlay covers. /* eslint-disable jsx-a11y/no-static-element-interactions */ const embedWrapper = type === 'wp-embed' ? ( ) : (
{ !interactive && (
) }
); /* eslint-enable jsx-a11y/no-static-element-interactions */ return (
{ previewable ? ( embedWrapper ) : ( } label={ label } >

{ url }

{ sprintf( /* translators: %s: host providing embed content e.g: www.youtube.com */ __( "Embedded content from %s can't be previewed in the editor.", ), parsedHostBaseUrl, ) }

) } { (!RichText.isEmpty(caption) || isSelected) && ( insertBlocksAfter( createBlock(getDefaultBlockName()), ) } /> ) }
); } } export default EmbedPreview;