mirror of https://github.com/zulip/zulip.git
62 lines
1.7 KiB
JavaScript
62 lines
1.7 KiB
JavaScript
var metrics = (function () {
|
|
|
|
var exports = {};
|
|
|
|
function enable_metrics() {
|
|
return page_params.enable_metrics;
|
|
}
|
|
|
|
if (! enable_metrics()) {
|
|
mixpanel.disable();
|
|
}
|
|
|
|
function include_in_sample() {
|
|
// Send a random sample of events that we generate
|
|
return Math.random() < 0.1;
|
|
}
|
|
|
|
function send_resize_event() {
|
|
mixpanel.track('window resized', {height: $(window).height(),
|
|
width: $(window).width()});
|
|
}
|
|
|
|
mixpanel.register({user: page_params.email, realm: page_params.domain});
|
|
send_resize_event();
|
|
|
|
$(function () {
|
|
$(document).on('compose_started.zulip', function (event) {
|
|
if (! include_in_sample()) {
|
|
return;
|
|
}
|
|
|
|
mixpanel.track('compose started', {type: event.message_type,
|
|
trigger: event.trigger});
|
|
});
|
|
$(document).on('narrow_activated.zulip', function (event) {
|
|
if (! include_in_sample()) {
|
|
return;
|
|
}
|
|
|
|
var operators = event.filter.operators();
|
|
var stream_operands = event.filter.operands('stream');
|
|
var subject_operands = event.filter.operands('topic');
|
|
var reported_operators;
|
|
if (operators.length === 1) {
|
|
reported_operators = operators[0][0];
|
|
} else if (operators.length === 2
|
|
&& stream_operands.length !== 0 && subject_operands.length !== 0) {
|
|
reported_operators = 'stream and subject';
|
|
} else {
|
|
reported_operators = 'multiple';
|
|
}
|
|
|
|
mixpanel.track('narrow activated', {operators: reported_operators,
|
|
trigger: event.trigger});
|
|
});
|
|
|
|
$(window).on('resize', $.debounce(3000, send_resize_event));
|
|
});
|
|
|
|
return exports;
|
|
}());
|