Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy Handler: only handle paste event once #34430

Merged
merged 8 commits into from
Sep 17, 2021
5 changes: 5 additions & 0 deletions packages/block-editor/src/components/copy-handler/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export function useClipboardHandler() {
return;
}

const eventDefaultPrevented = event.defaultPrevented;
event.preventDefault();
gwwar marked this conversation as resolved.
Show resolved Hide resolved

if ( event.type === 'copy' || event.type === 'cut' ) {
Expand All @@ -130,6 +131,10 @@ export function useClipboardHandler() {
if ( event.type === 'cut' ) {
removeBlocks( selectedBlockClientIds );
} else if ( event.type === 'paste' ) {
if ( eventDefaultPrevented ) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Curious: why not directly use event.defaultPrevented here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On line 116 in this file we call event.preventDefault, so I store what this value is before we do so. Alternatively we can call event.preventDefault() before each action, but it may be easy to forget to call it when there are multiple exit points

// This was likely already handled in rich-text/use-paste-handler.js
return;
}
const {
__experimentalCanUserUseUnfilteredHTML: canUserUseUnfilteredHTML,
} = getSettings();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Copy/cut/paste of whole blocks can copy group onto non textual element (image, spacer) 1`] = `
"<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:group -->
<div class=\\"wp-block-group\\"><!-- wp:paragraph -->
<p>P</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->"
`;

exports[`Copy/cut/paste of whole blocks should copy and paste individual blocks 1`] = `
"<!-- wp:paragraph -->
<p>Here is a unique string so we can test copying.</p>
Expand Down Expand Up @@ -56,6 +68,18 @@ exports[`Copy/cut/paste of whole blocks should cut and paste individual blocks 2
<!-- /wp:paragraph -->"
`;

exports[`Copy/cut/paste of whole blocks should handle paste events once 1`] = `
"<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:group -->
<div class=\\"wp-block-group\\"><!-- wp:paragraph -->
<p>P</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->"
`;

exports[`Copy/cut/paste of whole blocks should respect inline copy in places like input fields and textareas 1`] = `
"<!-- wp:shortcode -->
[my-shortcode]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,91 @@ describe( 'Copy/cut/paste of whole blocks', () => {
await pressKeyWithModifier( 'primary', 'v' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );

it( 'should handle paste events once', async () => {
// Add group block with paragraph
await insertBlock( 'Group' );
await page.click( '.block-editor-button-block-appender' );
await page.click( '.editor-block-list-item-paragraph' );
await page.keyboard.type( 'P' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowLeft' );
// Cut group
await pressKeyWithModifier( 'primary', 'x' );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Generally, after cutting, it's good to test setup with getEditedPostContent to make sure that something happened. If we copy/paste and check the content only after that, it's possible that nothing at all has happened.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good call, updated in c8114ad

await page.keyboard.press( 'Enter' );

await page.evaluate( () => {
window.e2eTestPasteOnce = [];
let oldBlocks = wp.data.select( 'core/block-editor' ).getBlocks();
wp.data.subscribe( () => {
const blocks = wp.data
.select( 'core/block-editor' )
.getBlocks();
if ( blocks !== oldBlocks ) {
window.e2eTestPasteOnce.push(
blocks.map( ( { clientId, name } ) => ( {
clientId,
name,
} ) )
);
}
oldBlocks = blocks;
} );
} );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder how useful testing for this is, if there's no consequences for the content, it doesn't really matter how many times blocks are replaced. It's mostly a purity thing that doesn't really justify all the additional test code to maintain.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this is a bit fragile, but I did want some tests to document the behavior since it's a bit of an odd side effect to consider. I'll see if I can get the E2Es to be stable and we can revisit if its flaky.

Overall, fixing this is more minor though I do see that this branch also fixes #34177


// Paste
await pressKeyWithModifier( 'primary', 'v' );

// Blocks should only be modified once, not twice with new clientIds on a single paste action
const blocksUpdated = await page.evaluate(
() => window.e2eTestPasteOnce
);

expect( blocksUpdated.length ).toEqual( 1 );
gwwar marked this conversation as resolved.
Show resolved Hide resolved
expect( await getEditedPostContent() ).toMatchSnapshot();
} );

it( 'can copy group onto non textual element (image, spacer)', async () => {
// Add group block with paragraph
await insertBlock( 'Group' );
await page.click( '.block-editor-button-block-appender' );
await page.click( '.editor-block-list-item-paragraph' );
await page.keyboard.type( 'P' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowLeft' );
// Cut group
await pressKeyWithModifier( 'primary', 'x' );
await page.keyboard.press( 'Enter' );
// Insert a non textual element (a spacer)
await insertBlock( 'Spacer' );
// Spacer is focused
await page.evaluate( () => {
window.e2eTestPasteOnce = [];
let oldBlocks = wp.data.select( 'core/block-editor' ).getBlocks();
wp.data.subscribe( () => {
const blocks = wp.data
.select( 'core/block-editor' )
.getBlocks();
if ( blocks !== oldBlocks ) {
window.e2eTestPasteOnce.push(
blocks.map( ( { clientId, name } ) => ( {
clientId,
name,
} ) )
);
}
oldBlocks = blocks;
} );
} );

await pressKeyWithModifier( 'primary', 'v' );

// Paste should be handled on non-textual elements and only handled once.
const blocksUpdated = await page.evaluate(
() => window.e2eTestPasteOnce
);

expect( blocksUpdated.length ).toEqual( 1 );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
} );