This ember-cli addon injects mixpanel into your ember app.
The mixpanel js is injected into the app's index.html. Pageview tracking is by default automatic, no mixins required. The mixpanel service is injected into your apps controllers and routes and is available as this.get('mixpanel')
.
More on mixpanel at http://www.mixpanel.com
ember install ember-cli-mixpanel-service
This plugin uses the ember-cli project's configuration as defined in config/environment.js
.
Add your Mixpanel API token to config/environment.js
and you're good to go. A couple more params below
// environment.js
ENV.mixpanel = {
enabled: false,
LOG_EVENT_TRACKING: false,
token: 'abcd123456789'
}
enabled
(Default:true
): Enable mixpanel trackingautoPageviewTracking
(Default:true
): Enable automatic pageview trackingpageViewAttribute
(Default:url
): Use some other attribute available to the router instead ofurl
for pageview trackingattributeOverrides
(Default:{}
): Configure overrides, if any, for any of the attributes mixpanel stores by defaultLOG_EVENT_TRACKING
(Default:false
): Output logging to the console.token
(Default:null
): Mandatory Mixpanel API token
If you use ember-cli-content-security-policy you should add the Mixpanel API to your app's content security policy settings. To do this add api.mixpanel.com to the 'connect-src' key in the ENV.contentSecurityPolicy hash as below:
// environment.js
ENV.contentSecurityPolicy = {
'connect-src': "'self' api.mixpanel.com ..."
...
}
trackPageView: function(page, overrides = {})
Note: Pageviews are tracked automatically by default, no mixins required. You can override any properties mixpanel stores by default by providing an optional overrides
object.
trackEvent: function(event, properties, options, callback)
Alias of the mixpanel track
function
identify: function(userId, traits, options, callback)
Alias of the mixpanel identify
function
alias: function(userId, previousId, options, callback)
Alias of the mixpanel alias
function
register: function(traits, options, callback)
Alias of the mixpanel register
function
peopleSet: function(attributes)
Alias of the mixpanel people.set
function