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

Add error handling for onboarding form #42753

Merged
merged 7 commits into from
Mar 28, 2025

Conversation

CodeyGuyDylan
Copy link
Contributor

@CodeyGuyDylan CodeyGuyDylan commented Mar 27, 2025

Resolves MARTECH-17

Proposed changes:

  • Rework loading states to be synced between email and social button components
  • Add ErrorMessage component for both Social buttons and email input to use separately
  • Handle all possible known errors to show contextual errors when they occur
  • Hide the Jetpack login button as we will not have support ready for that in this release

Other information:

  • Have you written new tests for your changes, if applicable?
  • Have you checked the E2E test CI results, and verified that your changes do not break them?
  • Have you tested your changes on WordPress.com, if applicable (if so, you'll see a generated comment below with a script to run)?

Jetpack product discussion

P2: p1HpG7-wiG-p2

Does this pull request change what data or activity we track or use?

No

Testing instructions:

To test the error states, it's easier to test this on your local environment

  1. Checkout this branch locally
  2. Go to /wp-admin/admin.php?page=my-jetpack#/onboarding
  3. Try typing [email protected] in the email input box and submitting the form. You should see an error for an invalid email
    image
  4. Make sure you can edit the email and that the error goes away once you do (until you submit an invalid email again)
    image
  5. Also make sure that the social buttons are still clickable when the email validation error is active
  6. Now, go to projects/packages/my-jetpack/_inc/hooks/use-oauth-connection/index.ts line 93 and insert the following code above the site registration function
throw new Error( 'test' );
  1. Try to submit an email or click any of the social buttons and ensure that it does not work and throws the relevant error
    image
  2. Lastly, go to projects/packages/connection/src/class-rest-connector.php line 1155 and insert the following code
return new WP_Error(
	'test_error',
	'This is a test error',
	array( 'status' => 400 )
);
  1. Try to submit the form and and ensure that the error after the API fails makes sense for each service
    image

Copy link
Contributor

github-actions bot commented Mar 27, 2025

Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.

  • To test on WoA, go to the Plugins menu on a WoA dev site. Click on the "Upload" button and follow the upgrade flow to be able to upload, install, and activate the Jetpack Beta plugin. Once the plugin is active, go to Jetpack > Jetpack Beta, select your plugin (Jetpack), and enable the add/error-handling-for-onboarding-form branch.
  • To test on Simple, run the following command on your sandbox:
bin/jetpack-downloader test jetpack add/error-handling-for-onboarding-form

Interested in more tips and information?

  • In your local development environment, use the jetpack rsync command to sync your changes to a WoA dev blog.
  • Read more about our development workflow here: PCYsg-eg0-p2
  • Figure out when your changes will be shipped to customers here: PCYsg-eg5-p2

Copy link
Contributor

Thank you for your PR!

When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:

  • ✅ Include a description of your PR changes.
  • 🔴 Add a "[Status]" label (In Progress, Needs Review, ...).
  • 🔴 Add a "[Type]" label (Bug, Enhancement, Janitorial, Task).
  • ✅ Add testing instructions.
  • ✅ Specify whether this PR includes any changes to data or privacy.
  • ✅ Add changelog entries to affected projects

This comment will be updated as you work on your PR and make changes. If you think that some of those checks are not needed for your PR, please explain why you think so. Thanks for cooperation 🤖


Follow this PR Review Process:

  1. Ensure all required checks appearing at the bottom of this PR are passing.
  2. Make sure to test your changes on all platforms that it applies to. You're responsible for the quality of the code you ship.
  3. You can use GitHub's Reviewers functionality to request a review.
  4. When it's reviewed and merged, you will be pinged in Slack to deploy the changes to WordPress.com simple once the build is done.

If you have questions about anything, reach out in #jetpack-developers for guidance!

@github-actions github-actions bot added [Package] My Jetpack [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. labels Mar 27, 2025
Copy link

jp-launch-control bot commented Mar 27, 2025

Code Coverage Summary

Coverage changed in 5 files.

File Coverage Δ% Δ Uncovered
projects/packages/my-jetpack/_inc/hooks/use-oauth-connection/index.ts 0/56 (0.00%) 0.00% 23 💔
projects/packages/my-jetpack/_inc/components/onboarding-screen/connection-form/connection-form.tsx 0/26 (0.00%) 0.00% 17 💔
projects/packages/my-jetpack/_inc/utils/side-load-tracks.ts 0/18 (0.00%) 0.00% 2 ❤️‍🩹
projects/packages/my-jetpack/_inc/components/onboarding-screen/connection-form/email-input.tsx 0/20 (0.00%) 0.00% -1 💚
projects/packages/my-jetpack/_inc/components/onboarding-screen/connection-form/social-button.tsx 0/15 (0.00%) 0.00% -2 💚

1 file is newly checked for coverage.

File Coverage
projects/packages/my-jetpack/_inc/components/onboarding-screen/connection-form/error-message.tsx 0/10 (0.00%) 💔

Full summary · PHP report · JS report

Coverage check overridden by Coverage tests to be added later Use to ignore the Code coverage requirement check when tests will be added in a follow-up PR .

Copy link
Contributor

@elliottprogrammer elliottprogrammer left a comment

Choose a reason for hiding this comment

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

Tested and all works great, just as described!

I did however run into one case that was missed by the react code, and therefore the browser form validation appeared in it's place -See screenshot:
Screen Shot on 2025-03-27 at 16-44-11

I think maybe we should either cover this case, or disable browser auto-validation.

Other than that, just a couple small nit-picks down in the code comments.

return null;
}

const getMessage = () => {
Copy link
Contributor

Choose a reason for hiding this comment

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

This function will cause this component to always re-render, regardless whether the content changes or not. We can wrap it with a useCallback hook to prevent this.
However, I'm not sure how much it necessarily matters in this case, but it may be safe just to wrap it in useCallback anyway. 🤷‍♂️

@@ -154,8 +147,19 @@
}
}

.error-message {
color: var(--jp-red-50, #d63638);
font-size: 14px;
Copy link
Contributor

Choose a reason for hiding this comment

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

Should we use var( --font-body-small ); here, in place of 14px?

.error-message {
color: var(--jp-red-50, #d63638);
font-size: 14px;
line-height: 20px;
Copy link
Contributor

Choose a reason for hiding this comment

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

This could maybe be var( ----font-title-small );

Copy link
Contributor

@elliottprogrammer elliottprogrammer left a comment

Choose a reason for hiding this comment

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

Nice! Works awesome!
LGTM! 👍

* Add tracks after site connection during onboarding flow

* Sideload tracks in the onboarding flow after site connection

* Reload the recordEvent function if isSiteConnected changes

* Override site connection value on event

* Fix typo
@CodeyGuyDylan CodeyGuyDylan force-pushed the add/error-handling-for-onboarding-form branch from 329c2b1 to ad8d7c4 Compare March 27, 2025 23:23
Copy link
Contributor

@elliottprogrammer elliottprogrammer left a comment

Choose a reason for hiding this comment

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

LGTM! 👍

@CodeyGuyDylan CodeyGuyDylan added Coverage tests to be added later Use to ignore the Code coverage requirement check when tests will be added in a follow-up PR [Action] PR Is Up To Date and removed [Action] PR Is Up To Date labels Mar 27, 2025
@grzegorz-cp grzegorz-cp merged commit 4e1769f into trunk Mar 28, 2025
86 checks passed
@grzegorz-cp grzegorz-cp deleted the add/error-handling-for-onboarding-form branch March 28, 2025 13:59
@github-actions github-actions bot removed the [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. label Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Coverage tests to be added later Use to ignore the Code coverage requirement check when tests will be added in a follow-up PR [Package] My Jetpack
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants