Bladeren bron

Updated exclusion to work with nested levels

bmallred 11 jaren geleden
bovenliggende
commit
2bf5105f62
4 gewijzigde bestanden met toevoegingen van 72 en 56 verwijderingen
  1. 1 1
      example.html
  2. 69 54
      jquery-analytics.js
  3. 1 1
      jquery-analytics.min.js
  4. 1 0
      minify.sh

+ 1 - 1
example.html

@ -11,7 +11,7 @@
11 11
		<li><a href="#NoMetatdata">No metadata</a></li>
12 12
		<li><a href="#AssignedId" id="staticId">Assigned identification</a></li>
13 13
		<li><a href="#DefaultMetadata" data-analytics-dog="terrier">Default metadata given</a></li>
14
		<li><a href="#Excluded" class="analytics-exclude">Excluded link</a></li>
14
		<li class="analytics-exclude"><a href="#Excluded1">Excluded link 1</a> and <a href="#Excluded2">excluded link 2</a></li>
15 15
	</ul>
16 16
17 17
	<p>These links have been dynamically created at runtime but still are being traced.</p>

+ 69 - 54
jquery-analytics.js

@ -60,16 +60,23 @@ String.prototype.endsWith = function (search) {
60 60
            var parent = $(element).parent();
61 61
            if (parent != undefined) {
62 62
                $.each(walkTree($(element).parent()), function (i, node) {
63
                    tree.push(node);
63
                    if ($(node).is(settings.exclude)) {
64
                        tree = null;
65
                    }
66
                    else if (tree !== null) {
67
                        tree.push(node);
68
                    }
64 69
                });
65 70
            }
66 71
            
67
            if (tagName == "HTML" || tagName == "BODY") {
68
                tree.push(tagName);
69
            }
70
            else {
71
                var tagId = $(element).analyticsUniqueId().attr("id");
72
                tree.push(tagName + '[id="' + tagId + '"]');
72
            if (tree !== null) {
73
                if (tagName == "HTML" || tagName == "BODY") {
74
                    tree.push(tagName);
75
                }
76
                else {
77
                    var tagId = $(element).analyticsUniqueId().attr("id");
78
                    tree.push(tagName + '[id="' + tagId + '"]');
79
                }
73 80
            }
74 81
        }
75 82
        
@ -90,60 +97,68 @@ String.prototype.endsWith = function (search) {
90 97
        $this = $(this);
91 98
92 99
        if (settings.url && !$this.is(".analytics-captured") && !$this.is(settings.exclude)) {
93
            // We prevent the default action to allow the background call to succeed.
94
            var preventedHref = null;
95
            if ($this.attr("href")) {
96
                e.preventDefault();
97
                preventedHref = $this.attr("href");
98
            }
99
100
            // Initialize the data to be collected.
101
            var data = {};
102
103
            // Attach the object identifier.
104
            var tree = walkTree($this).join(' ');
105
            if (settings.id) {
106
                data[settings.id] = tree;
107
            }
108
            else {
109
                data["id"] = tree;
110
            }
100
            // Walk the tree.
101
            var tree = walkTree($this);
102
103
            // Make sure the tree does not include an excluded section.
104
            if (tree !== null && tree.length > 0) {
105
                // Join all the nodes of the tree.
106
                tree = tree.join(' ');
107
108
                // We prevent the default action to allow the background call to succeed.
109
                var preventedHref = null;
110
                if ($this.attr("href")) {
111
                    e.preventDefault();
112
                    preventedHref = $this.attr("href");
113
                }
111 114
112
            // Attach the client identifier if found.
113
            if (settings.client) {
114
                data["client"] = settings.client
115
            }
115
                // Initialize the data to be collected.
116
                var data = {};
116 117
117
            // Assign any "data-analytics-" attributes.
118
            var dataAttributes = $this.data();
119
            for (var attribute in dataAttributes) {
120
                if (attribute.startsWith("analytics")) {
121
                    var cleanName = attribute.replace(/analytics/g, '').toLowerCase();
122
                    data[cleanName] = dataAttributes[attribute];
118
                // Attach the object identifier.
119
                if (settings.id) {
120
                    data[settings.id] = tree;
121
                }
122
                else {
123
                    data["id"] = tree;
123 124
                }
124
            }
125
126
            // Assign the custom attributes requested to be collected.
127
            $.each($(settings.attributes), function (i, attribute) {
128
                data[attribute] = $this.attr(attribute);
129
            });
130 125
131
            // Send the analytics.
132
            $.ajax({
133
                type: "POST",
134
                url: settings.url,
135
                contentType: "application/x-www-form-urlencoded",
136
                data: data
137
            })
138
            .always(function () {
139
                if (settings.captureOnce) {
140
                    $this.addClass("analytics-captured");
126
                // Attach the client identifier if found.
127
                if (settings.client) {
128
                    data["client"] = settings.client
141 129
                }
142 130
143
                if (preventedHref) {
144
                    window.location = preventedHref;
131
                // Assign any "data-analytics-" attributes.
132
                var dataAttributes = $this.data();
133
                for (var attribute in dataAttributes) {
134
                    if (attribute.startsWith("analytics")) {
135
                        var cleanName = attribute.replace(/analytics/g, '').toLowerCase();
136
                        data[cleanName] = dataAttributes[attribute];
137
                    }
145 138
                }
146
            });
139
140
                // Assign the custom attributes requested to be collected.
141
                $.each($(settings.attributes), function (i, attribute) {
142
                    data[attribute] = $this.attr(attribute);
143
                });
144
145
                // Send the analytics.
146
                $.ajax({
147
                    type: "POST",
148
                    url: settings.url,
149
                    contentType: "application/x-www-form-urlencoded",
150
                    data: data
151
                })
152
                .always(function () {
153
                    if (settings.captureOnce) {
154
                        $this.addClass("analytics-captured");
155
                    }
156
157
                    if (preventedHref) {
158
                        window.location = preventedHref;
159
                    }
160
                });
161
            }
147 162
        }
148 163
    };
149 164

+ 1 - 1
jquery-analytics.min.js

@ -1 +1 @@
1
String.prototype.startsWith=function(a){return this.indexOf(a)==0};String.prototype.endsWith=function(a){return this.lastIndexOf(a)==this.length-a.length};(function(d){var f=0;var b={attributes:[],assignTo:["a","input[type='submit']"],captureOnce:false,client:null,id:"id",exclude:".analytics-exclude",url:null};function a(i){var g=[];var h=d(i).prop("tagName");if(h!=undefined){var k=d(i).parent();if(k!=undefined){d.each(a(d(i).parent()),function(l,m){g.push(m)})}if(h=="HTML"||h=="BODY"){g.push(h)}else{var j=d(i).analyticsUniqueId().attr("id");g.push(h+'[id="'+j+'"]')}}return g}function c(g){a(g)}function e(m){$this=d(this);if(b.url&&!$this.is(".analytics-captured")&&!$this.is(b.exclude)){var l=null;if($this.attr("href")){m.preventDefault();l=$this.attr("href")}var k={};var g=a($this).join(" ");if(b.id){k[b.id]=g}else{k.id=g}if(b.client){k.client=b.client}var j=$this.data();for(var i in j){if(i.startsWith("analytics")){var h=i.replace(/analytics/g,"").toLowerCase();k[h]=j[i]}}d.each(d(b.attributes),function(n,o){k[o]=$this.attr(o)});d.ajax({type:"POST",url:b.url,contentType:"application/x-www-form-urlencoded",data:k}).always(function(){if(b.captureOnce){$this.addClass("analytics-captured")}if(l){window.location=l}})}}d.fn.analyticsUniqueId=function(){if(this.length==0){return}return this.each(function(){if(!d(this).attr("id")){d(this).attr("id","analytics-id-"+ ++f)}})};d.fn.analytics=function(h){if(d(this).length==0){return}b=d.extend({},b,h);var g=b.assignTo.join(",");return this.each(function(){d(this).find(g).andSelf().filter(g).each(function(){c(d(this));d(this).on("click",e)})}).on("DOMNodeInserted",function(i){d(i.target).find(g).andSelf().filter(g).each(function(){c(d(this));d(this).on("click",e)})})}})(jQuery);
1
String.prototype.startsWith=function(a){return this.indexOf(a)==0};String.prototype.endsWith=function(a){return this.lastIndexOf(a)==this.length-a.length};(function(d){var f=0;var b={attributes:[],assignTo:["a","input[type='submit']"],captureOnce:false,client:null,id:"id",exclude:".analytics-exclude",url:null};function a(i){var g=[];var h=d(i).prop("tagName");if(h!=undefined){var k=d(i).parent();if(k!=undefined){d.each(a(d(i).parent()),function(l,m){if(d(m).is(b.exclude)){g=null}else{if(g!==null){g.push(m)}}})}if(g!==null){if(h=="HTML"||h=="BODY"){g.push(h)}else{var j=d(i).analyticsUniqueId().attr("id");g.push(h+'[id="'+j+'"]')}}}return g}function c(g){a(g)}function e(m){$this=d(this);if(b.url&&!$this.is(".analytics-captured")&&!$this.is(b.exclude)){var g=a($this);if(g!==null&&g.length>0){g=g.join(" ");var l=null;if($this.attr("href")){m.preventDefault();l=$this.attr("href")}var k={};if(b.id){k[b.id]=g}else{k.id=g}if(b.client){k.client=b.client}var j=$this.data();for(var i in j){if(i.startsWith("analytics")){var h=i.replace(/analytics/g,"").toLowerCase();k[h]=j[i]}}d.each(d(b.attributes),function(n,o){k[o]=$this.attr(o)});d.ajax({type:"POST",url:b.url,contentType:"application/x-www-form-urlencoded",data:k}).always(function(){if(b.captureOnce){$this.addClass("analytics-captured")}if(l){window.location=l}})}}}d.fn.analyticsUniqueId=function(){if(this.length==0){return}return this.each(function(){if(!d(this).attr("id")){d(this).attr("id","analytics-id-"+ ++f)}})};d.fn.analytics=function(h){if(d(this).length==0){return}b=d.extend({},b,h);var g=b.assignTo.join(",");return this.each(function(){d(this).find(g).andSelf().filter(g).each(function(){c(d(this));d(this).on("click",e)})}).on("DOMNodeInserted",function(i){d(i.target).find(g).andSelf().filter(g).each(function(){c(d(this));d(this).on("click",e)})})}})(jQuery);

+ 1 - 0
minify.sh

@ -0,0 +1 @@
1
yui-compressor -o 'jquery-analytics.min.js' jquery-analytics.js