This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
forked from elk-zone/elk
-
Notifications
You must be signed in to change notification settings - Fork 7
fix(analytics): capture engagement events on children of <a>'s #73
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
9ab44fd
fix(analytics): extend links listener to do engagement events
jpezninjo 5586dd0
fix(analytics): refactor
jpezninjo 27b2a6c
Merge branch 'main' into fix/analytics-capture-nested-clicks
jpezninjo d21f1ea
Merge branch 'main' into fix/analytics-capture-nested-clicks
jpezninjo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,24 +33,41 @@ export default defineNuxtPlugin((nuxtApp) => { | |
} | ||
} | ||
|
||
function recordEngagement(element: Element) { | ||
if (!element) | ||
return | ||
|
||
if (!element.hasAttribute('data-glean')) | ||
return | ||
|
||
const data = element.getAttribute('data-glean') || '' | ||
const value = element.getAttribute('data-glean-value') || '' | ||
engagement.record({ ui_identifier: data, engagement_value: value, ...engagementDetails[data] }) | ||
} | ||
|
||
function handleButtonClick(ev: MouseEvent) { | ||
const eventTarget = ev?.target as Element | ||
const closestButton = eventTarget.closest('button') | ||
|
||
if (!closestButton) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This guard is a functional change. Currently, cc @wtfluckey There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. love it |
||
return | ||
|
||
if (closestButton?.hasAttribute('href')) | ||
linkClick.record({ target_url: closestButton.getAttribute('href') || '' }) | ||
|
||
const data = eventTarget?.getAttribute('data-glean') || '' | ||
const value = eventTarget?.getAttribute('data-glean-value') || '' | ||
if (eventTarget.hasAttribute('data-glean')) | ||
engagement.record({ ui_identifier: data, engagement_value: value, ...engagementDetails[data] }) | ||
recordEngagement(eventTarget) | ||
} | ||
|
||
function handleLinkClick(ev: MouseEvent) { | ||
const eventTarget = ev?.target as Element | ||
const closestLink = eventTarget.closest('a') | ||
if (closestLink) | ||
linkClick.record({ target_url: closestLink.getAttribute('href') || '' }) | ||
|
||
if (!closestLink) | ||
return | ||
|
||
linkClick.record({ target_url: closestLink.getAttribute('href') || '' }) | ||
|
||
recordEngagement(closestLink) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. capturing of links engagement happens here |
||
} | ||
|
||
window.addEventListener('click', eventListener) | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back 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.
broke out the code in
handleButtonClick
to this re-usable functionThere 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.
used early returns instead of if-statements and optional chaining