-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextboxList.js
More file actions
473 lines (416 loc) · 13 KB
/
Copy pathTextboxList.js
File metadata and controls
473 lines (416 loc) · 13 KB
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
/*
Script: TextboxList.js
Displays a textbox as a combination of boxes an inputs (eg: facebook tokenizer)
Authors:
Guillermo Rauch
Note:
TextboxList is not priceless for commercial use. See <http://devthought.com/projects/jquery/textboxlist/>.
Purchase to remove this message.
*/
(function($){
$.TextboxList = function(element, _options){
var original, container, list, current, focused = false, index = [], blurtimer, events = {};
var options = $.extend(true, {
prefix: 'textboxlist',
max: null,
unique: false,
uniqueInsensitive: true,
endEditableBit: true,
startEditableBit: true,
hideEditableBits: true,
inBetweenEditableBits: true,
keys: {previous: 37, next: 39},
bitsOptions: {editable: {}, box: {}},
plugins: {},
// tip: you can change encode/decode with JSON.stringify and JSON.parse
encode: function(o){
return $.grep($.map(o, function(v){
v = (chk(v[0]) ? v[0] : v[1]);
return chk(v) ? v.toString().replace(/,/, '') : null;
}), function(o){ return o != undefined; }).join(',');
},
decode: function(o){ return o.split(','); }
}, _options);
element = $(element);
var self = this;
var init = function(){
original = element.css('display', 'none').attr('autocomplete', 'off').focus(focusLast);
container = $('<div class="'+options.prefix+'" />')
.insertAfter(element)
.click(function(e){
if ((e.target == list.get(0) || e.target == container.get(0)) && (!focused || (current && current.toElement().get(0) != list.find(':last-child').get(0)))) focusLast();
});
list = $('<ul class="'+ options.prefix +'-bits" />').appendTo(container);
for (var name in options.plugins) enablePlugin(name, options.plugins[name]);
afterInit();
};
var enablePlugin = function(name, options){
self.plugins[name] = new $.TextboxList[camelCase(capitalize(name))](self, options);
};
var afterInit = function(){
if (options.endEditableBit) create('editable', null, {tabIndex: original.tabIndex}).inject(list);
addEvent('bitAdd', update, true);
addEvent('bitRemove', update, true);
$(document).click(function(e){
if (!focused) return;
if (e.target.className.indexOf(options.prefix) != -1){
if (e.target == $(container).get(0)) return;
var parent = $(e.target).parents('div.' + options.prefix);
if (parent.get(0) == container.get(0)) return;
}
blur();
}).keydown(function(ev){
if (!focused || !current) return;
var caret = current.is('editable') ? current.getCaret() : null;
var value = current.getValue()[1];
var special = !!$.map(['shift', 'alt', 'meta', 'ctrl'], function(e){ return ev[e]; }).length;
var custom = special || (current.is('editable') && current.isSelected());
var evStop = function(){ ev.stopPropagation(); ev.preventDefault(); };
switch (ev.which){
case 8:
if (current.is('box')){
evStop();
return current.remove();
}
case options.keys.previous:
if (current.is('box') || ((caret == 0 || !value.length) && !custom)){
evStop();
focusRelative('prev');
}
break;
case 46:
if (current.is('box')){
evStop();
return current.remove();
}
case options.keys.next:
if (current.is('box') || (caret == value.length && !custom)){
evStop();
focusRelative('next');
}
}
});
setValues(options.decode(original.val()));
};
var create = function(klass, value, opt){
if (klass == 'box'){
if (chk(options.max) && list.children('.' + options.prefix + '-bit-box').length + 1 > options.max) return false;
if (options.unique && $.inArray(uniqueValue(value), index) != -1) return false;
}
return new $.TextboxListBit(klass, value, self, $.extend(true, options.bitsOptions[klass], opt));
};
var uniqueValue = function(value){
return chk(value[0]) ? value[0] : (options.uniqueInsensitive ? value[1].toLowerCase() : value[1]);
}
var add = function(plain, id, html, afterEl){
var b = create('box', [id, plain, html]);
if (b){
if (!afterEl || !afterEl.length) afterEl = list.find('.' + options.prefix + '-bit-box').filter(':last');
b.inject(afterEl.length ? afterEl : list, afterEl.length ? 'after' : 'top');
}
return self;
};
var focusRelative = function(dir, to){
var el = getBit(to && $(to).length ? to : current).toElement();
var b = getBit(el[dir]());
if (b) b.focus();
return self;
};
var focusLast = function(){
var lastElement = list.children().filter(':last');
if (lastElement) getBit(lastElement).focus();
return self;
};
var blur = function(){
if (! focused) return self;
if (current) current.blur();
focused = false;
return fireEvent('blur');
};
var getBit = function(obj){
return (obj.type && (obj.type == 'editable' || obj.type == 'box')) ? obj : $(obj).data('textboxlist:bit');
};
var getValues = function(){
var values = [];
list.children().each(function(){
var bit = getBit(this);
if (!bit.is('editable')) values.push(bit.getValue());
});
return values;
};
var setValues = function(values){
if (!values) return;
$.each(values, function(i, v){
if (v) add.apply(self, $.isArray(v) ? [v[1], v[0], v[2]] : [v]);
});
};
var update = function(){
original.val(options.encode(getValues()));
};
var addEvent = function(type, fn){
if (events[type] == undefined) events[type] = [];
var exists = false;
$.each(events[type], function(f){
if (f === fn){
exists = true;
return;
};
});
if (!exists) events[type].push(fn);
return self;
};
var fireEvent = function(type, args, delay){
if (!events || !events[type]) return self;
$.each(events[type], function(i, fn){
(function(){
args = (args != undefined) ? splat(args) : Array.prototype.slice.call(arguments);
var returns = function(){
return fn.apply(self || null, args);
};
if (delay) return setTimeout(returns, delay);
return returns();
})();
});
return self;
};
var removeEvent = function(type, fn){
if (events[type]){
for (var i = events[type].length; i--; i){
if (events[type][i] === fn) events[type].splice(i, 1);
}
}
return self;
};
var isDuplicate = function(v){
return $.inArray(uniqueValue(v), index);
};
this.onFocus = function(bit){
if (current) current.blur();
clearTimeout(blurtimer);
current = bit;
container.addClass(options.prefix + '-focus');
if (!focused){
focused = true;
fireEvent('focus', bit);
}
};
this.onAdd = function(bit){
if (options.unique && bit.is('box')) index.push(uniqueValue(bit.getValue()));
if (bit.is('box')){
var prior = getBit(bit.toElement().prev());
if ((prior && prior.is('box') && options.inBetweenEditableBits) || (!prior && options.startEditableBit)){
var priorEl = prior && prior.toElement().length ? prior.toElement() : false;
var b = create('editable').inject(priorEl || list, priorEl ? 'after' : 'top');
if (options.hideEditableBits) b.hide();
}
}
};
this.onRemove = function(bit){
if (!focused) return;
if (options.unique && bit.is('box')){
var i = isDuplicate(bit.getValue());
if (i != -1) index = index.splice(i + 1, 1);
}
var prior = getBit(bit.toElement().prev());
if (prior && prior.is('editable')) prior.remove();
focusRelative('next', bit);
};
this.onBlur = function(bit, all){
current = null;
container.removeClass(options.prefix + '-focus');
blurtimer = setTimeout(blur, all ? 0 : 200);
};
this.setOptions = function(opt){
options = $.extend(true, options, opt);
};
this.getOptions = function(){
return options;
};
this.getContainer = function(){
return container;
};
this.isDuplicate = isDuplicate;
this.addEvent = addEvent;
this.removeEvent = removeEvent;
this.fireEvent = fireEvent;
this.create = create;
this.add = add;
this.getValues = getValues;
this.plugins = [];
init();
};
$.TextboxListBit = function(type, value, textboxlist, _options){
var element, bit, prefix, typeprefix, close, hidden, focused = false, name = capitalize(type);
var options = $.extend(true, type == 'box' ? {
deleteButton: true
} : {
tabIndex: null,
growing: true,
growingOptions: {},
stopEnter: true,
addOnBlur: false,
addKeys: [13]
}, _options);
this.type = type;
this.value = value;
var self = this;
var init = function(){
prefix = textboxlist.getOptions().prefix + '-bit';
typeprefix = prefix + '-' + type;
bit = $('<li />').addClass(prefix).addClass(typeprefix)
.data('textboxlist:bit', self)
.hover(function(){
bit.addClass(prefix + '-hover').addClass(typeprefix + '-hover');
}, function(){
bit.removeClass(prefix + '-hover').removeClass(typeprefix + '-hover');
});
if (type == 'box'){
bit.html(chk(self.value[2]) ? self.value[2] : self.value[1]).click(focus);
if (options.deleteButton){
bit.addClass(typeprefix + '-deletable');
close = $('<a href="#" class="'+ typeprefix +'-deletebutton" />').click(remove).appendTo(bit);
}
bit.children().click(function(e){ e.stopPropagation(); e.preventDefault(); });
} else {
element = $('<input type="text" class="'+ typeprefix +'-input" autocomplete="off" />').val(self.value ? self.value[1] : '').appendTo(bit);
if (chk(options.tabIndex)) element.tabIndex = options.tabIndex;
if (options.growing) new $.GrowingInput(element, options.growingOptions);
element.focus(function(){ focus(true); }).blur(function(){
blur(true);
if (options.addOnBlur) toBox();
});
if (options.addKeys || options.stopEnter){
element.keydown(function(ev){
if (!focused) return;
var evStop = function(){ ev.stopPropagation(); ev.preventDefault(); };
if (options.stopEnter && ev.which === 13) evStop();
if ($.inArray(ev.which, splat(options.addKeys)) != -1){
evStop();
toBox();
}
});
}
}
};
var inject = function(el, where){
switch(where || 'bottom'){
case 'top': bit.prependTo(el); break;
case 'bottom': bit.appendTo(el); break;
case 'before': bit.insertBefore(el); break;
case 'after': bit.insertAfter(el); break;
}
textboxlist.onAdd(self);
return fireBitEvent('add');
};
var focus = function(noReal){
if (focused) return self;
show();
focused = true;
textboxlist.onFocus(self);
bit.addClass(prefix + '-focus').addClass(prefix + '-' + type + '-focus');
fireBitEvent('focus');
if (type == 'editable' && !noReal) element.focus();
return self;
};
var blur = function(noReal){
if (!focused) return self;
focused = false;
textboxlist.onBlur(self);
bit.removeClass(prefix + '-focus').removeClass(prefix + '-' + type + '-focus');
fireBitEvent('blur');
if (type == 'editable'){
if (!noReal) element.blur();
if (hidden && !element.val().length) hide();
}
return self;
};
var remove = function(){
blur();
textboxlist.onRemove(self);
bit.remove();
return fireBitEvent('remove');
};
var show = function(){
bit.css('display', 'block');
return self;
};
var hide = function(){
bit.css('display', 'none');
hidden = true;
return self;
};
var fireBitEvent = function(type){
type = capitalize(type);
textboxlist.fireEvent('bit' + type, self).fireEvent('bit' + name + type, self);
return self;
};
this.is = function(t){
return type == t;
};
this.setValue = function(v){
if (type == 'editable'){
element.val(chk(v[0]) ? v[0] : v[1]);
if (options.growing) element.data('growing').resize();
} else value = v;
return self;
};
this.getValue = function(){
return type == 'editable' ? [null, element.val(), null] : value;
};
if (type == 'editable'){
this.getCaret = function(){
var el = element.get(0);
if (el.createTextRange){
var r = document.selection.createRange().duplicate();
r.moveEnd('character', el.value.length);
if (r.text === '') return el.value.length;
return el.value.lastIndexOf(r.text);
} else return el.selectionStart;
};
this.getCaretEnd = function(){
var el = element.get(0);
if (el.createTextRange){
var r = document.selection.createRange().duplicate();
r.moveStart('character', -el.value.length);
return r.text.length;
} else return el.selectionEnd;
};
this.isSelected = function(){
return focused && (self.getCaret() !== self.getCaretEnd());
};
var toBox = function(){
var value = self.getValue();
var b = textboxlist.create('box', value);
if (b){
b.inject(bit, 'before');
self.setValue([null, '', null]);
return b;
}
return null;
};
this.toBox = toBox;
}
this.toElement = function(){
return bit;
};
this.focus = focus;
this.blur = blur;
this.remove = remove;
this.inject = inject;
this.show = show;
this.hide = hide;
this.fireBitEvent = fireBitEvent;
init();
};
var chk = function(v){ return !!(v || v === 0); };
var splat = function(a){ return $.isArray(a) ? a : [a]; };
var camelCase = function(str){ return str.replace(/-\D/g, function(match){ return match.charAt(1).toUpperCase(); }); };
var capitalize = function(str){ return str.replace(/\b[a-z]/g, function(A){ return A.toUpperCase(); }); };
$.fn.extend({
textboxlist: function(options){
return this.each(function(){
new $.TextboxList(this, options);
});
}
});
})(jQuery);