-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Stepper Tracking: Remove checks that prevent step start tracking #96742
Conversation
Jetpack Cloud live (direct link)
Automattic for Agencies live (direct link)
|
Here is how your PR affects size of JS and CSS bundles shipped to the user's browser: App Entrypoints (~48 bytes added 📈 [gzipped])
Common code that is always downloaded and parsed every time the app is loaded, no matter which route is used. Legend What is parsed and gzip size?Parsed Size: Uncompressed size of the JS and CSS files. This much code needs to be parsed and stored in memory. Generated by performance advisor bot at iscalypsofastyet.com. |
@escapemanuele Made some updates to record
If I understood the issue correctly. Do you mind checking again? Let's also try and investigate the other check in the hook in case anything fishy there:
|
…flow name also on step complete cleanup
cd7a775
to
7e7718a
Compare
This PR modifies the release build for the following Calypso Apps: For info about this notification, see here: PCYsg-OT6-p2
To test WordPress.com changes, run |
Giving a second thought here, I'm now not sure that |
Related to #96681
Proposed Changes
We relax the conditions further for recording the
signup_step_start
event:useStepRouteTracking
hook. We now record it and pass additional props to distinguish the event:is_reentering_step_after_signup_complete
signup_complete_flow_name
signup_complete_step_name
This PR follows from previous work (#94817) to relax the conditions further for recording the step start event. We want to record this event, along with "page view", unconditionally on accessing the step routes (as the only tracking mechanism we have for these routes). See discussions in #94817 and associated issue for additional reasoning.
Why are these changes being made?
TODO
hasRequestedSelectedSite
Testing Instructions