-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.taggify.js
180 lines (159 loc) · 6.08 KB
/
jquery.taggify.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// tagCloud v 0.09 super duper beta for jQuery 1.3
// c) 2010 Alex Welch - www.alexwelch.com - [email protected]
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function($) {
df = {
// item_container_selector: '#taggable_items .taggable_item',
// hidden_item_container_selector: '#taggable_items .hidden_taggable_item',
// tags_container_selector: '#taggable_items .taggable_item .tags ul li',
hidden_item_class: 'hidden_taggable_item',
current_class: 'current',
fadeout_speed: 'normal',
fadein_speed: 'slow',
show_all_tag: true,
show_all_tag_text: 'All',
selectors: {
item_container: '#taggable_items .taggable_item',
hidden_item_container: '#taggable_items .hidden_taggable_item',
tags_container: '#taggable_items .taggable_item .tags ul li'
}
};
$.taggify = {
getTagClass: function(z, sizes) {
var tagClass = "smallest_tag";
if(z===sizes[0]) {
tagClass="smallest_tag";
} else if(z===sizes[3]) {
tagClass="largest_tag";
} else if(z >= sizes[2]) {
tagClass="large_tag";
} else if(z <= sizes[2] && z >= sizes[1]) {
tagClass="medium_tag";
} else if(z <= sizes[1] && z >= sizes[0]) {
tagClass="small_tag";
}
return tagClass;
},
uniqueArray: function(x) {
tmp = new Array(0);
for(i=0;i<x.length;i++) {
if($.inArray(x[i], tmp) === -1) {
tmp.length+=1;
tmp[tmp.length-1]=x[i];
}
}
return tmp;
},
getTagsArray: function(tags_container) {
return $.map($(tags_container), function(a) { return $(a).text(); });
}
};
String.prototype.friendlyName = function() {
return this.toLowerCase().replace(/ /g,'-').replace(/\./g, '_');
};
// function uniqueArray(x) {
// tmp = new Array(0);
// for(i=0;i<x.length;i++) {
// if($.inArray(x[i], tmp) == -1) {
// tmp.length+=1;
// tmp[tmp.length-1]=x[i];
// }
// }
// return tmp;
// };
// function getTagsArray(tags_container) {
// return $.map($(tags_container), function(a) { return $(a).text() })
// };
$.fn.taggify = function(options) {
settings = $.extend(df, options);
$(settings.selectors.tags_container).addTagClasses(settings).makeTagLinks(settings);
return $(this).makeTagCloud(settings);
};
// scrape all tags in $(this) and add them to their parent element as class names for searching
$.fn.addTagClasses = function(options) {
settings = $.extend({
item_container_selector: df.selectors.item_container
}, options);
return $(this).each(function(index) {
$(this).closest(settings.item_container_selector).addClass($(this).text().friendlyName());
});
};
// scrapes all the tags in tags_container_selector and creates a tag cloud out of them
$.fn.makeTagCloud = function(options) {
settings = $.extend(df, options);
$container = $(this);
$tags_container = $(settings.selectors.tags_container);
var all_tags = $.taggify.getTagsArray($tags_container);
var unique_tags = $.taggify.uniqueArray(all_tags);
unique_tags.sort(); //sort alphabetically
var frequency = [];
var counts = [];
var largest = 0;
var smallest = 1;
/* create array of tag counts and find sizes */
for(var i=0; i<unique_tags.length; i++) {
var mullet=0;
unique_tags[i] = unique_tags[i].replace(/^\s+|\s+$/g, '') ;
for(var j=0; j<all_tags.length; j++) {
if (unique_tags[i]===all_tags[j]) {
mullet=mullet+1;
}
frequency[i] = mullet;
}
}
for(var d=0;d<frequency.length;d++){
largest=Math.max(largest,frequency[d]); //find largest
}
var diff = largest-smallest; //difference, smallest is always 1
var dist = diff/3; //distribution
var large = 1 + (dist*2);
var medium = 1 + dist;
var all_tags_list = '';
if(settings.show_all_tag) {
all_tags_list += "<a title='all items' class='" + $.taggify.getTagClass(4, [1, 2, 3, 4]) + "' href='#all'>" + settings.show_all_tag_text + "</a> ";
}
if(unique_tags.length !== 0) {
for(i=0; i<unique_tags.length; i++) {
var z=0;
for(var j=0; j<all_tags.length; j++) {
if (unique_tags[i]===all_tags[j]) {
z=z+1;
}
counts[i] = z;
}
var title_text = z + ((z===1) ? ' item' : ' items');
var size = $.taggify.getTagClass(z, [smallest, medium, large, largest]);
all_tags_list += "<a title='" + title_text + "' class='" + size + "' href='#" + unique_tags[i].friendlyName() + "'>" + unique_tags[i] + "</a> ";
}
$container.html(all_tags_list);
$container.find('a').makeTagLinks(settings);
}
return this;
};
// makes tags clickable, when clicked they show only items with that tag
$.fn.makeTagLinks = function(options) {
settings = $.extend(df, options);
var $container = $(this);
settings.container_selector = $container.selector;
var $item_container = $(settings.selectors.item_container);
$container.click(function() {
$("html,body").animate({scrollTop: 0}, 200);
$(settings.container_selector).removeClass(settings.current_class);
$(this).addClass(settings.current_class);
var filterVal = $(this).text().friendlyName();
if(filterVal === settings.show_all_tag_text.friendlyName()) {
$(settings.selectors.hidden_item_container).fadeIn(settings.fadeout_speed).removeClass(settings.hidden_item_class);
} else {
$item_container.each(function() {
if(!$(this).hasClass(filterVal)) {
$(this).fadeOut(settings.fadeout_speed).addClass(settings.hidden_item_class);
} else {
$(this).fadeIn(settings.fadein_speed).removeClass(settings.hidden_item_class);
}
});
}
return false;
});
return $container;
};
}(jQuery));