mirror of
https://github.com/LaQuay/TDTChannels.git
synced 2024-11-22 17:03:24 +01:00
Add analytics
This commit is contained in:
parent
1f4c9cbf45
commit
3cf215477e
2 changed files with 40 additions and 0 deletions
22
script/public/analytics.js
Normal file
22
script/public/analytics.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
function loadGoogleAnalytics(){
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-27327609-3');
|
||||
}
|
||||
|
||||
function loadGoogleTagManager() {
|
||||
(function(i,s,o,g,r,a,m){
|
||||
i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})
|
||||
(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
ga('create', 'UA-27327609-3', 'auto');
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
|
||||
loadGoogleAnalytics();
|
||||
loadGoogleTagManager();
|
|
@ -2,6 +2,10 @@
|
|||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>TDT Channels - Marc Vila</title>
|
||||
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27327609-3"></script>
|
||||
<script src="./analytics.js"></script>
|
||||
|
||||
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clappr@latest/dist/clappr.min.js"></script>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
|
||||
|
@ -150,6 +154,13 @@
|
|||
clearResolutions();
|
||||
getResolution(channelToReproduce, updateResolution);
|
||||
}
|
||||
|
||||
ga('send', {
|
||||
hitType: 'event',
|
||||
eventCategory: 'Video',
|
||||
eventAction: 'play',
|
||||
eventLabel: channelToReproduce
|
||||
});
|
||||
}
|
||||
|
||||
function reproduceAudio(channelToReproduce) {
|
||||
|
@ -178,6 +189,13 @@
|
|||
// Show a UI element to let the user manually start playback.
|
||||
});
|
||||
}
|
||||
|
||||
ga('send', {
|
||||
hitType: 'event',
|
||||
eventCategory: 'Audio',
|
||||
eventAction: 'play',
|
||||
eventLabel: channelToReproduce
|
||||
});
|
||||
}
|
||||
|
||||
function reproducePLSFromUrl(data) {
|
||||
|
|
Loading…
Reference in a new issue