Last active
January 9, 2020 23:43
-
-
Save Sirfrummel/750afd8c660ea5a61ceb062fb4cfa918 to your computer and use it in GitHub Desktop.
Loading Segment.io analytics.js open source version async
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
// Create a dummy analytics object until real loaded | |
window.analytics || (window.analytics = []); | |
window.analytics.methods = ['identify', 'track', 'trackLink', 'trackForm', 'trackClick', 'trackSubmit', 'page', 'pageview', 'ab', 'alias', 'ready', 'group', 'on', 'once', 'off']; | |
window.analytics.factory = function(method) { | |
return function() { | |
var args = Array.prototype.slice.call(arguments); | |
args.unshift(method); | |
window.analytics.push(args); | |
return window.analytics; | |
}; | |
}; | |
for (var i = 0; i < window.analytics.methods.length; i++) { | |
var method = window.analytics.methods[i]; | |
window.analytics[method] = window.analytics.factory(method); | |
} | |
// Load analytics async | |
analytics.load = function(callback) { | |
if (document.getElementById('analytics-js')) return; | |
// We make a copy if our dummy object | |
window.a = window.analytics; | |
var script = document.createElement('script'); | |
script.async = true; | |
script.id = 'analytics-js'; | |
script.type = 'text/javascript'; | |
script.src = ('https:' === document.location.protocol ? 'https://' : 'http://') + 'path/to/your/analytics.min.js'; | |
if (script.addEventListener) { | |
script.addEventListener('load', function(e) { | |
if (typeof callback === 'function') { | |
callback(e); | |
} | |
}, false); | |
} else { | |
//IE8 | |
script.onreadystatechange = function () { | |
if (this.readyState == 'complete' || this.readyState == 'loaded') { | |
callback(window.event); | |
} | |
}; | |
} | |
var first = document.getElementsByTagName('script')[0]; | |
first.parentNode.insertBefore(script, first); | |
}; | |
analytics.load(function() { | |
// On load init our integrations | |
analytics.initialize({ | |
'Google Analytics': { | |
trackingId: 'UA-XXXXXX-1' | |
} | |
}); | |
// Now copy whatever we applied to our dummy object to the real analytics | |
while (window.a.length > 0) { | |
var item = window.a.shift(); | |
var method = item.shift(); | |
if (analytics[method]) analytics[method].apply(analytics, item); | |
} | |
}); | |
analytics.page(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment