diff --git a/packages/block-editor/src/components/block-settings-menu/block-settings-dropdown.js b/packages/block-editor/src/components/block-settings-menu/block-settings-dropdown.js index 91ce16f5273634..3747529a9460ef 100644 --- a/packages/block-editor/src/components/block-settings-menu/block-settings-dropdown.js +++ b/packages/block-editor/src/components/block-settings-menu/block-settings-dropdown.js @@ -17,13 +17,13 @@ import { } from '@wordpress/components'; import { useDispatch, useSelect } from '@wordpress/data'; import { moreVertical } from '@wordpress/icons'; -import { useCallback, useRef, useEffect, useState } from '@wordpress/element'; +import { useCallback, useRef, useState } from '@wordpress/element'; import { __, sprintf } from '@wordpress/i18n'; import { store as keyboardShortcutsStore, __unstableUseShortcutEventMatch, } from '@wordpress/keyboard-shortcuts'; -import { pipe } from '@wordpress/compose'; +import { pipe, useCopyToClipboard } from '@wordpress/compose'; /** * Internal dependencies @@ -44,73 +44,20 @@ const { DropdownMenuSeparatorV2, } = unlock( componentsPrivateApis ); -const clipboardPermissionCache = { - read: undefined, - write: undefined, -}; - -async function hasClipboardPermission( type ) { - if ( type !== 'write' && type !== 'read' ) { - return false; - } - if ( clipboardPermissionCache[ type ] !== undefined ) { - return clipboardPermissionCache[ type ]; - } - - let hasSupport = false; - try { - const result = await window.navigator.permissions.query( { - name: `clipboard-${ type }`, - } ); - hasSupport = result.state === 'granted' || result.state === 'prompt'; - } catch ( error ) { - // Possibly the permission is denied. - // TODO: show an error notice - } - - clipboardPermissionCache[ type ] = hasSupport; - return hasSupport; -} - -async function writeToClipboard( { text, onSuccess } ) { - try { - // Only available on sites using `https` (and localhost) - if ( ! window.navigator.clipboard ) { - // TODO: show an error notice - return; - } - - await window.navigator.clipboard.writeText( text ); - onSuccess?.(); - } catch ( error ) { - // Possibly the permission is denied. - // TODO: show an error notice - } -} - -function CopyMenuItem( { blocks, onCopy, label } ) { - const [ supportsClipboard, setSupportsClipboard ] = useState( false ); +function CopyMenuItem( { blocks, onCopy, label, clipboardContainer } ) { + const ref = useCopyToClipboard( + () => serialize( blocks ), + onCopy, + clipboardContainer + ); const copyMenuItemBlocksLabel = blocks.length > 1 ? __( 'Copy blocks' ) : __( 'Copy' ); const copyMenuItemLabel = label ? label : copyMenuItemBlocksLabel; - useEffect( () => { - async function testSupport() { - const hasPermission = await hasClipboardPermission( 'write' ); - setSupportsClipboard( hasPermission ); - } - - testSupport(); - }, [] ); - return ( { - await writeToClipboard( { - text: serialize( blocks ), - onSuccess: onCopy, - } ); // Keep the dropdown menu open. event.preventDefault(); } } @@ -120,31 +67,6 @@ function CopyMenuItem( { blocks, onCopy, label } ) { ); } -function PasteStylesMenuItem( { onSelect } ) { - const [ supportsClipboard, setSupportsClipboard ] = useState( false ); - useEffect( () => { - async function testSupport() { - const hasPermission = await hasClipboardPermission( 'read' ); - setSupportsClipboard( hasPermission ); - } - - testSupport(); - }, [] ); - - return ( - { - onSelect?.(); - // Keep the dropdown menu open. - event.preventDefault(); - } } - > - { __( 'Paste styles' ) } - - ); -} - const Shortcut = ( { shortcut } ) => { if ( ! shortcut ) { return null; @@ -325,6 +247,8 @@ export function BlockSettingsDropdown( { // external id from the parent `ToolbarItem` that can't be ignored. const dropdownTriggerId = toggleProps?.id; + const dropdownMenuRef = useRef( null ); + return ( ( ) } - + { canDuplicate && ( - + { + onPasteStyles(); + // Keep the dropdown menu open. + event.preventDefault(); + } } + > + { __( 'Paste styles' ) } + ) }