forked from FezVrasta/dropdown.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.dropdown.js
260 lines (219 loc) · 8.09 KB
/
jquery.dropdown.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/* globals jQuery, window, document */
(function($) {
var methods = {
options : {
"optionClass": "",
"dropdownClass": "",
"autoinit": false,
"callback": false
},
init: function(options) {
// Apply user options if user has defined some
if (options) {
options = $.extend(methods.options, options);
} else {
options = methods.options;
}
function initElement($select) {
// Don't do anything if this is not a select or if this select was already initialized
if ($select.data("dropdownjs") || !$select.is("select")) {
return;
}
// Is it a multi select?
var multi = $select.attr("multiple");
// Create the dropdown wrapper
var $dropdown = $("<div></div>");
$dropdown.addClass("dropdownjs").addClass(options.dropdownStyle);
$dropdown.data("select", $select);
// Create the fake input used as "select" element and cache it as $input
var $input = $("<input type=text readonly>");
if ($.material) { $input.data("mdproc", true); }
// Append it to the dropdown wrapper
$dropdown.append($input);
// Create the UL that will be used as dropdown and cache it AS $ul
var $ul = $("<ul></ul>");
// Append it to the dropdown
$dropdown.append($ul);
// Transfer the placeholder attribute
$input.attr("placeholder", $select.attr("placeholder"));
// Loop trough options and transfer them to the dropdown menu
$select.find("option").each(function() {
// Cache $(this)
var $this = $(this);
// Create the option
var $option = $("<li></li>");
// Style the option
$option.addClass(options.optionStyle);
// If the option has some text then transfer it
if ($this.text()) {
$option.text($this.text());
}
// Otherwise set the empty label and set it as an empty option
else {
$option.html(" ");
}
// Set the value of the option
$option.attr("value", $this.val());
// Ss it selected?
if ($this.attr("selected")) {
$option.attr("selected", true);
}
// Append option to our dropdown
$ul.append($option);
});
// Cache the dropdown options
var selectOptions = $dropdown.find("li");
// If is a single select, selected the first one or the last with selected attribute
if (!multi) {
var $selected;
if ($ul.find("[selected]").length) {
$selected = $ul.find("[selected]").last();
}
else {
$selected = $ul.find("li").first();
}
methods._select($dropdown, $selected);
} else {
methods._select($dropdown, $ul.find("[selected]"));
}
// Transfer the classes of the select to the input dropdown
$input.addClass($select[0].className);
// Hide the old and ugly select
$select.hide().attr("data-dropdownjs", true);
// Bring to life our awesome dropdownjs
$select.after($dropdown);
// Call the callback
if (options.callback) {
options.callback($dropdown);
}
//---------------------------------------//
// DROPDOWN EVENTS //
//---------------------------------------//
// On click, set the clicked one as selected
selectOptions.on("click", function(e) {
methods._select($dropdown, $(this));
});
selectOptions.on("keydown", function(e) {
if (e.which === 27) {
$(".dropdownjs > ul > li").each(function() { $(this).attr("tabindex", -1); });
return $input.removeClass("focus").blur();
}
if (e.which === 32) {
methods._select($dropdown, $(this));
return false;
}
});
selectOptions.on("focus", function() {
if ($select.is(":disabled")) {
return;
}
$input.addClass("focus");
});
// Used to make the dropdown menu more dropdown-ish
$input.on("click focus", function(e) {
e.stopPropagation();
if ($select.is(":disabled")) {
return;
}
$(".dropdownjs > ul > li").each(function() { $(this).attr("tabindex", -1); });
$(".dropdownjs > input").not($(this)).removeClass("focus").blur();
selectOptions.each(function() { $(this).attr("tabindex", 0); });
// Set height of the dropdown
var coords = {
top: $(this).offset().top - $(document).scrollTop(),
left: $(this).offset().left - $(document).scrollLeft(),
bottom: $(window).height() - ($(this).offset().top - $(document).scrollTop()),
right: $(window).width() - ($(this).offset().left - $(document).scrollLeft())
};
var height = coords.bottom;
// Decide if place the dropdown below or above the input
if (height < 200 && coords.top > coords.bottom) {
height = coords.top;
$ul.attr("placement", "top-left");
} else {
$ul.attr("placement", "bottom-left");
}
$(this).next("ul").css("max-height", height - 20);
$(this).addClass("focus");
});
$(document).on("click", function() {
$(".dropdownjs > ul > li").each(function() { $(this).attr("tabindex", -1); });
$input.removeClass("focus");
});
}
if (options.autoinit) {
$(document).on("DOMNodeInserted", function(e) {
var $this = $(e.target);
if ($this.is("select") && $this.is(options.autoinit)) {
initElement($this);
}
});
}
// Loop trough elements
$(this).each(function() {
initElement($(this));
});
},
select: function(target) {
var $target = $(this).find("[value=\"" + target + "\"]");
methods._select($(this), $target);
},
_select: function($dropdown, $target) {
// Get dropdown's elements
var $select = $dropdown.data("select"),
$input = $dropdown.find("input");
// Is it a multi select?
var multi = $select.attr("multiple");
// Cache the dropdown options
var selectOptions = $dropdown.find("li");
// Behavior for multiple select
if (multi) {
// Toggle option state
$target.toggleClass("selected");
// Toggle selection of the clicked option in native select
var $selected = $select.find("[value=\"" + $target.attr("value") + "\"]");
if ($selected.attr("selected")) {
$selected.attr("selected", true);
} else {
$selected.attr("selected", false);
}
// Add or remove the value from the input
var text = [];
selectOptions.each(function() {
if ($(this).hasClass("selected")) {
text.push($(this).text());
}
});
$input.val(text.join(", "));
}
// Behavior for single select
if (!multi) {
// Unselect options except the one that will be selected
selectOptions.not($target).removeClass("selected");
// Select the selected option
$target.addClass("selected");
// Set the value to the native select
$select.val($target.attr("value"));
// Set the value to the input
$input.val($target.text());
}
// This is used only if Material Design for Bootstrap is selected
if ($.material) {
if ($input.val().trim()) {
$select.removeClass("empty");
} else {
$select.addClass("empty");
}
}
}
};
$.fn.dropdown = function(params) {
if (methods[params]) {
return methods[params].apply(this, Array.prototype.slice.call(arguments,1));
} else if (typeof params === "object" | !params) {
return methods.init.apply(this, arguments);
} else {
$.error("Method " + params + " does not exists on jQuery.dropdown");
}
};
})(jQuery);