diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-09-23 22:06:51 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-09-23 22:06:51 +0200 |
| commit | 4c9061f8b43a61051ca386c1228dd133c29afc68 (patch) | |
| tree | 62854be8e9f9ede8f2154b1f40788a053d1ac1f3 | |
| parent | d793f5f92da6973173452709473e4bdd46a4171f (diff) | |
analytics plugn
2 files changed, 130 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/Stone Island.xcarchive/Products/Applications/Stone Island.app/Assets.car b/StoneIsland/platforms/ios/Stone Island.xcarchive/Products/Applications/Stone Island.app/Assets.car Binary files differnew file mode 100644 index 00000000..466ad309 --- /dev/null +++ b/StoneIsland/platforms/ios/Stone Island.xcarchive/Products/Applications/Stone Island.app/Assets.car diff --git a/StoneIsland/platforms/ios/Stone Island.xcarchive/Products/Applications/Stone Island.app/www/plugins/cordova-plugin-google-analytics/www/analytics.js b/StoneIsland/platforms/ios/Stone Island.xcarchive/Products/Applications/Stone Island.app/www/plugins/cordova-plugin-google-analytics/www/analytics.js new file mode 100644 index 00000000..b46b19ea --- /dev/null +++ b/StoneIsland/platforms/ios/Stone Island.xcarchive/Products/Applications/Stone Island.app/www/plugins/cordova-plugin-google-analytics/www/analytics.js @@ -0,0 +1,130 @@ +cordova.define("cordova-plugin-google-analytics.UniversalAnalytics", function(require, exports, module) { +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(); + +}); |
