-
Notifications
You must be signed in to change notification settings - Fork 990
[🛤] NT-936 Creator Details Clicked event #786
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
Conversation
# Conflicts: # app/src/main/java/com/kickstarter/viewmodels/ProjectHolderViewModel.java
# Conflicts: # app/src/main/res/drawable/rect_grey_500_loading.xml # app/src/main/res/layout-land/project_media_header.xml # app/src/main/res/layout/loading_placeholder_creator_info.xml
|
||
fullProjectDataAndCurrentUser | ||
.compose<Pair<ProjectData, User?>>(takeWhen(creatorInfoClicked)) | ||
.filter { it.first.project().isLive && !it.first.project().isBacking } |
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.
Do we not show the creator info if you've already backed the project? 🤔
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 is only for tracking. I'm only tracking this for live not backed projects. Otherwise, I think the experiment would have really low conversion because it would fire for ended and already backed projects? But not sure because the experiment process has been pretty confusing.
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.
Ah ok that makes sense!
📲 What
Added
Creator Details Clicked
event for Optimizely.🤔 Why
So we can get those sweet funnel numbers.
🛠 How
OptimizelyEvent.CREATOR_DETAILS_CLICKED
with value"Creator Details Clicked"
CREATOR_DETAILS_CLICKED
when the creator details are clicked inProjectViewModel
.CREATOR_DETAILS_CLICKED
is tracked when the button is clicked on live and not backed projects only.👀 See
Nothing to see.
📋 QA
Check your local logs!
Check your data dog logs!
Story 📖
NT-936