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

[RNMobile] Adds Clipboard Link Suggestion to Image block and Buttons block #35972

Merged
merged 15 commits into from
Nov 22, 2021

Conversation

ttahmouch
Copy link
Contributor

@ttahmouch ttahmouch commented Oct 26, 2021

Description

Is your feature request related to a problem? Please describe.
Whenever the user opens the settings for a block that can be linked to a URL (Image, Button), the URL in the clipboard is pasted automatically in the Link to field. In order to remove that automatically link, they need to tap Link to and then request a removal. This behavior is unexpected for the user and has the potential to expose sensitive information inadvertently posing a security issue.

Describe the solution you'd like
The desired solution would introduce the following changes:

1. The Link to field will NOT be auto-populated
2. When the Link to screen opens a new option will be added below the input field From Clipboard
3. When the user presses on the From Clipboard option the input field is populated with the contents of the clipboard
-- @antonis
Original Issue

How has this been tested?

I smoke tested the change in an iOS simulator to see its behavior at runtime. I have not checked Android yet.
I also wrote automated integration tests for the UX behavior.

Designing the Expectations

We had a brief discussion early on before writing any code to understand how the UX should behave. We attempted to capture those expectations in writing to have requirements to implement against.

      GIVEN the Link Settings sheet displays,
      AND the Clipboard has a URL copied,
      THEN the `Link to` field in the Link Settings should be populated with the placeholder text, i.e., `Search or type URL`.

      GIVEN the Link Picker sheet displays,
      AND the Clipboard has a URL copied that is different from the contents of the text input field,
      THEN the `From Clipboard` table cell should be populated with the URL from the Clipboard.

      GIVEN the Link Picker sheet displays with the `From Clipboard` table cell,
      WHEN the Clipboard is cleared or changed to something that is NOT a URL,
      THEN the `From Clipboard` table cell should disappear.

      GIVEN the Link Picker sheet displays,
      AND the contents of the Clipboard are IDENTICAL to the contents of the text input field,
      THEN do NOT display the `From Clipboard` table cell.

      GIVEN the Link Picker sheet displays,
      AND the `From Clipboard` table cell is pressed,
      THEN the `Search or type URL` text input field is populated with the URL from the Clipboard,
      AND the `Add this link` table cell is repopulated with the new URL from the Clipboard.

Designing the Tests

I integration tested the <ImageEdit/> and <ButtonEdit/> components implicitly by testing the entire <Editor/> component from the surface. I wanted to try and make the testing more "pure" by making it resemble a functional test as closely as possible. By that I mean, I wanted to pretend that I have a screen open, and interact with the screen; not an isolated UI element, i.e., <ImageEdit/> or <ButtonEdit/>.

  • The integration tests in this PR assert UX expectations for the <LinkSettings/> component as a whole which includes the subsequent screen with the <LinkPicker/>.
  • The integrations tests assert the following:
    + The Link Settings should NOT autofill a URL from the Clipboard without user action.
    + The Link Picker should NOT display the Clipboard Link Suggestion if the Clipboard text is NOT a valid URL.
    + The Link Picker should NOT display the Clipboard Link Suggestion if the Clipboard text is a valid URL, but is also the current link URL.
    + The Link Picker should display the Clipboard Link Suggestion if the Clipboard text is a valid URL, and is NOT the current link URL.
    + The Link Settings should be updated with the Clipboard URL if the user selects the Clipboard Link Suggestion.
  • Deliberately structured the test cases in "Given-When-Then (GWT) Gherkin-style."
  • Parameterized the tests to see how the same tests may be leveraged for other block types that have Link Settings, e.g., Embed and Button to avoid repeating the tests for those block types.
  • Deliberately removed existing unit tests in this module for the moment in order to make transitioning from react-test-renderer to @testing-library/react-native easier to manage. They will either be re-added in the near future, or converted to complementary integration tests.
  • I reverted all the test removals when I was resolving a merge conflict. As a result, I moved all of my tests to a new module in the link-settings component, i.e., packages/components/src/mobile/link-settings/test/edit.native.js. (The module should probably be renamed since it's no longer testing the "Edit Button/Image Block" module specifically.)
$ # Run the integration tests.
$ npm run native test -- packages/components/src/mobile/link-settings/test/edit.native.js
...
 PASS  ../components/src/mobile/link-settings/test/edit.native.js (22.169 s)
  <LinkSettings/> from "core/button"
    ✓ should display the LINK SETTINGS with an EMPTY LINK TO field. (644 ms)
    <LinkPicker/>
      Hide Clipboard Link Suggestion - Invalid URL in Clipboard
        ✓ should display the LINK PICKER with NO FROM CLIPBOARD CELL. (197 ms)
      Hide Clipboard Link Suggestion - Valid and Same URL in Clipboard
        ✓ should display the LINK PICKER with NO FROM CLIPBOARD CELL. (302 ms)
      Show Clipboard Link Suggestion - Valid and Different URL in Clipboard
        ✓ should display the LINK PICKER with the FROM CLIPBOARD CELL populated with the URL from the CLIPBOARD. (172 ms)
      Press Clipboard Link Suggestion
        ✓ should display the LINK SETTINGS with the URL from the CLIPBOARDpopulated in the LINK TO field. (180 ms)
  <LinkSettings/> from "core/image"
    ✓ should display the LINK SETTINGS with an EMPTY LINK TO field. (96 ms)
    <LinkPicker/>
      Hide Clipboard Link Suggestion - Invalid URL in Clipboard
        ✓ should display the LINK PICKER with NO FROM CLIPBOARD CELL. (154 ms)
      Hide Clipboard Link Suggestion - Valid and Same URL in Clipboard
        ✓ should display the LINK PICKER with NO FROM CLIPBOARD CELL. (241 ms)
      Show Clipboard Link Suggestion - Valid and Different URL in Clipboard
        ✓ should display the LINK PICKER with the FROM CLIPBOARD CELL populated with the URL from the CLIPBOARD. (154 ms)
      Press Clipboard Link Suggestion
        ✓ should display the LINK SETTINGS with the URL from the CLIPBOARDpopulated in the LINK TO field. (164 ms)

Test Suites: 1 passed, 1 total
Tests:       10 passed, 10 total
Snapshots:   0 total
Time:        22.623 s

Aside

Mocking Image.getSize and Clipboard.[gs]etString for the whole test runtime.

This will help avoid inadvertently making async I/O operations to underlying Native Modules or HTTP when integration-testing our components to ensure more stability in the test runtime.

Image.getSize
  • Mocked Image.getSize specifically, i.e., not the whole Image module from react-native.
  • Rewrote the implementation to simply call the provided success callback synchronously.
  • It returns default values of 0 for width and height pretending to have retrieved the image URI async using HTTP.
Clipboard.[gs]etString
  • Mocked Clipboard.[gs]etString which is the entire Clipboard module from react-native.
  • Note: Clipboard was deprecated in favor of @react-native-community/clipboard and will be removed in the future.
  • Rewrote the implementation to simply do nothing on setString.
  • Rewrote the implementation to simply return a Promise that resolves to '' on getString.
  • Staging strings returned from the Clipboard in future integration tests can be as simple as Clipboard.getString.mockReturnValueOnce( 'value' ).

Resolving runtime error when running npm run native test.

    console.error
        Warning: Each child in a list should have a unique "key" prop.

        Check the render method of `StylePreview`. See https://reactjs.org/link/warning-keys for more information.
    ...
          86 |              >
          87 |                      <View style={ [ styles.container, { width: itemWidth } ] }>
        > 88 |                              <View style={ styles.imageWrapper }>
             |                              ^
          89 |                                      { isActive &&
          90 |                                              getOutline( [ styles.outline, innerOutlineStyle ] ) }
          91 |                                      <Image

Related Issue
Related PR

Screenshots

Before (iOS)

0-before-auto-clipboard.mp4

After (iOS)

https://user-images.githubusercontent.com/3058263/139108312-56d9b2f4-551d-4c5a-a275-da89160a9aa6.mp4

Button Edit Block (iOS)

after-button-edit-480.mp4

Image Edit Block (iOS)

after-image-edit-480.mp4

GridIcons 📋 SVG (iOS)

image

After - Button Edit Block (Android)

android-button-clipboard.mp4

After - Image Edit Block (Android)

android-image-clipboard.mp4

Types of changes

Feature

Checklist:

  • My code is tested.
  • My code follows the WordPress code style.
  • My code follows the accessibility standards.
  • I've tested my changes with keyboard and screen readers.
  • My code has proper inline documentation.
  • I've included developer documentation if appropriate.
  • I've updated all React Native files affected by any refactorings/renamings in this PR (please manually search all *.native.js files for terms that need renaming or removal).

ttahmouch added 4 commits October 26, 2021 13:29
```
console.error
    Warning: Each child in a list should have a unique "key" prop.

    Check the render method of `StylePreview`. See https://reactjs.org/link/warning-keys for more information.
...
      86 | 		>
      87 | 			<View style={ [ styles.container, { width: itemWidth } ] }>
    > 88 | 				<View style={ styles.imageWrapper }>
         | 				^
      89 | 					{ isActive &&
      90 | 						getOutline( [ styles.outline, innerOutlineStyle ] ) }
      91 | 					<Image
```
…the whole test runtime.

This will help avoid inadvertently making async I/O operations to underlying Native Modules
or HTTP when integration-testing our components to ensure more stability in the test runtime.

+ Mocked `Image.getSize` specifically, i.e., not the whole `Image` module from `react-native`.
+ Rewrote the implementation to simply call the provided success callback synchronously.
    + It returns default values of `0` for `width` and `height` pretending to have retrieved the image URI async using HTTP.

+ Mocked `Clipboard.[gs]etString` which is the entire `Clipboard` module from `react-native`.
+ **Note:** `Clipboard` was deprecated in favor of `@react-native-community/clipboard` and will be removed in the future.
+ Rewrote the implementation to simply do nothing on `setString`.
+ Rewrote the implementation to simply return a `Promise` that resolves to `''` on `getString`.
+ Staging strings returned from the `Clipboard` in future integration tests can be as simple as `Clipboard.getString.mockReturnValueOnce( 'value' )`.
…ipboard into the `Link Settings > Link To`

field when editing an `Image` block type.

+ Deliberately removed existing unit tests in this module for the moment in order to make transitioning
from `react-test-renderer` to `@testing-library/react-native` easier to manage. They will either be
re-added in the near future, or converted to complementary integration tests.

+ Deliberately structured the test cases in "Given-When-Then (GWT) Gherkin-style."

+ Added the first test that necessitates the change for forcing auto-population of URLs from the Clipboard
to NOT take place when editing an `<ImageEdit/>` block.

+ Intend to parameterize the tests to see how the same tests may be leveraged for other block types that
have `Link Settings`, e.g., `Embed` and `Button` to avoid repeating the tests for those block types.

+ Integration tests will eventually be written for various planned user experience scenarios including:

```
  GIVEN the Link Settings sheet displays,
  AND the Clipboard has a URL copied,
  THEN the `Link to` field in the Link Settings should be populated with the placeholder text, i.e., `Search or type URL`.

  GIVEN the Link Picker sheet displays,
  AND the Clipboard has a URL copied that is different from the contents of the text input field,
  THEN the `From Clipboard` table cell should be populated with the URL from the Clipboard.

  GIVEN the Link Picker sheet displays with the `From Clipboard` table cell,
  WHEN the Clipboard is cleared or changed to something that is NOT a URL,
  THEN the `From Clipboard` table cell should disappear.

  GIVEN the Link Picker sheet displays,
  AND the contents of the Clipboard are IDENTICAL to the contents of the text input field,
  THEN do NOT display the `From Clipboard` table cell.

  GIVEN the Link Picker sheet displays,
  AND the `From Clipboard` table cell is pressed,
  THEN the `Search or type URL` text input field is populated with the URL from the Clipboard,
  AND the `Add this link` table cell is repopulated with the new URL from the Clipboard.
```
@ttahmouch ttahmouch marked this pull request as draft October 26, 2021 19:49
@ttahmouch ttahmouch changed the title TT | 4058 | Add Link From Clipboard TT | 4058 | Add Link From Clipboard - Step One Oct 26, 2021
ttahmouch added 2 commits October 29, 2021 10:59
…dit/>` block to the `<ButtonsEdit/>` block.

+ Added a utility function called `interactionWithUIElement` to interact with an element under test before assertions. This allows us to pretend that the user is interacting with the UI of the `<Editor/>` as if they are using the mobile app in order to stage a test. Right now it's fairly primitive, and is mostly used for `press` events. It can also be used for `layout` events at the moment, but it would need to be elaborated further to support events like `changeText` or `scroll`.
+ Used `interactionWithUIElement` to generalize a test to assert the same expectations regardless of whether the UX is displaying an `<ImageEdit/>` block or `<ButtonsEdit/>` block. The expected UX the test is asserting should be identical regardless of which block is being used in the `<Editor/>`. The only technical difference is how we'd find the elements in the view tree since they have different accessibility props to identify them, e.g., `getByA11yLabel` for the edit button block, and `getByA11yHint` for the edit image block.
@antonis
Copy link
Member

antonis commented Nov 3, 2021

Hey @ttahmouch 👋
probably this PR might have introduced changes that affect your work. Please check if you should merge from trunk and resolve any conflicts 🙇

ttahmouch added 6 commits November 3, 2021 15:12
… Link Picker **SHOULD/NOT** display to the user.

+ Tested some naive scenarios where the `From Clipboard` button **WOULD** or **WOULD NOT** display given the `Clipboard` has a **VALID** or **INVALID** URL copied. It is naive because it doesn't account for if the user has already copied the URL suggestion from the `Clipboard` into their Link Settings yet. Presumably, we **SHOULD NOT** suggest the URL if it is already the URL in their Link Settings (which will be a future test assertion).
+ Added a [Clipboard SVG](https://www.iconfinder.com/icons/211649/clipboard_icon) as a placeholder asset for the `From Clipboard` button until a final one is decided. It is MIT licensed.
+ Reimplemented `interactionWithUIElement` to **NOT** be an `async` function to avoid unnecessary warnings, i.e., `Warning: An update to ForwardRef(NavigationContainer) inside a test was not wrapped in act(...).`.
…om the `<ImageEdit/>` Block Library module as they are not specific to the Image Edit Block but also the Button Edit Block.
…s hidden or pressed in the Link Picker.

0. Hiding the Clipboard Link Suggestion.

Previously, the Clipboard Link Suggestion was only being hidden in the Link Picker if the text in the Clipboard was NOT a valid URL.
Now, the Clipboard Link Suggestion will also be hidden in the Link Picker if the text is a valid URL, but is the same URL the user already picked.

1. Pressing the Clipboard Link Suggestion.

Previously, this was unimplemented.
Now, the behavior is identical to selecting a Link Suggestion from the search results in the Link Picker, i.e., it will navigate back to the previous screen and pass it the selected URL to change the Block Attributes.
@ttahmouch ttahmouch changed the title TT | 4058 | Add Link From Clipboard - Step One TT | 4058 | Link Settings > Link Picker > Clipboard Link Suggestion Nov 13, 2021
@ttahmouch
Copy link
Contributor Author

ttahmouch commented Nov 16, 2021

TODO

  • Encapsulate From Clipboard into <LinkPickerResults/>?
  • Rename test module packages/components/src/mobile/link-settings/test/edit.native.js to index.native.js?
  • Rewrite the default localized text for the accessibility label of the From Clipboard link suggestion, i.e., __( 'Copy URL from the clipboard, %s' )?
  • Confirm functionality on Android with a smoke test.
  • Migrate to @react-native-clipboard/clipboard depending on timing?
  • Modify ...props spreading to be explicit regarding the accessibility props that it is cascading to children elements.
  • Implement dynamic link suggestions when updating your clipboard and returning Mobile Gutenberg to the foreground.
  • Remove redundant jest.mock( 'react-native/Libraries/Components/Clipboard/Clipboard').
  • "Quick question from a translator. In the new strings for Android, there is this string: Copy URL from the clipboard, %s I would like to clarify: Does 'Copy' here actually mean 'Paste'?"

Copy link
Member

@antonis antonis left a comment

Choose a reason for hiding this comment

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

Great work @ttahmouch 👍

I tested the functionality using metro on Android and everything works as expected for me! The code also LGTM on a first pass and I have no comments at this point 🎉
The added tests also look good. Thank you for taking the effort to add those 🙇

I have a suggestion regarding the behavior when switch back to the app with new contents in the clipboard. In that case the suggestion is not updated. I don't consider this a major issue and I think that we should handle this in a separate PR (if catching this case is feasible).
device-2021-11-18-144847.mp4

Since the added functionality is sufficient I would suggest to wrap-up this PR as is without extending the functionality/scope at this point (since the PR is already 500 lines) and marking it ready for review. We can then follow up by opening separate issues/PRs for any functionality or code improvements. Wdyt?

@antonis antonis self-requested a review November 18, 2021 12:57
@antonis antonis added [Block] Buttons Affects the Buttons Block [Block] Image Affects the Image Block [Feature] Link Editing Link components (LinkControl, URLInput) and integrations (RichText link formatting) [Type] Enhancement A suggestion for improvement. labels Nov 18, 2021
@antonis antonis added Mobile App - i.e. Android or iOS Native mobile impl of the block editor. (Note: used in scripts, ping mobile folks to change) and removed [Feature] Link Editing Link components (LinkControl, URLInput) and integrations (RichText link formatting) labels Nov 18, 2021
@antonis antonis changed the title TT | 4058 | Link Settings > Link Picker > Clipboard Link Suggestion [RNMobile] Adds Clipboard Link Suggestion to Image block and Buttons block Nov 18, 2021
@antonis antonis requested a review from enejb November 18, 2021 15:39
@ttahmouch
Copy link
Contributor Author

ttahmouch commented Nov 19, 2021

Apologies for the delay, @antonis . I started replying earlier, and then got distracted.

Great work @ttahmouch 👍

I tested the functionality using metro on Android and everything works as expected for me! The code also LGTM on a first pass and I have no comments at this point 🎉
The added tests also look good. Thank you for taking the effort to add those 🙇

Thank you for taking the time to thoroughly review the branch. I appreciate you smoke testing the code on Android. That's very helpful.

I have a suggestion regarding the behavior when switch back to the app with new contents in the clipboard. In that case the suggestion is not updated. I don't consider this a major issue and I think that we should handle this in a separate PR (if catching this case is feasible).

That functionality crossed my mind during development. I just never ended up circling back around to it.

Since the added functionality is sufficient I would suggest to wrap-up this PR as is without extending the functionality/scope at this point (since the PR is already 500 lines) and marking it ready for review. We can then follow up by opening separate issues/PRs for any functionality or code improvements. Wdyt?

The PR is rather large now, yes. Granted, 432 of those lines are just the test module.

However, I agree. If we were to add this additional enhancement, there's no reason that should block this PR from moving forward. Being able to change the contents of the Clipboard suggestion when the BottomSheet comes into focus from the background with a useFocusEffect or similar is a nice to have, but not MVP, in my opinion. That being said, I don't think the complexity/scope of the changes would be high since we appear to leverage react-navigation. Though I'd spike it to be sure.

Does that make sense?

@ttahmouch
Copy link
Contributor Author

I just realized that GitHub is dumb, and all the comments I had left when I reviewed my own code the other day were marked as Pending. So I don't think they were visible to you when you reviewed the PR, @enejb and @antonis , but I'm unsure.

@enejb enejb marked this pull request as ready for review November 19, 2021 20:07
Copy link
Contributor

@enejb enejb left a comment

Choose a reason for hiding this comment

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

I tested this as well and I think it's ready to merge.

We can merge this as it is and address and further changes in other prs.

@enejb enejb merged commit 40ecb0b into WordPress:trunk Nov 22, 2021
@github-actions github-actions bot added this to the Gutenberg 12.1 milestone Nov 22, 2021
ttahmouch pushed a commit to wordpress-mobile/gutenberg-mobile that referenced this pull request Nov 22, 2021
@iamthomasbishop
Copy link

@ttahmouch Thanks for cranking this out, looks great! I just noticed one tiny thing. I thought it might just be a weird artifact in one of the videos above, but I'm seeing the same thing in all of them. There is a very small (~6-8px) diff in spacing, which results in a "jump" when the cell switches between "from clipboard" and a regular cell.

My guess is that there is supposed to be a bit more padding at the top or above the cell, which would bring the new "from clipboard" cell (on the left in the example above) down to align with the other cell (on the left right in the example above), but I'm not 100% sure.

@ttahmouch
Copy link
Contributor Author

@ttahmouch Thanks for cranking this out, looks great! I just noticed one tiny thing. I thought it might just be a weird artifact in one of the videos above, but I'm seeing the same thing in all of them. There is a very small (~6-8px) diff in spacing, which results in a "jump" when the cell switches between "from clipboard" and a regular cell.

My guess is that there is supposed to be a bit more padding at the top or above the cell, which would bring the new "from clipboard" cell (on the left in the example above) down to align with the other cell (on the left right in the example above), but I'm not 100% sure.

I think this is a related issue to the Clipboard Link Suggestion not being in the same list as the Search Result Link Suggestions that I noted in this PR. It's been on my TODO list to move the Clipboard Link Suggestion to technically be in the same list, and hopefully that should correct all margin-related issues. Thanks for letting me know, @iamthomasbishop .

*
* @see node_modules/react-native/Libraries/Components/Clipboard/Clipboard.js
*/
jest.mock( 'react-native/Libraries/Components/Clipboard/Clipboard', () => ( {
Copy link
Contributor

Choose a reason for hiding this comment

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

@ttahmouch Looks like the Clipboard library is also mocked line 189, I recall I also had to add it for other integration tests. I don't think this would cause any conflict but might be confussing having duplicated code, wdyt?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks for letting me know, @fluiddot . I think I remember you adding it for work related to the Embed Block that you and Joel implemented.

I think this may have slipped by when I merged the trunk branch downstream into my feature branch to keep it up-to-date before release. I can remove the redundancy.

Copy link
Contributor

@fluiddot fluiddot Nov 24, 2021

Choose a reason for hiding this comment

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

No worries, it happened to me several times 😅 . I wish Git could detect these redundancy cases although they are not trivial at all to infer.

</div>
<!-- /wp:button -->
`,
toJSON: () => 'core/button',
Copy link
Contributor

Choose a reason for hiding this comment

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

@ttahmouch I'm wondering if we need this property as I don't see being exposed and used in the function at line 58, should we remove it?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It is actually used at line 58 just not in the way you'd think.

If the value has a toJSON() method, it's responsible to define what data will be serialized.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify

'<LinkSettings/> from %j' is serialized with the test arguments toJSON to make it clear in the console logs that this test suite iteration is for a different block under test, i.e., core/button then core/image.

I can remove it, but I felt it to be useful. WDYT?

Comment on lines +81 to +109
// Act
try {
const block = await waitFor( () =>
subject.getByA11yLabel(
type === 'core/image' ? /Image Block/ : /Button Block/
)
);
fireEvent.press( block );
fireEvent.press( block );
fireEvent.press(
await waitFor( () => subject.getByA11yLabel( 'Open Settings' ) )
);
} catch ( error ) {
done.fail( error );
}

// Assert
try {
await waitFor( () =>
subject.getByA11yLabel(
`Link to, ${
type === 'core/image' ? 'None' : 'Search or type URL'
}`
)
);
done();
} catch ( error ) {
done.fail( expectation );
}
Copy link
Contributor

Choose a reason for hiding this comment

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

@ttahmouch I'm out of curiosity about the use of try-catch in these tests, in case we could replicate it on future tests. I understand that the purpose is to control the message displayed when the test fails, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

That's correct. I didn't feel that the default error message is particularly expressive or helpful for the final test expectation. Though I considered just decorating the original {Error} instance emitted by react-native-testing-library. I can still consider changing it to log the original error as well if you think it would be helpful.

WDYT?

Copy link
Contributor

Choose a reason for hiding this comment

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

No, I think it's great providing more accurate error messages, although it shouldn't be the common case as tests should succeed 😅 . Checking the Action section, I'm wondering if it's necessary the first try-catch there because if any error is raised the test would fail in any case before entering the Assert section, right?.

Copy link
Member

@dcalhoun dcalhoun left a comment

Choose a reason for hiding this comment

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

Nice work! Happy to see this feature landed. 🥳

Comment on lines +91 to +93
getURLFromClipboard()
.then( ( url ) => setValue( { value, clipboardUrl: url } ) )
.catch( () => setValue( { value, clipboardUrl: '' } ) );
Copy link
Member

Choose a reason for hiding this comment

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

In order to avoid React errors regarding setting state on an unmounted component, we may want to avoid updating the state with a clean up function for the Hook. WDYT?

useEffect(() => {
  let isCurrent = true;
  getURLFromClipboard()
    .then((url) => {
      if (isCurrent) {
        setValue({ value, clipboardUrl: url });
      }
    })
    .catch(() => {
      if (isCurrent) {
        setValue({ value, clipboardUrl: "" });
      }
    });
  return () => {
    isCurrent = false;
  };
}, []);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Block] Buttons Affects the Buttons Block [Block] Image Affects the Image Block Mobile App - i.e. Android or iOS Native mobile impl of the block editor. (Note: used in scripts, ping mobile folks to change) [Type] Enhancement A suggestion for improvement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants