From f299cd610652535dede504a2ce17191de19ae281 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Wed, 21 Dec 2016 12:47:43 +0100 Subject: add analytics --- public/javascripts/analytics.js | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 public/javascripts/analytics.js (limited to 'public/javascripts/analytics.js') diff --git a/public/javascripts/analytics.js b/public/javascripts/analytics.js new file mode 100644 index 0000000..a93c8a4 --- /dev/null +++ b/public/javascripts/analytics.js @@ -0,0 +1,35 @@ +/* global ga */ + +const self = {} + +self.send = {} + +self.send.search = function (selectedUser, favorite) { + const hitType = 'event' + + const eventCategory = favorite ? 'search fav' : 'search' + + let eventAction + switch (selectedUser.type) { + case 'c': + eventAction = 'Class' + break + case 't': + eventAction = 'Teacher' + break + case 'r': + eventAction = 'Room' + break + case 's': + eventAction = 'Student' + break + } + + const eventLabel = selectedUser.value + + ga(function () { + ga('send', { hitType, eventCategory, eventAction, eventLabel }) + }) +} + +module.exports = self -- cgit v1.1