Skip to content
Snippets Groups Projects
Commit bdec986b authored by Allen Gilliland's avatar Allen Gilliland
Browse files

we don't actually need an angular service for AppAnalytics any more.

parent f7809cc4
No related branches found
No related tags found
No related merge requests found
......@@ -57,12 +57,10 @@ Corvus.config(['$routeProvider', '$locationProvider', function($routeProvider, $
});
}]);
Corvus.run(["AppState", "AppAnalytics", "editableOptions", "editableThemes", function(AppState, AppAnalytics, editableOptions, editableThemes) {
Corvus.run(["AppState", "editableOptions", "editableThemes", function(AppState, editableOptions, editableThemes) {
// initialize app state
AppState.init();
AppAnalytics.init();
// set `default` theme
editableOptions.theme = 'default';
......
......@@ -161,6 +161,12 @@ CorvusServices.factory('AppState', ['$rootScope', '$q', '$location', '$timeout',
}
};
// listen for location changes and use that as a trigger for page view tracking
$rootScope.$on('$locationChangeSuccess', function() {
// NOTE: we are only taking the path right now to avoid accidentally grabbing sensitive data like table/field ids
MetabaseAnalytics.trackPageView($location.path());
});
// listen for all route changes so that we can update organization as appropriate
$rootScope.$on('$routeChangeSuccess', service.routeChanged);
......@@ -206,21 +212,6 @@ CorvusServices.factory('AppState', ['$rootScope', '$q', '$location', '$timeout',
}
]);
CorvusServices.service('AppAnalytics', ['$rootScope', '$location', function($rootScope, $location) {
// This is just a light angular wrapper around MetabaseAnalytics
this.init = function() {
// placeholder
};
// listen for location changes and use that as a trigger for page view tracking
$rootScope.$on('$locationChangeSuccess', function() {
// NOTE: we are only taking the path right now to avoid accidentally grabbing sensitive data like table/field ids
MetabaseAnalytics.trackPageView($location.path());
});
}]);
CorvusServices.service('CorvusCore', ['$resource', 'User', function($resource, User) {
this.perms = [{
'id': 0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment