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

Update Emitter utility method #5726

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft

Update Emitter utility method #5726

wants to merge 2 commits into from

Conversation

vanand17
Copy link
Contributor

Proposed changes

Adding a common usecase for the analytics.on() method

Merge timing

ASAP

Related issues (optional)

Copy link
Contributor

@silesky silesky left a comment

Choose a reason for hiding this comment

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

See comment

@vanand17
Copy link
Contributor Author

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.
So the on() method seems to make more sense that way.
Let me know your thoughts..

@silesky
Copy link
Contributor

silesky commented Nov 28, 2023

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. So the on() method seems to make more sense that way. Let me know your thoughts..

@vanand17 Customer is mistaken, there is no practical difference in timing between ready and initialized, they are virtually the same -- both wait for destinations to be loaded. For all intents and purposes, they are interchangeable.

edit: Sorry @vanand17, I am eating my words! We do have special logic that flushes initialize before we register plugins =)

@vanand17
Copy link
Contributor Author

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.

@silesky silesky requested review from stayseesong and removed request for stayseesong December 5, 2023 20:02
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() })
Copy link
Contributor

@silesky silesky Dec 5, 2023

Choose a reason for hiding this comment

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

@vanand17
Small things:

  1. quotes look off? (turn off smart quotes on ios)
  2. this.getAnonymousId() is not a function -- we want to do analytics.user().anonymousId()
  3. 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.
  4. @chrisradek will .ready() behavior change due to the lazy loading? I assume not, but I would forget what we decided.

@vanand17
Copy link
Contributor Author

vanand17 commented Dec 6, 2023

Hi @silesky Thank you for providing your feedback. Happy to get this updated based on your points and bring it back for review.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants