-
Notifications
You must be signed in to change notification settings - Fork 20
/
jquery.ddslick.js
477 lines (411 loc) · 21.2 KB
/
jquery.ddslick.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
(function (factory) {
if (typeof define === "function" && define.amd) {
/** AMD. Register as an anonymous module. */
define(["jquery"], factory);
} else if (typeof module === "object" && module.exports) {
/** Node/CommonJS */
module.exports = factory(require("jquery"));
} else {
/** Browser globals */
factory(window.jQuery);
}
}(function ($) {
$.fn.ddslick = function (method) {
if (methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === "object" || !method) {
return methods.init.apply(this, arguments);
} else {
$.error("Method " + method + " does not exists.");
}
};
var methods = {};
var settingsMap = {};
var defaults = {
data: [],
keepJSONItemsOnTop: false,
animationTime: 50,
width: "20em",
height: null,
background: "#eee",
selectText: "",
defaultSelectedIndex: null,
truncateDescription: true,
imagePosition: "left",
showSelectedHTML: true,
clickOffToClose: true,
embedCSS: true,
onSelected: function() { }
};
var closeListenerInitialized = false;
var ddSelectHtml = "<div class='dd-select'><input class='dd-selected-value' type='hidden' /><button name='dd-selected-button' type='button' class='dd-selected'></button><span class='dd-pointer dd-pointer-down'></span></div>";
var ddOptionsHtml = "<ul class='dd-options'></ul>";
//CSS for ddSlick
var ddslickCSS = "<style id='css-ddslick' type='text/css'>" +
".dd-select{ border-radius:2px; border:solid 1px #ccc; position:relative; cursor:pointer;}" +
".dd-desc { color:#aaa; display:block; overflow: hidden; font-weight:normal; line-height: 1.4em; }" +
".dd-selected{ position:relative; overflow:hidden; display:block; padding:10px; font-weight:bold; width:100%; text-align:left;}" +
".dd-selected:focus { z-index:2001; }" +
".dd-pointer{ width:0; height:0; position:absolute; right:10px; top:50%; margin-top:-3px;}" +
".dd-selected:focus + .dd-pointer{ z-index:2002; }" +
".dd-pointer-down{ border:solid 5px transparent; border-top:solid 5px #000; }" +
".dd-pointer-up{border:solid 5px transparent !important; border-bottom:solid 5px #000 !important; margin-top:-8px;}" +
".dd-options{ border:solid 1px #ccc; border-top:none; list-style:none; box-shadow:0px 1px 5px #ddd; display:none; position:absolute; z-index:2000; margin:0; padding:0;background:#fff; overflow:visible;}" +
".dd-options:focus{ outline:0; }" +
".dd-option{ padding:10px; display:block; width:100%; text-align:left; border-bottom:solid 1px #ddd; overflow:visible; text-decoration:none; color:#333; cursor:pointer;-webkit-transition: all 0.25s ease-in-out; -moz-transition: all 0.25s ease-in-out;-o-transition: all 0.25s ease-in-out;-ms-transition: all 0.25s ease-in-out; box-sizing:border-box;}" +
".dd-options > .dd-option:last-child { border-bottom:none;}" +
".dd-option:hover, .dd-option:active, .dd-option:focus{ background:#f3f3f3; color:#000; z-index:2001;}" +
".dd-selected-description-truncated { text-overflow: ellipsis; white-space:nowrap; }" +
".dd-option-selected { background:#f6f6f6; }" +
".dd-option-image, .dd-selected-image { vertical-align:middle; float:left; margin-right:5px; max-width:64px;}" +
".dd-image-right { float:right; margin-right:15px; margin-left:5px;}" +
".dd-container{ position:relative;} .dd-selected-text { font-weight:bold}</style>";
//Public methods
methods.init = function (userOptions) {
//Preserve the original defaults by passing an empty object as the target
//The object is used to get global flags like embedCSS.
var options = $.extend({}, defaults, userOptions);
//CSS styles are only added once.
if ($("#css-ddslick").length <= 0 && options.embedCSS) {
$(ddslickCSS).appendTo("head");
}
//Apply on all selected elements
return this.each(function() {
//Preserve the original defaults by passing an empty object as the target
//The object is used to save drop-down"s corresponding settings and data.
var options = $.extend({}, defaults, userOptions);
var obj = $(this),
data = obj.data("ddslick");
//If the plugin has not been initialized yet
if (!data) {
var ddSelect = [];
//Get data from HTML select options
obj.find("option").each(function() {
var $this = $(this), thisData = $this.data();
ddSelect.push({
text: $.trim($this.text()),
value: $this.val(),
selected: $this.is(":selected"),
description: thisData.description,
imageSrc: thisData.imagesrc //keep it lowercase for HTML5 data-attributes
});
});
//Update Plugin data merging both HTML select data and JSON data for the dropdown
if (options.keepJSONItemsOnTop)
$.merge(options.data, ddSelect);
else options.data = $.merge(ddSelect, options.data);
//Replace HTML select with empty placeholder, keep the original
var original = obj, placeholder = $("<div>").attr("id", obj.attr("id"));
obj.replaceWith(placeholder);
obj = placeholder;
// Save options
var settingsId = "ID_" + (new Date()).getTime();
$(obj).attr("data-settings-id", settingsId);
settingsMap[settingsId] = {};
$.extend(settingsMap[settingsId], options);
//Add classes and append ddSelectHtml & ddOptionsHtml to the container
obj.addClass("dd-container").append(ddSelectHtml).append(ddOptionsHtml);
// Inherit name attribute from original element
obj.find("input.dd-selected-value")
.attr("id", $(original).attr("id"))
.attr("name", $(original).attr("name"));
//Get newly created ddOptions and ddSelect to manipulate
var ddOptions = obj.find(".dd-options");
ddSelect = obj.find(".dd-select");
var ddSelected = obj.find(".dd-selected");
// Add accessibility controls.
ddSelected.attr("aria-haspopup", "listbox");
ddSelected.attr("aria-expanded", "false");
ddSelected.attr("aria-controls", "dd-options-" + settingsId);
ddOptions.attr("id", "dd-options-" + settingsId);
ddOptions.attr("role", "listbox");
ddOptions.attr("tabindex", "-1");
ddOptions.attr("aria-label", "select options");
ddOptions.attr("aria-hidden", "true");
//Set widths
ddOptions.css({ width: options.width });
ddSelect.css({ width: options.width, background: options.background });
obj.css({ width: options.width });
//Set height
if (options.height !== null)
ddOptions.css({ height: options.height, overflow: "auto" });
//Add ddOptions to the container. Replace with template engine later.
$.each(options.data, function (index, item) {
if (item.selected) options.defaultSelectedIndex = index;
var ddOption = $("<li role='option'>").addClass("dd-option").attr("id", "dd-option-" + settingsId + "-" + index);
if(item.value) ddOption.append($("<input>").addClass("dd-option-value").attr("type", "hidden").val(item.value));
if(item.imageSrc) ddOption.append($("<img>").attr("src", item.imageSrc).addClass("dd-option-image" + (options.imagePosition === "right" ? " dd-image-right" : "")));
if(item.text) ddOption.append($("<label>").addClass("dd-option-text").text(item.text));
if(item.description) ddOption.append($("<small>").addClass("dd-option-description dd-desc").text(item.description));
ddOptions.append(ddOption);
});
// Watch for and handle keypress when popup options list is open.
ddOptions.keydown(function(event) {
var ddOptions = $(this);
if (ddOptions.attr("aria-hidden") != "false") {
return;
}
var selectedClass = "dd-option-selected",
selectedLi = [],
currentLi = $("." + selectedClass, ddOptions);
switch(event.key) {
// Up or left arrow moves to the previous option.
case "ArrowLeft":
case "ArrowUp":
if (!currentLi.length) {
selectedLi = $(".dd-option:first-child");
selectedLi.addClass(selectedClass);
ddOptions.attr("aria-activedescendant", selectedLi.attr("id"));
}
else if (!currentLi.is(":first-child")) {
selectedLi = currentLi
.removeClass(selectedClass)
.prev()
.addClass(selectedClass);
ddOptions.attr("aria-activedescendant", selectedLi.attr("id"));
}
return false;
// Down or right arrow moves to the next option.
case "ArrowRight":
case "ArrowDown":
if (!currentLi.length) {
selectedLi = $(".dd-option:first-child");
selectedLi.addClass(selectedClass);
ddOptions.attr("aria-activedescendant", selectedLi.attr("id"));
}
else if (!currentLi.is(":last-child")) {
selectedLi = currentLi
.removeClass(selectedClass)
.next()
.addClass(selectedClass);
ddOptions.attr("aria-activedescendant", selectedLi.attr("id"));
}
return false;
// Enter or spacebar selects the current item and closes the popup.
case "Enter":
case " ":
if (currentLi.length) {
selectIndex(obj, currentLi.index(), true);
}
close(obj);
ddSelected.focus();
return false;
// Escape closes the popup without modifying the selection.
case "Escape":
close(obj);
ddSelected.focus();
return false;
}
// All other keys fall through.
return;
});
//Save plugin data.
var pluginData = {
settings: options,
original: original,
selectedIndex: -1,
selectedItem: null,
selectedData: null
};
obj.data("ddslick", pluginData);
//Check if needs to show the select text, otherwise show selected or default selection
if (options.selectText.length > 0 && options.defaultSelectedIndex === null) {
obj.find(".dd-selected").html(options.selectText);
}
else {
var index = (options.defaultSelectedIndex != null && options.defaultSelectedIndex >= 0 && options.defaultSelectedIndex < options.data.length)
? options.defaultSelectedIndex
: 0;
selectIndex(obj, index, false);
}
//EVENTS
//Displaying options
obj.find(".dd-select").on("click.ddslick", function() {
open(obj);
});
//Selecting an option
obj.find(".dd-option").on("click.ddslick", function() {
selectIndex(obj, $(this).index(), true);
});
// Keyboard navigating away from the widget.
obj.find(".dd-options").on("focusout.ddslick", function() {
setTimeout( function() {
if (obj.find(".dd-options").has(document.activeElement).length == 0) {
close(obj);
}
}, 50);
});
//Click anywhere to close
if (options.clickOffToClose) {
ddOptions.addClass("dd-click-off-close");
obj.on("click.ddslick", function (e) { e.stopPropagation(); });
// Close listener needs to be added only once
if(!closeListenerInitialized) {
closeListenerInitialized = true;
$("body").on("click", function () {
$(".dd-open").removeClass("dd-open");
$(".dd-selected").attr("aria-expanded", "false");
$(".dd-click-off-close").slideUp(options.animationTime).attr("aria-hidden", "true").siblings(".dd-select").find(".dd-pointer").removeClass("dd-pointer-up");
});
}
}
}
});
};
//Public method to select an option by its index
methods.select = function (options) {
return this.each(function() {
if (options.index !== undefined)
selectIndex($(this), options.index);
if (options.value !== undefined)
selectValue($(this), options.value);
if (options.id !== undefined)
selectValue($(this), options.id);
});
};
//Public method to open drop down
methods.open = function() {
return this.each(function() {
var $this = $(this),
pluginData = $this.data("ddslick");
//Check if plugin is initialized
if (pluginData)
open($this);
});
};
//Public method to close drop down
methods.close = function() {
return this.each(function() {
var $this = $(this),
pluginData = $this.data("ddslick");
//Check if plugin is initialized
if (pluginData)
close($this);
});
};
//Public method to destroy. Unbind all events and restore the original Html select/options
methods.destroy = function() {
return this.each(function() {
var $this = $(this),
pluginData = $this.data("ddslick");
//Check if already destroyed
if (pluginData) {
var originalElement = pluginData.original;
$this.removeData("ddslick").unbind(".ddslick").replaceWith(originalElement);
}
});
};
//Private: Select by value
function selectValue(obj, value) {
var index = obj.find(".dd-option-value[value= '" + value + "']").parents("li").prevAll().length;
selectIndex(obj, index);
}
//Private: Select index
function selectIndex(obj, index, callbackOnSelection) {
//Get plugin data
var pluginData = obj.data("ddslick");
//Get required elements
var ddSelected = obj.find(".dd-selected"),
ddOptions = obj.find(".dd-options"),
ddSelectedValue = ddSelected.siblings(".dd-selected-value"),
selectedOption = obj.find(".dd-option").eq(index),
settings = pluginData.settings,
selectedData = pluginData.settings.data[index];
//Highlight selected option
obj.find(".dd-option").removeClass("dd-option-selected");
selectedOption.addClass("dd-option-selected");
ddOptions.attr("aria-activedescendant", selectedOption.attr("id"));
//Update or Set plugin data with new selection
pluginData.selectedIndex = index;
pluginData.selectedItem = selectedOption;
pluginData.selectedData = selectedData;
//If set to display to full html, add html
if (settings.showSelectedHTML) {
var ddSelectedData = $("<div>");
if(selectedData.imageSrc) ddSelectedData.append($("<img>").addClass("dd-selected-image" + (settings.imagePosition === "right" ? " dd-image-right" : "")).attr("src", selectedData.imageSrc).attr("alt", "dd-selected-image"));
if(selectedData.text) ddSelectedData.append($("<label>").addClass("dd-selected-text").text(selectedData.text));
if(selectedData.description) ddSelectedData.append($("<small>").addClass("dd-selected-description dd-desc" + (settings.truncateDescription ? " dd-selected-description-truncated" : "")).text(selectedData.description));
ddSelected.html(ddSelectedData.html());
}
//Else only display text as selection
else ddSelected.html(selectedData.text);
//Updating selected option value
ddSelectedValue.val(selectedData.value);
//BONUS! Update the original element attribute with the new selection
pluginData.original.val(selectedData.value);
obj.data("ddslick", pluginData);
//Close options on selection
close(obj);
// Re-focus on selected item.
obj.find(".dd-selected").focus();
//Adjust appearence for selected option
adjustSelectedHeight(obj);
//Callback function on selection
if (callbackOnSelection && typeof settings.onSelected == "function") {
settings.onSelected.call(this, pluginData);
}
}
//Private: Close the drop down options
function open(obj) {
var $this = obj.find(".dd-select"),
ddSelected = obj.find(".dd-selected"),
ddOptions = $this.siblings(".dd-options"),
ddPointer = $this.find(".dd-pointer"),
wasOpen = ddOptions.is(":visible"),
settings = settingsMap[obj.attr("data-settings-id")];
//Close all open options (multiple plugins) on the page
$(".dd-click-off-close").not(ddOptions).slideUp(settings.animationTime);
$(".dd-pointer").removeClass("dd-pointer-up");
$this.removeClass("dd-open");
ddSelected.attr("aria-expanded", "false");
ddOptions.attr("aria-hidden", "true");
if (wasOpen) {
ddOptions.slideUp(settings.animationTime);
ddPointer.removeClass("dd-pointer-up");
$this.removeClass("dd-open");
ddSelected.attr("aria-expanded", "false");
ddOptions.attr("aria-hidden", "true");
}
else {
$this.addClass("dd-open");
ddOptions.slideDown(settings.animationTime);
ddPointer.addClass("dd-pointer-up");
ddSelected.attr("aria-expanded", "true");
ddOptions.attr("aria-hidden", "false").focus();
}
//Fix text height (i.e. display title in center), if there is no description
adjustOptionsHeight(obj);
}
//Private: Close the drop down options
function close(obj) {
//Close drop down and adjust pointer direction
var settings = settingsMap[obj.attr("data-settings-id")];
obj.find(".dd-select").removeClass("dd-open");
obj.find(".dd-selected").attr("aria-expanded", "false");
obj.find(".dd-options").slideUp(settings.animationTime).attr("aria-hidden", "true");
obj.find(".dd-pointer").removeClass("dd-pointer-up").removeClass("dd-pointer-up");
}
//Private: Adjust appearence for selected option (move title to middle), when no desripction
function adjustSelectedHeight(obj) {
//Get height of dd-selected
var lSHeight = obj.find(".dd-select").css("height");
//Check if there is selected description
var descriptionSelected = obj.find(".dd-selected-description");
var imgSelected = obj.find(".dd-selected-image");
if (descriptionSelected.length <= 0 && imgSelected.length > 0) {
obj.find(".dd-selected-text").css("lineHeight", lSHeight);
}
}
//Private: Adjust appearence for drop down options (move title to middle), when no desripction
function adjustOptionsHeight(obj) {
obj.find(".dd-option").each(function() {
var $this = $(this);
var lOHeight = $this.css("height");
var descriptionOption = $this.find(".dd-option-description");
var imgOption = obj.find(".dd-option-image");
if (descriptionOption.length <= 0 && imgOption.length > 0) {
$this.find(".dd-option-text").css("lineHeight", lOHeight);
}
});
}
}));