40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import { cleanDOM } from 'discourse/routes/discourse';
|
|
import PageTracker from 'discourse/lib/page-tracker';
|
|
|
|
export default {
|
|
name: "page-tracking",
|
|
|
|
initialize(container) {
|
|
|
|
// Tell our AJAX system to track a page transition
|
|
const router = container.lookup('router:main');
|
|
router.on('willTransition', function() {
|
|
Discourse.viewTrackingRequired();
|
|
});
|
|
|
|
router.on('didTransition', function() {
|
|
Em.run.scheduleOnce('afterRender', Ember.Route, cleanDOM);
|
|
});
|
|
|
|
const pageTracker = PageTracker.current();
|
|
pageTracker.start();
|
|
|
|
// Out of the box, Discourse tries to track google analytics
|
|
// if it is present
|
|
if (typeof window._gaq !== 'undefined') {
|
|
pageTracker.on('change', function(url, title) {
|
|
window._gaq.push(["_set", "title", title]);
|
|
window._gaq.push(['_trackPageview', url]);
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Also use Universal Analytics if it is present
|
|
if (typeof window.ga !== 'undefined') {
|
|
pageTracker.on('change', function(url, title) {
|
|
window.ga('send', 'pageview', {page: url, title: title});
|
|
});
|
|
}
|
|
}
|
|
};
|