forked from podio/jquery-mentions-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.mentionsInput.js
583 lines (497 loc) · 27.6 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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
/*
* 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"
//Default settings
var defaultSettings = {
triggerChar : '@', //Char that respond to event
onDataRequest : $.noop, //Function where we can search the data
minChars : 2, //Minimum chars to fire the event
allowRepeat : false, //Allow repeat mentions
showAvatars : true, //Show the avatars
elastic : true, //Grow the textarea automatically
defaultValue : '',
onCaret : false,
classes : {
autoCompleteItemActive : "active" //Classes to apply in each item
},
templates : {
wrapper : _.template('<div class="mentions-input-box"></div>'),
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>'),
mentionsOverlay : _.template('<div class="mentions"><div></div></div>'),
mentionItemSyntax : _.template('@[<%= value %>](<%= type %>:<%= id %>)'),
mentionItemHighlight : _.template('<strong><span><%= value %></span></strong>')
}
};
//Class util
var utils = {
//Encodes the character with _.escape function (undersocre)
htmlEncode : function (str) {
return _.escape(str);
},
//Encodes the character to be used with RegExp
regexpEncode : function (str) {
return str.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
},
highlightTerm : function (value, term) {
if (!term && !term.length) {
return value;
}
return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<b>$1</b>");
},
//Sets the caret in a valid position
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();
}
}
},
//Deletes the white spaces
rtrim: function(string) {
return string.replace(/\s+$/,"");
}
};
//Main class of MentionsInput plugin
var MentionsInput = function (settings) {
var domInput,
elmInputBox,
elmInputWrapper,
elmAutocompleteList,
elmWrapperBox,
elmMentionsOverlay,
elmActiveAutoCompleteItem,
mentionsCollection = [],
autocompleteItemCollection = {},
inputBuffer = [],
currentDataQuery = '';
//Mix the default setting with the users settings
settings = $.extend(true, {}, defaultSettings, settings );
//Initializes the text area target
function initTextarea() {
elmInputBox = $(domInput); //Get the text area target
//If the text area is already configured, return
if (elmInputBox.attr('data-mentions-input') === 'true') {
return;
}
elmInputWrapper = elmInputBox.parent(); //Get the DOM element parent
elmWrapperBox = $(settings.templates.wrapper());
elmInputBox.wrapAll(elmWrapperBox); //Wrap all the text area into the div elmWrapperBox
elmWrapperBox = elmInputWrapper.find('> div.mentions-input-box'); //Obtains the div elmWrapperBox that now contains the text area
elmInputBox.attr('data-mentions-input', 'true'); //Sets the attribute data-mentions-input to true -> Defines if the text area is already configured
elmInputBox.bind('keydown', onInputBoxKeyDown); //Bind the keydown event to the text area
elmInputBox.bind('keypress', onInputBoxKeyPress); //Bind the keypress event to the text area
elmInputBox.bind('click', onInputBoxClick); //Bind the click event to the text area
elmInputBox.bind('blur', onInputBoxBlur); //Bind the blur event to the text area
if (navigator.userAgent.indexOf("MSIE 8") > -1) {
elmInputBox.bind('propertychange', onInputBoxInput); //IE8 won't fire the input event, so let's bind to the propertychange
} else {
elmInputBox.bind('input', onInputBoxInput); //Bind the input event to the text area
}
// Elastic textareas, grow automatically
if( settings.elastic ) {
elmInputBox.elastic();
}
}
//Initializes the autocomplete list, append to elmWrapperBox and delegate the mousedown event to li elements
function initAutocomplete() {
elmAutocompleteList = $(settings.templates.autocompleteList()); //Get the HTML code for the list
elmAutocompleteList.appendTo(elmWrapperBox); //Append to elmWrapperBox element
elmAutocompleteList.delegate('li', 'mousedown', onAutoCompleteItemClick); //Delegate the event
}
//Initializes the mentions' overlay
function initMentionsOverlay() {
elmMentionsOverlay = $(settings.templates.mentionsOverlay()); //Get the HTML code of the mentions' overlay
elmMentionsOverlay.prependTo(elmWrapperBox); //Insert into elmWrapperBox the mentions overlay
}
//Updates the values of the main variables
function updateValues() {
var syntaxMessage = getInputBoxValue(); //Get the actual value of the text area
_.each(mentionsCollection, function (mention) {
var textSyntax = settings.templates.mentionItemSyntax(mention);
syntaxMessage = syntaxMessage.replace(new RegExp(utils.regexpEncode(mention.value), 'g'), textSyntax);
});
var mentionText = utils.htmlEncode(syntaxMessage); //Encode the syntaxMessage
_.each(mentionsCollection, function (mention) {
var formattedMention = _.extend({}, mention, {value: utils.htmlEncode(mention.value)});
var textSyntax = settings.templates.mentionItemSyntax(formattedMention);
var textHighlight = settings.templates.mentionItemHighlight(formattedMention);
mentionText = mentionText.replace(new RegExp(utils.regexpEncode(textSyntax), 'g'), textHighlight);
});
mentionText = mentionText.replace(/\n/g, '<br />'); //Replace the escape character for <br />
mentionText = mentionText.replace(/ {2}/g, ' '); //Replace the 2 preceding token to
elmInputBox.data('messageText', syntaxMessage); //Save the messageText to elmInputBox
elmInputBox.trigger('updated');
elmMentionsOverlay.find('div').html(mentionText); //Insert into a div of the elmMentionsOverlay the mention text
}
//Cleans the buffer
function resetBuffer() {
inputBuffer = [];
}
//Updates the mentions collection
function updateMentionsCollection() {
var inputText = getInputBoxValue(); //Get the actual value of text area
//Returns the values that doesn't match the condition
mentionsCollection = _.reject(mentionsCollection, function (mention, index) {
return !mention.value || inputText.indexOf(mention.value) == -1;
});
mentionsCollection = _.compact(mentionsCollection); //Delete all the falsy values of the array and return the new array
}
//Adds mention to mentions collections
function addMention(mention) {
var currentMessage = getInputBoxValue(),
caretStart = elmInputBox[0].selectionStart,
shortestDistance = false,
bestLastIndex = false;
// Using a regex to figure out positions
var regex = new RegExp("\\" + settings.triggerChar + currentDataQuery, "gi"),
regexMatch;
while(regexMatch = regex.exec(currentMessage)) {
if (shortestDistance === false || Math.abs(regex.lastIndex - caretStart) < shortestDistance) {
shortestDistance = Math.abs(regex.lastIndex - caretStart);
bestLastIndex = regex.lastIndex;
}
}
var startCaretPosition = bestLastIndex - currentDataQuery.length - 1; //Set the start caret position (right before the @)
var currentCaretPosition = bestLastIndex; //Set the current caret position (right after the end of the "mention")
var start = currentMessage.substr(0, startCaretPosition);
var end = currentMessage.substr(currentCaretPosition, currentMessage.length);
var startEndIndex = (start + mention.value).length + 1;
// See if there's the same mention in the list
if( !_.find(mentionsCollection, function (object) { return object.id == mention.id; }) ) {
mentionsCollection.push(mention);//Add the mention to mentionsColletions
}
// Cleaning before inserting the value, otherwise auto-complete would be triggered with "old" inputbuffer
resetBuffer();
currentDataQuery = '';
hideAutoComplete();
// Mentions and syntax message
var updatedMessageText = start + mention.value + ' ' + end;
elmInputBox.val(updatedMessageText); //Set the value to the txt area
elmInputBox.trigger('mention');
updateValues();
// Set correct focus and selection
elmInputBox.focus();
utils.setCaratPosition(elmInputBox[0], startEndIndex);
}
//Gets the actual value of the text area without white spaces from the beginning and end of the value
function getInputBoxValue() {
return $.trim(elmInputBox.val());
}
// 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.
function textareaSelectionPosition($el) {
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
}
//same as above function but return offset instead of position
function textareaSelectionOffset($el) {
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).offset(), $(c).remove(), f
}
//Scrolls back to the input after autocomplete if the window has scrolled past the input
function scrollToInput() {
var elmDistanceFromTop = $(elmInputBox).offset().top; //input offset
var bodyDistanceFromTop = $('body').offset().top; //body offset
var distanceScrolled = $(window).scrollTop(); //distance scrolled
if (distanceScrolled > elmDistanceFromTop) {
//subtracts body distance to handle fixed headers
$(window).scrollTop(elmDistanceFromTop - bodyDistanceFromTop);
}
}
//Takes the click event when the user select a item of the dropdown
function onAutoCompleteItemClick(e) {
var elmTarget = $(this); //Get the item selected
var mention = autocompleteItemCollection[elmTarget.attr('data-uid')]; //Obtains the mention
addMention(mention);
scrollToInput();
return false;
}
//Takes the click event on text area
function onInputBoxClick(e) {
resetBuffer();
}
//Takes the blur event on text area
function onInputBoxBlur(e) {
hideAutoComplete();
}
//Takes the input event when users write or delete something
function onInputBoxInput(e) {
updateValues();
updateMentionsCollection();
var triggerCharIndex = _.lastIndexOf(inputBuffer, settings.triggerChar); //Returns the last match of the triggerChar in the inputBuffer
if (triggerCharIndex > -1) { //If the triggerChar is present in the inputBuffer array
currentDataQuery = inputBuffer.slice(triggerCharIndex + 1).join(''); //Gets the currentDataQuery
currentDataQuery = utils.rtrim(currentDataQuery); //Deletes the whitespaces
_.defer(_.bind(doSearch, this, currentDataQuery)); //Invoking the function doSearch ( Bind the function to this)
}
}
//Takes the keypress event
function onInputBoxKeyPress(e) {
if(e.keyCode !== KEY.BACKSPACE) { //If the key pressed is not the backspace
var typedValue = String.fromCharCode(e.which || e.keyCode); //Takes the string that represent this CharCode
inputBuffer.push(typedValue); //Push the value pressed into inputBuffer
}
}
//Takes the keydown event
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 then call the resetBuffer function
_.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); //Call the updateValues function
}
return;
}
//If the key pressed was the backspace
if (e.keyCode === KEY.BACKSPACE) {
inputBuffer = inputBuffer.slice(0, -1 + inputBuffer.length); // Can't use splice, not available in IE
return;
}
//If the elmAutocompleteList is hidden
if (!elmAutocompleteList.is(':visible')) {
return true;
}
switch (e.keyCode) {
case KEY.UP: //If the key pressed was UP or DOWN
case KEY.DOWN:
var elmCurrentAutoCompleteItem = null;
if (e.keyCode === KEY.DOWN) { //If the key pressed was DOWN
if (elmActiveAutoCompleteItem && elmActiveAutoCompleteItem.length) { //If elmActiveAutoCompleteItem exits
elmCurrentAutoCompleteItem = elmActiveAutoCompleteItem.next(); //Gets the next li element in the list
} else {
elmCurrentAutoCompleteItem = elmAutocompleteList.find('li').first(); //Gets the first li element found
}
} else {
elmCurrentAutoCompleteItem = $(elmActiveAutoCompleteItem).prev(); //The key pressed was UP and gets the previous li element
}
if (elmCurrentAutoCompleteItem.length) {
selectAutoCompleteItem(elmCurrentAutoCompleteItem);
}
return false;
case KEY.RETURN: //If the key pressed was RETURN or TAB
case KEY.TAB:
if (elmActiveAutoCompleteItem && elmActiveAutoCompleteItem.length) { //If the elmActiveAutoCompleteItem exists
elmActiveAutoCompleteItem.trigger('mousedown'); //Calls the mousedown event
return false;
}
break;
}
return true;
}
//Hides the autoomplete
function hideAutoComplete() {
elmActiveAutoCompleteItem = null;
elmAutocompleteList.empty().hide();
}
//Selects the item in the autocomplete list
function selectAutoCompleteItem(elmItem) {
elmItem.addClass(settings.classes.autoCompleteItemActive); //Add the class active to item
elmItem.siblings().removeClass(settings.classes.autoCompleteItemActive); //Gets all li elements in autocomplete list and remove the class active
elmActiveAutoCompleteItem = elmItem; //Sets the item to elmActiveAutoCompleteItem
}
//Populates dropdown
function populateDropdown(query, results) {
elmAutocompleteList.show(); //Shows the autocomplete list
if(!settings.allowRepeat) {
// 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) { //If there are not elements hide the autocomplete list
hideAutoComplete();
return;
}
elmAutocompleteList.empty(); //Remove all li elements in autocomplete list
var elmDropDownList = $("<ul>").appendTo(elmAutocompleteList).hide(); //Inserts a ul element to autocomplete div and hide it
_.each(results, function (item, index) {
var itemUid = _.uniqueId('mention_'); //Gets the item with unique id
autocompleteItemCollection[itemUid] = _.extend({}, item, {value: item.name}); //Inserts the new item to autocompleteItemCollection
var elmListItem = $(settings.templates.autocompleteListItem({
'id' : utils.htmlEncode(item.id),
'display' : utils.htmlEncode(item.name),
'type' : utils.htmlEncode(item.type),
'content' : utils.highlightTerm(utils.htmlEncode((item.display ? item.display : item.name)), query)
})).attr('data-uid', itemUid); //Inserts the new item to list
//If the index is 0
if (index === 0) {
selectAutoCompleteItem(elmListItem);
}
//If show avatars is true
if (settings.showAvatars) {
var elmIcon;
//If the item has an avatar
if (item.avatar) {
elmIcon = $(settings.templates.autocompleteListItemAvatar({ avatar : item.avatar }));
} else { //If not then we set an default icon
elmIcon = $(settings.templates.autocompleteListItemIcon({ icon : item.icon }));
}
elmIcon.prependTo(elmListItem); //Inserts the elmIcon to elmListItem
}
elmListItem = elmListItem.appendTo(elmDropDownList); //Insets the elmListItem to elmDropDownList
});
elmAutocompleteList.show(); //Shows the elmAutocompleteList div
if (settings.onCaret) {
positionAutocomplete(elmAutocompleteList, elmInputBox);
}
elmDropDownList.show(); //Shows the elmDropDownList
}
//Search into data list passed as parameter
function doSearch(query) {
//If the query is not null, undefined, empty and has the minimum chars
if (query && query.length && query.length >= settings.minChars) {
//Call the onDataRequest function and then call the populateDropDrown
settings.onDataRequest.call(this, 'search', query, function (responseData) {
populateDropdown(query, responseData);
});
} else { //If the query is null, undefined, empty or has not the minimun chars
hideAutoComplete(); //Hide the autocompletelist
}
}
function positionAutocomplete(elmAutocompleteList, elmInputBox) {
var elmAutocompleteListPosition = elmAutocompleteList.css('position');
if (elmAutocompleteListPosition == 'absolute') {
var position = textareaSelectionPosition(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);
//check if the right position of auto complete is larger than the right position of the input
//if yes, reset the left of auto complete list to make it fit the input
var elmInputBoxRight = elmInputBox.offset().left + elmInputBox.width(),
elmAutocompleteListRight = elmAutocompleteList.offset().left + elmAutocompleteList.width();
if (elmInputBoxRight <= elmAutocompleteListRight) {
elmAutocompleteList.css('left', Math.abs(elmAutocompleteList.position().left - (elmAutocompleteListRight - elmInputBoxRight)));
}
}
else if (elmAutocompleteListPosition == 'fixed') {
var offset = textareaSelectionOffset(elmInputBox),
lineHeight = parseInt(elmInputBox.css('line-height'), 10) || 18;
elmAutocompleteList.css('width', '15em'); // Sort of a guess
elmAutocompleteList.css('left', offset.left + 10000);
elmAutocompleteList.css('top', lineHeight + offset.top);
}
}
//Resets the text area
function resetInput(currentVal) {
mentionsCollection = [];
var mentionText = utils.htmlEncode(currentVal);
var regex = new RegExp("(" + settings.triggerChar + ")\\[(.*?)\\]\\((.*?):(.*?)\\)", "gi");
var match, newMentionText = mentionText;
while ((match = regex.exec(mentionText)) != null) {
newMentionText = newMentionText.replace(match[0], match[1] + match[2]);
mentionsCollection.push({ 'id': match[4], 'type': match[3], 'value': match[2], 'trigger': match[1] });
}
elmInputBox.val(newMentionText);
updateValues();
}
// Public methods
return {
//Initializes the mentionsInput component on a specific element.
init : function (domTarget) {
domInput = domTarget;
initTextarea();
initAutocomplete();
initMentionsOverlay();
resetInput(settings.defaultValue);
//If the autocomplete list has prefill mentions
if( settings.prefillMention ) {
addMention( settings.prefillMention );
}
},
//An async method which accepts a callback function and returns a value of the input field (including markup) as a first parameter of this function. This is the value you want to send to your server.
val : function (callback) {
if (!_.isFunction(callback)) {
return;
}
callback.call(this, mentionsCollection.length ? elmInputBox.data('messageText') : getInputBoxValue());
},
//Resets the text area value and clears all mentions
reset : function () {
resetInput();
},
//Reinit with the text area value if it was changed programmatically
reinit : function () {
resetInput(false);
},
//An async method which accepts a callback function and returns a collection of mentions as hash objects as a first parameter.
getMentions : function (callback) {
if (!_.isFunction(callback)) {
return;
}
callback.call(this, mentionsCollection);
}
};
};
//Main function to include into jQuery and initialize the plugin
$.fn.mentionsInput = function (method, settings) {
var outerArguments = arguments; //Gets the arguments
//If method is not a function
if (typeof method === 'object' || !method) {
settings = method;
}
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);
} else {
$.error('Method ' + method + ' does not exist');
}
});
};
})(jQuery, _);