Add toc analytics, add condition analytics track#599
Open
Add toc analytics, add condition analytics track#599
Conversation
Contributor
|
Visual Tests Report is ready. |
0d48a8c to
867cc9c
Compare
867cc9c to
43c87b2
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Analytics for clicks on Table of Contents (TOC) items and conditional event tracking
Description
This PR adds analytics tracking for clicks on Table of Contents (TOC) items and extends the analytics system with the ability to conditionally send events to specific adapters.
What has changed
Analytics in the TocItem component
TocItemcomponent now accepts theanalyticsEventsprop (typeAnalyticsEventsPropfrom@gravity-ui/page-constructor), allowing analytics events to be configured externally.DOCS_TOC_ITEM_CLICKevent is sent via theuseAnalyticshook from@gravity-ui/page-constructor.hrefConditional event tracking
Analytics.track()method now includes an optionaloptions: AnalyticsTrackOptionsparameter, which allows filtering adapters when sending events:includeKeys— send the event only to adapters with the specified keysexcludeKeys— exclude adapters with the specified keys from receiving the eventAnalyticsAdapterinterface now includes an optionalkeyfield, allowing adapters to be identified.YandexMetrikaAdapternow supports thekeyfield in its configuration (by default, the string representation of the counter ID is used).