generated from dfe-analytical-services/shiny-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Ga4 key and made some minor updates to custom cookies js (#52)
- Loading branch information
Showing
2 changed files
with
50 additions
and
68 deletions.
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
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 |
---|---|---|
@@ -1,67 +1,49 @@ | ||
<script> | ||
// Define dataLayer and the gtag function. | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
|
||
// Default ad_storage to 'denied' as a placeholder | ||
// Determine actual values based on your own requirements | ||
gtag('consent', 'default', { | ||
'ad_storage': 'denied', | ||
'analytics_storage': 'denied' | ||
}); | ||
</script> | ||
|
||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src='https://www.googletagmanager.com/gtag/js?id=G-ABCDE12345'></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
|
||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-ABCDE12345'); | ||
|
||
/* | ||
The custom trackers below can be tailored to match the inputs used in your | ||
dashboard. | ||
*/ | ||
|
||
$(document).on('change', 'select#selectPhase', function(e) { | ||
gtag('event', 'select phase', {'event_category' : 'choose Phase', | ||
'event_label' : document.querySelector('select#selectPhase').value | ||
}); | ||
}); | ||
|
||
$(document).on('change', 'select#selectArea', function(e) { | ||
gtag('event', 'select area', {'event_category' : 'choose Area', | ||
'event_label' : document.querySelector('select#selectArea').value | ||
}); | ||
}); | ||
|
||
$(document).on('click', 'ul#navlistPanel', function(e) { | ||
gtag('event', 'navlistPanel', {'event_category' : 'navbar click', | ||
'event_label' : document.querySelector('ul#navlistPanel > li.active > a').getAttribute('data-value') | ||
}); | ||
}); | ||
|
||
$(document).on('click', 'ul#tabsetpanels', function(e) { | ||
gtag('event', 'tab panels', {'event_category' : 'tab panel clicks', | ||
'event_label' : document.querySelector('ul#tabsetpanels > li.active > a').getAttribute('data-value') | ||
}); | ||
}); | ||
|
||
|
||
$(document).on('click', 'a#download_data', function(e) { | ||
gtag('event', 'Download button', {'event_category' : 'Download button click' | ||
}); | ||
}); | ||
|
||
$(document).on('shiny:disconnected', function(e) { | ||
gtag('event', 'disconnect', { | ||
'event_label' : 'Disconnect', | ||
'event_category' : 'Disconnect' | ||
}); | ||
}); | ||
|
||
</script> | ||
|
||
<script> | ||
// Define dataLayer and the gtag function. | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
|
||
// Default ad_storage to 'denied' as a placeholder | ||
// Determine actual values based on your own requirements | ||
gtag('consent', 'default', { | ||
'ad_storage': 'denied', | ||
'analytics_storage': 'denied' | ||
}); | ||
</script> | ||
|
||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src='https://www.googletagmanager.com/gtag/js?id=G-4VMNMFG2R3'></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
|
||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-4VMNMFG2R3'); | ||
|
||
/* | ||
The custom trackers below can be tailored to match the inputs used in your | ||
dashboard. | ||
*/ | ||
|
||
$(document).on('change', 'select#la_name', function(e) { | ||
gtag('event', 'select area', {'event_category' : 'choose Area', | ||
'event_label' : document.querySelector('select#selectArea').value | ||
}); | ||
}); | ||
|
||
$(document).on('click', 'ul#navlistPanel', function(e) { | ||
gtag('event', 'navlistPanel', {'event_category' : 'navbar click', | ||
'event_label' : document.querySelector('ul#navlistPanel > li.active > a').getAttribute('data-value') | ||
}); | ||
}); | ||
|
||
$(document).on('shiny:disconnected', function(e) { | ||
gtag('event', 'disconnect', { | ||
'event_label' : 'Disconnect', | ||
'event_category' : 'Disconnect' | ||
}); | ||
}); | ||
|
||
</script> | ||
|