Browse Source

Merge pull request #4 from bmallred/master

Fixed some issues with exclusions
Bryan Allred 11 years ago
parent
commit
2c72074272
2 changed files with 29 additions and 19 deletions
  1. 28 18
      jquery-analytics.js
  2. 1 1
      jquery-analytics.min.js

+ 28 - 18
jquery-analytics.js

@ -49,6 +49,23 @@ String.prototype.endsWith = function (search) {
49 49
        url: null
50 50
    };
51 51
52
    // Determines if there is an exclusion in the path.
53
    // @param {Object} element
54
    // @return {Boolean} a value indicating whether the object is excluded
55
    function isExcluded(element) {
56
        var excluded = $(element).is(settings.exclude);
57
        var parent = $(element).parent();
58
        
59
        if (parent && parent.prop("tagName") !== undefined) {
60
            excluded = excluded || parent.is(settings.excluded);
61
            if (!excluded) {
62
                excluded = excluded || isExcluded(parent);
63
            }
64
        }
65
66
        return excluded;
67
    };
68
52 69
    // Walk the tree of a given node.
53 70
    // @param {Object} element
54 71
    // @return {Array} path
@ -58,25 +75,18 @@ String.prototype.endsWith = function (search) {
58 75
        
59 76
        if (tagName != undefined) {
60 77
            var parent = $(element).parent();
61
            if (parent != undefined) {
78
            if (parent && parent.prop("tagName") !== undefined) {
62 79
                $.each(walkTree($(element).parent()), function (i, node) {
63
                    if ($(node).is(settings.exclude)) {
64
                        tree = null;
65
                    }
66
                    else if (tree !== null) {
67
                        tree.push(node);
68
                    }
80
                    tree.push(node);
69 81
                });
70 82
            }
71 83
            
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
                }
84
            if (tagName == "HTML" || tagName == "BODY") {
85
                tree.push(tagName);
86
            }
87
            else {
88
                var tagId = $(element).analyticsUniqueId().attr("id");
89
                tree.push(tagName + '[id="' + tagId + '"]');
80 90
            }
81 91
        }
82 92
        
@ -96,12 +106,12 @@ String.prototype.endsWith = function (search) {
96 106
        // Locally scope this variable.
97 107
        $this = $(this);
98 108
99
        if (settings.url && !$this.is(".analytics-captured") && !$this.is(settings.exclude)) {
109
        if (settings.url && !$this.is(".analytics-captured") && !isExcluded($this)) {
100 110
            // Walk the tree.
101 111
            var tree = walkTree($this);
102 112
103 113
            // Make sure the tree does not include an excluded section.
104
            if (tree !== null && tree.length > 0) {
114
            if (tree && tree.length > 0) {
105 115
                // Join all the nodes of the tree.
106 116
                tree = tree.join(' ');
107 117
@ -191,7 +201,7 @@ String.prototype.endsWith = function (search) {
191 201
        var selector = settings.assignTo.join(",");
192 202
193 203
        return this.each(function () {
194
            // Itereate through all elements given on initiation.
204
            // Iterate through all elements given on initiation.
195 205
            $(this).find(selector).andSelf().filter(selector)
196 206
            .each(function () {
197 207
                identifyPath($(this));

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