1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
function UniversalAnalyticsPlugin() {}
UniversalAnalyticsPlugin.prototype.startTrackerWithId = function(id, dispatchPeriod, success, error) {
if (typeof dispatchPeriod === 'undefined' || dispatchPeriod === null) {
dispatchPeriod = 30;
} else if (typeof dispatchPeriod === 'function' && typeof error === 'undefined') {
// Called without dispatchPeriod but with a callback.
// Looks like the original API was used so shift parameters over to remain compatible.
error = success;
success = dispatchPeriod;
dispatchPeriod = 30;
}
cordova.exec(success, error, 'UniversalAnalytics', 'startTrackerWithId', [id, dispatchPeriod]);
};
UniversalAnalyticsPlugin.prototype.setAllowIDFACollection = function(enable, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'setAllowIDFACollection', [enable]);
};
UniversalAnalyticsPlugin.prototype.setUserId = function(id, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'setUserId', [id]);
};
UniversalAnalyticsPlugin.prototype.setAnonymizeIp = function(anonymize, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'setAnonymizeIp', [anonymize]);
};
UniversalAnalyticsPlugin.prototype.setOptOut = function(optout, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'setOptOut', [optout]);
};
UniversalAnalyticsPlugin.prototype.setAppVersion = function(version, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'setAppVersion', [version]);
};
UniversalAnalyticsPlugin.prototype.getVar = function(variable, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'getVar', [variable]);
};
UniversalAnalyticsPlugin.prototype.setVar = function(variable, value, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'setVar', [variable, value]);
};
UniversalAnalyticsPlugin.prototype.dispatch = function(success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'dispatch', []);
};
/* enables verbose logging */
UniversalAnalyticsPlugin.prototype.debugMode = function(success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'debugMode', []);
};
UniversalAnalyticsPlugin.prototype.trackMetric = function(key, value, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'trackMetric', [key, value]);
};
UniversalAnalyticsPlugin.prototype.trackView = function(screen, campaignUrl, newSession, success, error) {
if (typeof campaignUrl === 'undefined' || campaignUrl === null) {
campaignUrl = '';
}
if (typeof newSession === 'undefined' || newSession === null) {
newSession = false;
}
cordova.exec(success, error, 'UniversalAnalytics', 'trackView', [screen, campaignUrl, newSession]);
};
UniversalAnalyticsPlugin.prototype.addCustomDimension = function(key, value, success, error) {
if (typeof key !== "number") {
throw Error("key must be a valid integer not '" + typeof key + "'");
}
cordova.exec(success, error, 'UniversalAnalytics', 'addCustomDimension', [key, value]);
};
UniversalAnalyticsPlugin.prototype.trackEvent = function(category, action, label, value, newSession, success, error) {
if (typeof label === 'undefined' || label === null) {
label = '';
}
if (typeof value === 'undefined' || value === null) {
value = 0;
}
if (typeof newSession === 'undefined' || newSession === null) {
newSession = false;
}
cordova.exec(success, error, 'UniversalAnalytics', 'trackEvent', [category, action, label, value, newSession]);
};
/**
* https://developers.google.com/analytics/devguides/collection/android/v3/exceptions
*/
UniversalAnalyticsPlugin.prototype.trackException = function(description, fatal, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'trackException', [description, fatal]);
};
UniversalAnalyticsPlugin.prototype.trackTiming = function(category, intervalInMilliseconds, name, label, success, error) {
if (typeof intervalInMilliseconds === 'undefined' || intervalInMilliseconds === null) {
intervalInMilliseconds = 0;
}
if (typeof name === 'undefined' || name === null) {
name = '';
}
if (typeof label === 'undefined' || label === null) {
label = '';
}
cordova.exec(success, error, 'UniversalAnalytics', 'trackTiming', [category, intervalInMilliseconds, name, label]);
};
/* Google Analytics e-Commerce Tracking */
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ecommerce */
UniversalAnalyticsPlugin.prototype.addTransaction = function(transactionId, affiliation, revenue, tax, shipping, currencyCode, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'addTransaction', [transactionId, affiliation, revenue, tax, shipping, currencyCode]);
};
UniversalAnalyticsPlugin.prototype.addTransactionItem = function(transactionId, name ,sku, category, price, quantity, currencyCode, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'addTransactionItem', [transactionId, name ,sku, category, price, quantity, currencyCode]);
};
/* automatic uncaught exception tracking */
UniversalAnalyticsPlugin.prototype.enableUncaughtExceptionReporting = function (enable, success, error) {
cordova.exec(success, error, 'UniversalAnalytics', 'enableUncaughtExceptionReporting', [enable]);
};
module.exports = new UniversalAnalyticsPlugin();
|