Browse Source

First revision for static pages

bmallred 12 years ago
parent
commit
347e06faff
1 changed files with 115 additions and 0 deletions
  1. 115 0
      jquery-analytics.js

+ 115 - 0
jquery-analytics.js

@ -0,0 +1,115 @@
1
// The MIT License (MIT)
2
//
3
// Copyright (c) <year> <copyright holders>
4
//
5
// Permission is hereby granted, free of charge, to any person obtaining a copy
6
// of this software and associated documentation files (the "Software"), to deal
7
// in the Software without restriction, including without limitation the rights
8
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
// copies of the Software, and to permit persons to whom the Software is
10
// furnished to do so, subject to the following conditions:
11
//
12
// The above copyright notice and this permission notice shall be included in
13
// all copies or substantial portions of the Software.
14
//
15
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
// THE SOFTWARE.
22
23
(function ($) {
24
    function walkTree(element) {
25
        var tree = [];
26
        var tagName = $(element).prop("tagName");
27
        
28
        if (tagName != undefined) {
29
            var parent = $(element).parent();
30
            if (parent != undefined) {
31
                $.each(walkTree($(element).parent()), function (i, node) {
32
                    tree.push(node);
33
                });
34
            }
35
            
36
            var tagId = $(element).uniqueId().attr("id");
37
            tree.push(tagName + '[id="' + tagId + '"]');
38
        }
39
        
40
        return tree;
41
    }
42
43
    function startsWith(original, search) {
44
        return original.indexOf(search) == 0;
45
    }
46
47
    function endsWith(original, search) {
48
        return original.lastIndexOf(search) == original.length - search.length;
49
    }
50
    
51
    $.fn.analytics = function (options) {
52
        if ($(this).length == 0) {
53
            return;
54
        }
55
56
        // Configure the default settings.
57
        var settings = $.extend({
58
            attributes: [],
59
            assignTo: ["a", "input[type='submit']"],
60
            url: null,
61
            client: null
62
        }, options);
63
64
        return this.each(function () {
65
            var $elements = $(this).find(settings.assignTo.join(","));
66
            $elements.each(function () {
67
                // Assign identification to all relevant elements.
68
                walkTree($(this));
69
            })
70
            .click(function (e) {
71
                $this = $(this);
72
73
                if (settings.url) {
74
                    // We prevent the default action to allow the background call to succeed.
75
                    e.preventDefault();
76
77
                    var data = {
78
                        id: walkTree($this).join('.')
79
                    };
80
81
                    // Attach the client identifier if found.
82
                    if (settings.client) {
83
                        data["client"] = settings.client
84
                    }
85
86
                    // Assign any "data-analytics-" attributes.
87
                    var dataAttributes = $this.data();
88
                    for (var attribute in dataAttributes) {
89
                        if (startsWith(attribute, "analytics")) {
90
                            var cleanName = attribute.replace(/analytics/g, '').toLowerCase();
91
                            data[cleanName] = dataAttributes[attribute];
92
                        }
93
                    }
94
95
                    // Assign the custom attributes requested to be collected.
96
                    $.each($(settings.attributes), function (i, attribute) {
97
                        data[attribute] = $this.attr(attribute);
98
                    });
99
100
                    $.ajax({
101
                        type: "POST",
102
                        url: settings.url,
103
                        contentType: "application/x-www-form-urlencoded",
104
                        data: data
105
                    })
106
                    .done(function () {})
107
                    .fail(function () {})
108
                    .always(function () {
109
                        // TODO: Continue with the default action.
110
                    });
111
                }
112
            });
113
        });
114
    };
115
})(jQuery);