forked from podio/jquery-mentions-input
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjquery.mentionsInput.js
513 lines (409 loc) · 19.5 KB
/
jquery.mentionsInput.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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
/*
* Mentions Input
* Version 1.0.2
* Written by: Kenneth Auchenberg (Podio)
*
* Using underscore.js
*
* License: MIT License - http://www.opensource.org/licenses/mit-license.php
*/
(function ($, _, undefined) {
// Settings
var KEY = { BACKSPACE: 8, TAB: 9, RETURN: 13, ESC: 27, LEFT: 37, UP: 38, RIGHT: 39, DOWN: 40, COMMA: 188, SPACE: 32, HOME: 36, END: 35 }; // Keys "enum"
var defaultSettings = {
triggerChar: '@',
onDataRequest: $.noop,
minChars: 2,
showAvatars: true,
elastic: true,
display: 'name',
parseValue: function (item, triggerChar) { return item.value; },
onCaret: true,
enableHighlight: true,
classes: {
autoCompleteItemActive: "active"
},
templates: {
//Element to wrap the textarea, and soon to be created div + hidden inputs
wrapper: _.template('<div class="mentions-input-box"></div>'),
// Autocomplete elements
autocompleteList: _.template('<div class="mentions-autocomplete-list"></div>'),
autocompleteListItem: _.template('<li data-ref-id="<%= id %>" data-ref-type="<%= type %>" data-display="<%= display %>"><%= content %></li>'),
autocompleteListItemAvatar: _.template('<img src="<%= avatar %>" />'),
autocompleteListItemIcon: _.template('<div class="icon <%= icon %>"></div>'),
// <div> layered under the <textarea>
mentionsOverlay: _.template('<div class="mentions"><div></div></div>'),
// Syntax for .mentionsInput('val') which will probably be sent to the server
mentionItemSyntax: _.template('<%= triggerChar %>[<%= value %>](<%= type %>:<%= id %>)'),
// Structure for highlighting the text in the
mentionItemHighlight: _.template('<strong class="<%= type %> mention-highlight" data-id="<%= id %>" data-name="<%= name %>" data-avatar="<%= avatar %>"><span><%= value %></span></strong>'),
mentionItemNoHighlight: _.template('<strong class="<%= type %>" data-id="<%= id %>" data-name="<%= name %>" data-avatar="<%= avatar %>"><span><%= value %></span></strong>')
}
};
var utils = {
htmlEncode: function (str) {
return _.escape(str);
},
highlightTerm: function (value, term) {
if (!term && !term.length) {
return value;
}
return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<b>$1</b>");
},
setCaratPosition: function (domNode, caretPos) {
if (domNode.createTextRange) {
var range = domNode.createTextRange();
range.move('character', caretPos);
range.select();
} else {
if (domNode.selectionStart) {
domNode.focus();
domNode.setSelectionRange(caretPos, caretPos);
} else {
domNode.focus();
}
}
},
getCaratPosition: function (domNode) {
if (domNode.selectionStart) {
return domNode.selectionStart;
}
else if (domNode.ownerDocument.selection) {
var range = domNode.ownerDocument.selection.createRange();
if (!range) return 0;
var textrange = domNode.createTextRange();
var textrange2 = textrange.duplicate();
textrange.moveToBookmark(range.getBookmark());
textrange2.setEndPoint('EndToStart', textrange);
return textrange2.text.length;
}
},
getCaratOffset: function ($el) {
// This is taken straight from live (as of Sep 2012) GitHub code. The
// technique is known around the web. Just google it. Github's is quite
// succint though. NOTE: relies on selectionEnd, which as far as IE is concerned,
// it'll only work on 9+. Good news is nothing will happen if the browser
// doesn't support it.
var a, b, c, d, e, f, g, h, i, j, k;
if (!(i = $el[0])) return;
if (!$(i).is("textarea")) return;
if (i.selectionEnd == null) return;
g = {
position: "absolute",
overflow: "auto",
whiteSpace: "pre-wrap",
wordWrap: "break-word",
boxSizing: "content-box",
top: 0,
left: -9999
}, h = ["boxSizing", "fontFamily", "fontSize", "fontStyle", "fontVariant", "fontWeight", "height", "letterSpacing", "lineHeight", "paddingBottom", "paddingLeft", "paddingRight", "paddingTop", "textDecoration", "textIndent", "textTransform", "width", "word-spacing"];
for (j = 0, k = h.length; j < k; j++) e = h[j], g[e] = $(i).css(e);
return c = document.createElement("div"), $(c).css(g), $(i).after(c), b = document.createTextNode(i.value.substring(0, i.selectionEnd)), a = document.createTextNode(i.value.substring(i.selectionEnd)), d = document.createElement("span"), d.innerHTML = " ", c.appendChild(b), c.appendChild(d), c.appendChild(a), c.scrollTop = i.scrollTop, f = $(d).position(), $(c).remove(), f
},
rtrim: function (string) {
return string.replace(/\s+$/, "");
}
};
var MentionsInput = function (settings) {
var mentionsCollection = [];
var autocompleteItemCollection = {};
var inputBuffer = [];
var currentDataQuery = ''; //https://github.com/podio/jquery-mentions-input/pull/44
var domInput, elmInputBox, elmInputWrapper, elmAutocompleteList, elmWrapperBox,
elmMentionsOverlay, elmActiveAutoCompleteItem, currentTriggerChar;
settings = $.extend(true, {}, defaultSettings, settings);
function initTextarea() {
elmInputBox = $(domInput);
if (elmInputBox.attr('data-mentions-input') == 'true') {
return;
}
elmInputWrapper = elmInputBox.parent();
elmWrapperBox = $(settings.templates.wrapper());
elmInputBox.wrapAll(elmWrapperBox);
elmWrapperBox = elmInputWrapper.find('> div');
elmInputBox.attr('data-mentions-input', 'true');
elmInputBox.bind('keydown', onInputBoxKeyDown);
elmInputBox.bind('keypress', onInputBoxKeyPress);
elmInputBox.bind('input', onInputBoxInput);
elmInputBox.bind('click', onInputBoxClick);
elmInputBox.bind('blur', onInputBoxBlur);
// Elastic textareas, internal setting for the Dispora guys
if (settings.elastic) {
elmInputBox.elastic();
}
}
function initAutocomplete() {
elmAutocompleteList = $(settings.templates.autocompleteList());
elmAutocompleteList.appendTo(elmWrapperBox);
elmAutocompleteList.delegate('li', 'mousedown', onAutoCompleteItemClick);
}
function initMentionsOverlay() {
elmMentionsOverlay = $(settings.templates.mentionsOverlay());
elmMentionsOverlay.prependTo(elmWrapperBox);
}
function updateValues() {
var syntaxMessage = getInputBoxValue();
_.each(mentionsCollection, function (mention) {
var textSyntax = settings.templates.mentionItemSyntax(_.extend({}, mention, { value: utils.htmlEncode(mention.value) }));
syntaxMessage = syntaxMessage.replace(mention.value, textSyntax);
});
var mentionText = utils.htmlEncode(syntaxMessage);
_.each(mentionsCollection, function (mention) {
var formattedMention = _.extend({}, mention, { value: utils.htmlEncode(mention.value) });
var textSyntax = settings.templates.mentionItemSyntax(formattedMention);
var textHighlight =
settings.enableHighlight
? settings.templates.mentionItemHighlight(formattedMention)
: settings.templates.mentionItemNoHighlight(formattedMention);
mentionText = mentionText.replace(textSyntax, textHighlight);
});
mentionText = mentionText.replace(/\n/g, '<br />');
mentionText = mentionText.replace(/ {2}/g, ' ');
elmInputBox.data('messageText', syntaxMessage);
elmInputBox.trigger('updated');
elmMentionsOverlay.find('div').html(mentionText);
}
function resetBuffer() {
inputBuffer = [];
}
function updateMentionsCollection() {
var inputText = getInputBoxValue();
mentionsCollection = _.reject(mentionsCollection, function (mention, index) {
return !mention.value || inputText.indexOf(mention.value) == -1;
});
mentionsCollection = _.compact(mentionsCollection);
}
function addMention(mention) {
var currentMessage = getInputBoxValue();
var currentCaratPosition = utils.getCaratPosition(elmInputBox[0]);
var startMentionPosition = currentMessage.substr(0, currentCaratPosition).lastIndexOf(currentTriggerChar);
var endMentionPosition = startMentionPosition + currentDataQuery.length;
var start = currentMessage.substr(0, startMentionPosition);
var end = currentMessage.substr(endMentionPosition + 1, currentMessage.length);
var startEndIndex = (start + mention.value).length + 1;
mentionsCollection.push(
_.extend({}, mention, { triggerChar: currentTriggerChar })
);
// Cleaning before inserting the value, otherwise auto-complete would be triggered with "old" inputbuffer
resetBuffer();
currentDataQuery = '';
hideAutoComplete();
// Mentions & syntax message
var updatedMessageText = start + mention.value + ' ' + end;
elmInputBox.val(updatedMessageText);
elmInputBox.trigger('mention');
updateValues();
// Set correct focus and selection
elmInputBox.focus();
utils.setCaratPosition(elmInputBox[0], startEndIndex);
}
function getInputBoxValue() {
return $.trim(elmInputBox.val());
}
function onAutoCompleteItemClick(e) {
var elmTarget = $(this);
var mention = autocompleteItemCollection[elmTarget.attr('data-uid')];
addMention(mention);
return false;
}
function onInputBoxClick(e) {
resetBuffer();
}
function onInputBoxBlur(e) {
hideAutoComplete();
}
function checkTriggerChar(inputBuffer, triggerChar) {
var triggerCharIndex = _.lastIndexOf(inputBuffer, triggerChar);
if (triggerCharIndex > -1) {
currentDataQuery = inputBuffer.slice(triggerCharIndex + 1).join('');
_.defer(_.bind(doSearch, this, currentDataQuery, triggerChar));
}
}
function onInputBoxInput(e) {
updateValues();
updateMentionsCollection();
hideAutoComplete();
if (_.isArray(settings.triggerChar)) {
_.each(settings.triggerChar, function (triggerChar) {
checkTriggerChar(inputBuffer, triggerChar);
});
} else {
checkTriggerChar(inputBuffer, settings.triggerChar);
}
}
function onInputBoxKeyPress(e) {
if (e.keyCode !== KEY.BACKSPACE) {
var typedValue = String.fromCharCode(e.which || e.keyCode);
inputBuffer.push(typedValue);
}
}
function onInputBoxKeyDown(e) {
// This also matches HOME/END on OSX which is CMD+LEFT, CMD+RIGHT
if (e.keyCode == KEY.LEFT || e.keyCode == KEY.RIGHT || e.keyCode == KEY.HOME || e.keyCode == KEY.END) {
// Defer execution to ensure carat pos has changed after HOME/END keys
_.defer(resetBuffer);
// IE9 doesn't fire the oninput event when backspace or delete is pressed. This causes the highlighting
// to stay on the screen whenever backspace is pressed after a highlighed word. This is simply a hack
// to force updateValues() to fire when backspace/delete is pressed in IE9.
if (navigator.userAgent.indexOf("MSIE 9") > -1) {
_.defer(updateValues);
}
return;
}
if (e.keyCode == KEY.BACKSPACE) {
inputBuffer = inputBuffer.slice(0, -1 + inputBuffer.length); // Can't use splice, not available in IE
return;
}
if (!elmAutocompleteList.is(':visible')) {
return true;
}
switch (e.keyCode) {
case KEY.UP:
case KEY.DOWN:
var elmCurrentAutoCompleteItem = null;
if (e.keyCode == KEY.DOWN) {
if (elmActiveAutoCompleteItem && elmActiveAutoCompleteItem.length) {
elmCurrentAutoCompleteItem = elmActiveAutoCompleteItem.next();
} else {
elmCurrentAutoCompleteItem = elmAutocompleteList.find('li').first();
}
} else {
elmCurrentAutoCompleteItem = $(elmActiveAutoCompleteItem).prev();
}
if (elmCurrentAutoCompleteItem.length) {
selectAutoCompleteItem(elmCurrentAutoCompleteItem);
}
return false;
case KEY.RETURN:
case KEY.TAB:
if (elmActiveAutoCompleteItem && elmActiveAutoCompleteItem.length) {
elmActiveAutoCompleteItem.trigger('mousedown');
return false;
}
break;
}
return true;
}
function hideAutoComplete() {
elmActiveAutoCompleteItem = null;
elmAutocompleteList.empty().hide();
}
function selectAutoCompleteItem(elmItem) {
elmItem.addClass(settings.classes.autoCompleteItemActive);
elmItem.siblings().removeClass(settings.classes.autoCompleteItemActive);
elmActiveAutoCompleteItem = elmItem;
}
function populateDropdown(query, results) {
elmAutocompleteList.show();
// Filter items that has already been mentioned
var mentionValues = _.pluck(mentionsCollection, 'value');
results = _.reject(results, function (item) {
return _.include(mentionValues, item.name);
});
if (!results.length) {
hideAutoComplete();
return;
}
elmAutocompleteList.empty();
var elmDropDownList = $("<ul>").appendTo(elmAutocompleteList).hide();
_.each(results, function (item, index) {
var itemUid = _.uniqueId('mention_');
autocompleteItemCollection[itemUid] = _.extend({}, item, { value: settings.parseValue(item, currentTriggerChar) });
var elmListItem = $(settings.templates.autocompleteListItem({
'id': utils.htmlEncode(item.id),
'display': utils.htmlEncode(item[settings.display]),
'type': utils.htmlEncode(item.type),
'content': utils.highlightTerm(utils.htmlEncode((item.name)), query)
})).attr('data-uid', itemUid);
if (index === 0) {
selectAutoCompleteItem(elmListItem);
}
if (settings.showAvatars) {
var elmIcon;
if (item.avatar) {
elmIcon = $(settings.templates.autocompleteListItemAvatar({ avatar: item.avatar }));
} else {
elmIcon = $(settings.templates.autocompleteListItemIcon({ icon: item.icon }));
}
elmIcon.prependTo(elmListItem);
}
elmListItem = elmListItem.appendTo(elmDropDownList);
});
elmAutocompleteList.show();
if (settings.onCaret) positionAutocomplete(elmAutocompleteList, elmInputBox);
elmDropDownList.show();
}
function doSearch(query, triggerChar) {
if (query && query.length && query.length >= settings.minChars) {
var callback = function callback(responseData) {
populateDropdown(query, responseData);
currentTriggerChar = triggerChar;
}
settings.onDataRequest.call(this, 'search', query, triggerChar, callback);
}
}
function positionAutocomplete(elmAutocompleteList, elmInputBox) {
var position = utils.getCaratOffset(elmInputBox),
lineHeight = parseInt(elmInputBox.css('line-height'), 10) || 18;
elmAutocompleteList.css('width', '15em'); // Sort of a guess
elmAutocompleteList.css('left', position.left);
elmAutocompleteList.css('top', lineHeight + position.top);
}
function resetInput() {
elmInputBox.val('');
mentionsCollection = [];
updateValues();
}
// Public methods
return {
init: function (domTarget) {
domInput = domTarget;
initTextarea();
initAutocomplete();
initMentionsOverlay();
resetInput();
if (settings.prefillMention) {
addMention(settings.prefillMention);
}
},
val: function () {
var value = mentionsCollection.length ? elmInputBox.data('messageText') : getInputBoxValue();
return value;
},
reset: function () {
resetInput();
},
getMentions: function () {
return mentionsCollection;
}
};
};
$.fn.mentionsInput = function (method, settings) {
var outerArguments = arguments;
// Just call the method on the first instance we find
if (typeof method === 'object' || !method) {
settings = $.extend(true, {}, defaultSettings, method);
}
else if (typeof method === 'string' && this.length > 0) {
var instance = $.data(this[0], 'mentionsInput');
if (instance) {
if (_.isFunction(instance[method])) {
return instance[method].apply(this, Array.prototype.slice.call(outerArguments, 1));
}
else {
$.error('Method ' + method + ' does not exist');
}
}
}
// Else, initialise each plugin
return this.each(function () {
var instance = $.data(this, 'mentionsInput') || $.data(this, 'mentionsInput', new MentionsInput(settings));
/*if (_.isFunction(instance[method])) {
return instance[method].apply(this, Array.prototype.slice.call(outerArguments, 1));
} else*/
if (typeof method === 'object' || !method) {
return instance.init.call(this, this);
}
});
};
})(jQuery, _);