Created
November 28, 2015 11:31
-
-
Save noomerikal/1c25df459a1ec5977a64 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'; | |
script.addEventListener('load', function(e) { | |
if (typeof callback === 'function') { | |
callback(e); | |
} | |
}, false); | |
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