-
Notifications
You must be signed in to change notification settings - Fork 817
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
Conversation
Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.
Interested in more tips and information?
|
Thank you for your PR! When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:
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:
If you have questions about anything, reach out in #jetpack-developers for guidance! |
Code Coverage SummaryCoverage changed in 5 files.
1 file is newly checked for coverage.
Full summary · PHP report · JS report Coverage check overridden by
Coverage tests to be added later
|
There was a problem hiding this 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:
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 = () => { |
There was a problem hiding this comment.
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; |
There was a problem hiding this comment.
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; |
There was a problem hiding this comment.
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 );
There was a problem hiding this 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
329c2b1
to
ad8d7c4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! 👍
Resolves MARTECH-17
Proposed changes:
Other information:
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
/wp-admin/admin.php?page=my-jetpack#/onboarding
[email protected]
in the email input box and submitting the form. You should see an error for an invalid emailprojects/packages/my-jetpack/_inc/hooks/use-oauth-connection/index.ts
line 93 and insert the following code above the site registration functionprojects/packages/connection/src/class-rest-connector.php
line 1155 and insert the following code