Sha256: 774438e1aefb68090ec1d58b202f3314b562c16f570f3d3b87a0deb64594a414
Contents?: true
Size: 1.79 KB
Versions: 6
Compression:
Stored size: 1.79 KB
Contents
/* eslint-env jquery */ // = require govuk/components/details/details.js window.GOVUK = window.GOVUK || {} window.GOVUK.Modules = window.GOVUK.Modules || {} window.GOVUK.Modules.GovukDetails = window.GOVUKFrontend; (function (Modules) { function GemDetails ($module) { this.$module = $module this.customTrackLabel = this.$module.getAttribute('data-track-label') this.detailsClick = this.$module.querySelector('[data-details-track-click]') } GemDetails.prototype.init = function () { if (this.customTrackLabel) { // If a custom label has been provided, we can simply call the tracking module var trackDetails = new window.GOVUK.Modules.GemTrackClick() trackDetails.start($(this.$module)) } else if (this.detailsClick) { // If no custom label is set, we use the open/close status as the label this.detailsClick.addEventListener('click', function (event) { this.trackDefault(this.$module) }.bind(this)) } } GemDetails.prototype.trackDefault = function (element) { if (window.GOVUK.analytics && window.GOVUK.analytics.trackEvent) { var componentStatus = (element.getAttribute('open') == null) ? 'open' : 'closed' var trackCategory = element.getAttribute('data-track-category') var trackAction = element.getAttribute('data-track-action') var trackOptions = element.getAttribute('data-track-options') if (trackOptions) { trackOptions = JSON.parse(trackOptions) } if (typeof trackOptions !== 'object' || trackOptions === null) { trackOptions = {} } trackOptions.label = componentStatus if (trackAction && trackCategory) { window.GOVUK.analytics.trackEvent(trackCategory, trackAction, trackOptions) } } } Modules.GemDetails = GemDetails })(window.GOVUK.Modules)
Version data entries
6 entries across 6 versions & 1 rubygems