-
Notifications
You must be signed in to change notification settings - Fork 358
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
Update Emitter utility method #5726
base: develop
Are you sure you want to change the base?
Conversation
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.
See comment
Hey @silesky I agree, I did provide the ready() method as well, but the customer wanted to fetch the Ids right after AJS initialisation, and did not want to wait for/be impacted by destinations being initialised. |
@vanand17 edit: Sorry @vanand17, I am eating my words! We do have special logic that flushes initialize before we register plugins =) |
Hi Seth, thanks for the clarification, here is a thread on this topic with cradek, where he proposed this as a solution: https://twilio.slack.com/archives/CATJY9BDW/p1700193167765019 Just a bit confused on the usage of on() hence sharing this with you to review. Apologies for the delay in getting back to you. |
Another use case for the on method is to listen for event and then fire. For example, if a customer wants to retrieve the user or the anonymous Id right after AJS initialisation, then they can do the following: | ||
|
||
```js | ||
analytics.on(‘initialize’, function() { this.getAnonymousId() }) |
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.
@vanand17
Small things:
- quotes look off? (turn off smart quotes on ios)
- this.getAnonymousId() is not a function -- we want to do
analytics.user().anonymousId()
- I am weary of introducing multiple similar sounding ways of doing the same thing without explaining the difference clearly -- would want to clarify the difference between on('initialize') and .ready() here and which we would prefer.
- @chrisradek will .ready() behavior change due to the lazy loading? I assume not, but I would forget what we decided.
Hi @silesky Thank you for providing your feedback. Happy to get this updated based on your points and bring it back for review. |
Proposed changes
Adding a common usecase for the analytics.on() method
Merge timing
ASAP
Related issues (optional)