egroupware_official/phpgwapi/js/jquery/magicsuggest/magicsuggest.js

1566 lines
58 KiB
JavaScript
Raw Normal View History

/**
2014-10-29 12:02:08 +01:00
* Multiple Selection Component for Bootstrap
* Check nicolasbize.github.io/magicsuggest/ for latest updates.
*
2014-10-29 12:02:08 +01:00
* Author: Nicolas Bize
* Created: Feb 8th 2013
* Last Updated: Oct 16th 2014
* Version: 2.1.4
* Licence: MagicSuggest is licenced under MIT licence (http://opensource.org/licenses/MIT)
*/
(function($)
{
"use strict";
var MagicSuggest = function(element, options)
{
var ms = this;
/**
* Initializes the MagicSuggest component
*/
var defaults = {
/********** CONFIGURATION PROPERTIES ************/
/**
2014-10-29 12:02:08 +01:00
* Restricts or allows the user to validate typed entries.
* Defaults to true.
*/
allowFreeEntries: true,
/**
2014-10-29 12:02:08 +01:00
* Restricts or allows the user to add the same entry more than once
* Defaults to false.
*/
allowDuplicates: false,
/**
* Additional config object passed to each $.ajax call
*/
ajaxConfig: {},
/**
* If a single suggestion comes out, it is preselected.
*/
autoSelect: true,
/**
* Auto select the first matching item with multiple items shown
*/
selectFirst: false,
/**
* Allow customization of query parameter
*/
queryParam: 'query',
/**
* A function triggered just before the ajax request is sent, similar to jQuery
*/
beforeSend: function(){ },
/**
* A custom CSS class to apply to the field's underlying element.
*/
cls: '',
/**
2014-10-29 12:02:08 +01:00
* JSON Data source used to populate the combo box. 3 options are available here:
* No Data Source (default)
* When left null, the combo box will not suggest anything. It can still enable the user to enter
2014-10-29 12:02:08 +01:00
* multiple entries if allowFreeEntries is * set to true (default).
* Static Source
* You can pass an array of JSON objects, an array of strings or even a single CSV string as the
2014-10-29 12:02:08 +01:00
* data source.For ex. data: [* {id:0,name:"Paris"}, {id: 1, name: "New York"}]
* You can also pass any json object with the results property containing the json array.
* Url
* You can pass the url from which the component will fetch its JSON data.Data will be fetched
* using a POST ajax request that will * include the entered text as 'query' parameter. The results
2014-10-29 12:02:08 +01:00
* fetched from the server can be:
* - an array of JSON objects (ex: [{id:...,name:...},{...}])
* - a string containing an array of JSON objects ready to be parsed (ex: "[{id:...,name:...},{...}]")
* - a JSON object whose data will be contained in the results property
2014-10-29 12:02:08 +01:00
* (ex: {results: [{id:...,name:...},{...}]
* Function
* You can pass a function which returns an array of JSON objects (ex: [{id:...,name:...},{...}])
* The function can return the JSON data or it can use the first argument as function to handle the data.
* Only one (callback function or return value) is needed for the function to succeed.
* See the following example:
* function (response) { var myjson = [{name: 'test', id: 1}]; response(myjson); return myjson; }
*/
data: null,
/**
2014-10-29 12:02:08 +01:00
* Additional parameters to the ajax call
*/
dataUrlParams: {},
/**
2014-10-29 12:02:08 +01:00
* Start the component in a disabled state.
*/
disabled: false,
/**
2014-10-29 12:02:08 +01:00
* Name of JSON object property that defines the disabled behaviour
*/
2014-10-29 12:02:08 +01:00
disabledField: null,
/**
2014-10-29 12:02:08 +01:00
* Name of JSON object property displayed in the combo list
*/
2014-10-29 12:02:08 +01:00
displayField: 'name',
/**
2014-10-29 12:02:08 +01:00
* Set to false if you only want mouse interaction. In that case the combo will
* automatically expand on focus.
*/
2014-10-29 12:02:08 +01:00
editable: true,
/**
2014-10-29 12:02:08 +01:00
* Set starting state for combo.
*/
expanded: false,
/**
2014-10-29 12:02:08 +01:00
* Automatically expands combo on focus.
*/
2014-10-29 12:02:08 +01:00
expandOnFocus: false,
/**
2014-10-29 12:02:08 +01:00
* JSON property by which the list should be grouped
*/
groupBy: null,
/**
2014-10-29 12:02:08 +01:00
* Set to true to hide the trigger on the right
*/
hideTrigger: false,
/**
2014-10-29 12:02:08 +01:00
* Set to true to highlight search input within displayed suggestions
*/
highlight: true,
/**
2014-10-29 12:02:08 +01:00
* A custom ID for this component
*/
2014-10-29 12:02:08 +01:00
id: null,
/**
2014-10-29 12:02:08 +01:00
* A class that is added to the info message appearing on the top-right part of the component
*/
infoMsgCls: '',
/**
2014-10-29 12:02:08 +01:00
* Additional parameters passed out to the INPUT tag. Enables usage of AngularJS's custom tags for ex.
*/
inputCfg: {},
/**
2014-10-29 12:02:08 +01:00
* The class that is applied to show that the field is invalid
*/
2014-10-29 12:02:08 +01:00
invalidCls: 'ms-inv',
/**
2014-10-29 12:02:08 +01:00
* Set to true to filter data results according to case. Useless if the data is fetched remotely
*/
matchCase: false,
/**
2014-10-29 12:02:08 +01:00
* Once expanded, the combo's height will take as much room as the # of available results.
* In case there are too many results displayed, this will fix the drop down height.
*/
maxDropHeight: 290,
/**
2014-10-29 12:02:08 +01:00
* Defines how long the user free entry can be. Set to null for no limit.
*/
maxEntryLength: null,
/**
2014-10-29 12:02:08 +01:00
* A function that defines the helper text when the max entry length has been surpassed.
*/
maxEntryRenderer: function(v) {
return 'Please reduce your entry by ' + v + ' character' + (v > 1 ? 's':'');
},
/**
2014-10-29 12:02:08 +01:00
* The maximum number of results displayed in the combo drop down at once.
*/
maxSuggestions: null,
/**
2014-10-29 12:02:08 +01:00
* The maximum number of items the user can select if multiple selection is allowed.
* Set to null to remove the limit.
*/
maxSelection: 10,
/**
2014-10-29 12:02:08 +01:00
* A function that defines the helper text when the max selection amount has been reached. The function has a single
* parameter which is the number of selected elements.
*/
maxSelectionRenderer: function(v) {
return 'You cannot choose more than ' + v + ' item' + (v > 1 ? 's':'');
},
/**
2014-10-29 12:02:08 +01:00
* The method used by the ajax request.
*/
method: 'POST',
/**
2014-10-29 12:02:08 +01:00
* The minimum number of characters the user must type before the combo expands and offers suggestions.
*/
minChars: 0,
/**
2014-10-29 12:02:08 +01:00
* A function that defines the helper text when not enough letters are set. The function has a single
* parameter which is the difference between the required amount of letters and the current one.
*/
minCharsRenderer: function(v) {
return 'Please type ' + v + ' more character' + (v > 1 ? 's':'');
},
/**
2014-10-29 12:02:08 +01:00
* Whether or not sorting / filtering should be done remotely or locally.
* Use either 'local' or 'remote'
*/
mode: 'local',
/**
* The name used as a form element.
*/
name: null,
/**
2014-10-29 12:02:08 +01:00
* The text displayed when there are no suggestions.
*/
noSuggestionText: 'No suggestions',
/**
2014-10-29 12:02:08 +01:00
* The default placeholder text when nothing has been entered
*/
2014-10-29 12:02:08 +01:00
placeholder: 'Type or click here',
/**
2014-10-29 12:02:08 +01:00
* A function used to define how the items will be presented in the combo
*/
renderer: null,
/**
2014-10-29 12:02:08 +01:00
* Whether or not this field should be required
*/
required: false,
/**
2014-10-29 12:02:08 +01:00
* Set to true to render selection as a delimited string
*/
resultAsString: false,
/**
2014-10-29 12:02:08 +01:00
* Text delimiter to use in a delimited string.
*/
resultAsStringDelimiter: ',',
/**
* Name of JSON object property that represents the list of suggested objects
*/
resultsField: 'results',
/**
2014-10-29 12:02:08 +01:00
* A custom CSS class to add to a selected item
*/
selectionCls: '',
/**
2014-10-29 12:02:08 +01:00
* An optional element replacement in which the selection is rendered
*/
selectionContainer: null,
/**
* Where the selected items will be displayed. Only 'right', 'bottom' and 'inner' are valid values
*/
selectionPosition: 'inner',
/**
2014-10-29 12:02:08 +01:00
* A function used to define how the items will be presented in the tag list
*/
selectionRenderer: null,
/**
2014-10-29 12:02:08 +01:00
* Set to true to stack the selectioned items when positioned on the bottom
* Requires the selectionPosition to be set to 'bottom'
*/
selectionStacked: false,
/**
2014-10-29 12:02:08 +01:00
* Direction used for sorting. Only 'asc' and 'desc' are valid values
*/
sortDir: 'asc',
/**
2014-10-29 12:02:08 +01:00
* name of JSON object property for local result sorting.
* Leave null if you do not wish the results to be ordered or if they are already ordered remotely.
*/
sortOrder: null,
/**
2014-10-29 12:02:08 +01:00
* If set to true, suggestions will have to start by user input (and not simply contain it as a substring)
*/
strictSuggest: false,
/**
2014-10-29 12:02:08 +01:00
* Custom style added to the component container.
*/
style: '',
/**
2014-10-29 12:02:08 +01:00
* If set to true, the combo will expand / collapse when clicked upon
*/
toggleOnClick: false,
/**
2014-10-29 12:02:08 +01:00
* Amount (in ms) between keyboard registers.
*/
typeDelay: 400,
/**
2014-10-29 12:02:08 +01:00
* If set to true, tab won't blur the component but will be registered as the ENTER key
*/
useTabKey: false,
/**
2014-10-29 12:02:08 +01:00
* If set to true, using comma will validate the user's choice
*/
useCommaKey: true,
/**
2014-10-29 12:02:08 +01:00
* Determines whether or not the results will be displayed with a zebra table style
*/
2014-10-29 12:02:08 +01:00
useZebraStyle: false,
/**
2014-10-29 12:02:08 +01:00
* initial value for the field
*/
value: null,
/**
2014-10-29 12:02:08 +01:00
* name of JSON object property that represents its underlying value
*/
valueField: 'id',
/**
2014-10-29 12:02:08 +01:00
* regular expression to validate the values against
*/
2014-10-29 12:02:08 +01:00
vregex: null,
/**
* type to validate against
*/
vtype: null
};
var conf = $.extend({},options);
var cfg = $.extend(true, {}, defaults, conf);
/********** PUBLIC METHODS ************/
/**
* Add one or multiple json items to the current selection
* @param items - json object or array of json objects
* @param isSilent - (optional) set to true to suppress 'selectionchange' event from being triggered
*/
this.addToSelection = function(items, isSilent)
{
if (!cfg.maxSelection || _selection.length < cfg.maxSelection) {
if (!$.isArray(items)) {
items = [items];
}
var valuechanged = false;
$.each(items, function(index, json) {
2014-10-29 12:02:08 +01:00
if (cfg.allowDuplicates || $.inArray(json[cfg.valueField], ms.getValue()) === -1) {
_selection.push(json);
valuechanged = true;
}
});
if(valuechanged === true) {
self._renderSelection();
this.empty();
if (isSilent !== true) {
2014-10-29 12:02:08 +01:00
$(this).trigger('selectionchange', [this, this.getSelection()]);
}
}
}
2014-10-29 12:02:08 +01:00
this.input.attr('placeholder', (cfg.selectionPosition === 'inner' && this.getValue().length > 0) ? '' : cfg.placeholder);
};
/**
* Clears the current selection
* @param isSilent - (optional) set to true to suppress 'selectionchange' event from being triggered
*/
this.clear = function(isSilent)
{
this.removeFromSelection(_selection.slice(0), isSilent); // clone array to avoid concurrency issues
};
/**
* Collapse the drop down part of the combo
*/
this.collapse = function()
{
if (cfg.expanded === true) {
this.combobox.detach();
cfg.expanded = false;
$(this).trigger('collapse', [this]);
}
};
/**
* Set the component in a disabled state.
*/
this.disable = function()
{
this.container.addClass('ms-ctn-disabled');
cfg.disabled = true;
ms.input.attr('disabled', true);
};
/**
* Empties out the combo user text
*/
this.empty = function(){
this.input.val('');
};
/**
* Set the component in a enable state.
*/
this.enable = function()
{
this.container.removeClass('ms-ctn-disabled');
cfg.disabled = false;
ms.input.attr('disabled', false);
};
/**
* Expand the drop drown part of the combo.
*/
this.expand = function()
{
if (!cfg.expanded && (this.input.val().length >= cfg.minChars || this.combobox.children().size() > 0)) {
this.combobox.appendTo(this.container);
self._processSuggestions();
cfg.expanded = true;
$(this).trigger('expand', [this]);
}
};
/**
* Retrieve component enabled status
*/
this.isDisabled = function()
{
return cfg.disabled;
};
/**
* Checks whether the field is valid or not
* @return {boolean}
*/
this.isValid = function()
{
2014-10-29 12:02:08 +01:00
var valid = cfg.required === false || _selection.length > 0;
if(cfg.vtype || cfg.vregex){
$.each(_selection, function(index, item){
valid = valid && self._validateSingleItem(item[cfg.valueField]);
});
}
return valid;
};
/**
* Gets the data params for current ajax request
*/
this.getDataUrlParams = function()
{
return cfg.dataUrlParams;
};
/**
* Gets the name given to the form input
*/
this.getName = function()
{
return cfg.name;
};
/**
* Retrieve an array of selected json objects
* @return {Array}
*/
2014-10-29 12:02:08 +01:00
this.getSelection = function()
{
return _selection;
};
/**
* Retrieve the current text entered by the user
*/
this.getRawValue = function(){
2014-10-29 12:02:08 +01:00
return ms.input.val();
};
/**
* Retrieve an array of selected values
*/
this.getValue = function()
{
return $.map(_selection, function(o) {
return o[cfg.valueField];
});
};
/**
* Remove one or multiples json items from the current selection
* @param items - json object or array of json objects
* @param isSilent - (optional) set to true to suppress 'selectionchange' event from being triggered
*/
this.removeFromSelection = function(items, isSilent)
{
if (!$.isArray(items)) {
items = [items];
}
var valuechanged = false;
$.each(items, function(index, json) {
var i = $.inArray(json[cfg.valueField], ms.getValue());
if (i > -1) {
_selection.splice(i, 1);
valuechanged = true;
}
});
if (valuechanged === true) {
self._renderSelection();
if(isSilent !== true){
2014-10-29 12:02:08 +01:00
$(this).trigger('selectionchange', [this, this.getSelection()]);
}
if(cfg.expandOnFocus){
ms.expand();
}
if(cfg.expanded) {
self._processSuggestions();
}
}
2014-10-29 12:02:08 +01:00
this.input.attr('placeholder', (cfg.selectionPosition === 'inner' && this.getValue().length > 0) ? '' : cfg.placeholder);
};
/**
* Get current data
*/
this.getData = function(){
return _cbData;
};
/**
* Set up some combo data after it has been rendered
* @param data
*/
this.setData = function(data){
cfg.data = data;
self._processSuggestions();
};
/**
* Sets the name for the input field so it can be fetched in the form
* @param name
*/
this.setName = function(name){
cfg.name = name;
2014-10-29 12:02:08 +01:00
if(name){
cfg.name += name.indexOf('[]') > 0 ? '' : '[]';
}
if(ms._valueContainer){
2014-10-29 12:02:08 +01:00
$.each(ms._valueContainer.children(), function(i, el){
el.name = cfg.name;
});
}
};
/**
2014-10-29 12:02:08 +01:00
* Sets the current selection with the JSON items provided
* @param items
*/
this.setSelection = function(items){
this.clear();
this.addToSelection(items);
};
/**
* Sets a value for the combo box. Value must be an array of values with data type matching valueField one.
* @param data
*/
2014-10-29 12:02:08 +01:00
this.setValue = function(values)
{
2014-10-29 12:02:08 +01:00
var items = [];
$.each(values, function(index, value) {
// first try to see if we have the full objects from our data set
var found = false;
$.each(_cbData, function(i,item){
if(item[cfg.valueField] == value){
items.push(item);
found = true;
return false;
}
});
if(!found){
if(typeof(value) === 'object'){
items.push(value);
} else {
var json = {};
json[cfg.valueField] = value;
json[cfg.displayField] = value;
items.push(json);
}
}
});
if(items.length > 0) {
this.addToSelection(items);
}
};
/**
* Sets data params for subsequent ajax requests
* @param params
*/
this.setDataUrlParams = function(params)
{
cfg.dataUrlParams = $.extend({},params);
};
/********** PRIVATE ************/
var _selection = [], // selected objects
_comboItemHeight = 0, // height for each combo item.
_timer,
_hasFocus = false,
_groups = null,
_cbData = [],
2014-10-29 12:02:08 +01:00
_ctrlDown = false,
KEYCODES = {
BACKSPACE: 8,
TAB: 9,
ENTER: 13,
CTRL: 17,
ESC: 27,
SPACE: 32,
UPARROW: 38,
DOWNARROW: 40,
COMMA: 188
};
var self = {
/**
* Empties the result container and refills it with the array of json results in input
* @private
*/
_displaySuggestions: function(data) {
2014-10-29 12:02:08 +01:00
ms.combobox.show();
ms.combobox.empty();
var resHeight = 0, // total height taken by displayed results.
nbGroups = 0;
if(_groups === null) {
self._renderComboItems(data);
resHeight = _comboItemHeight * data.length;
}
else {
for(var grpName in _groups) {
nbGroups += 1;
$('<div/>', {
'class': 'ms-res-group',
html: grpName
}).appendTo(ms.combobox);
self._renderComboItems(_groups[grpName].items, true);
}
2014-10-29 12:02:08 +01:00
var _groupItemHeight = ms.combobox.find('.ms-res-group').outerHeight();
if(_groupItemHeight !== null) {
var tmpResHeight = nbGroups * _groupItemHeight;
resHeight = (_comboItemHeight * data.length) + tmpResHeight;
} else {
resHeight = _comboItemHeight * (data.length + nbGroups);
}
}
if(resHeight < ms.combobox.height() || resHeight <= cfg.maxDropHeight) {
ms.combobox.height(resHeight);
}
else if(resHeight >= ms.combobox.height() && resHeight > cfg.maxDropHeight) {
ms.combobox.height(cfg.maxDropHeight);
}
2014-10-29 12:02:08 +01:00
if(data.length === 1 && cfg.autoSelect === true) {
ms.combobox.children().filter(':not(.ms-res-item-disabled):last').addClass('ms-res-item-active');
}
if (cfg.selectFirst === true) {
ms.combobox.children().filter(':not(.ms-res-item-disabled):first').addClass('ms-res-item-active');
}
if(data.length === 0 && ms.getRawValue() !== "") {
2014-10-29 12:02:08 +01:00
var noSuggestionText = cfg.noSuggestionText.replace(/\{\{.*\}\}/, ms.input.val());
self._updateHelper(noSuggestionText);
ms.collapse();
}
2014-10-29 12:02:08 +01:00
// When free entry is off, add invalid class to input if no data matches
if(cfg.allowFreeEntries === false) {
if(data.length === 0) {
$(ms.input).addClass(cfg.invalidCls);
ms.combobox.hide();
} else {
$(ms.input).removeClass(cfg.invalidCls);
}
}
},
/**
* Returns an array of json objects from an array of strings.
* @private
*/
_getEntriesFromStringArray: function(data) {
var json = [];
$.each(data, function(index, s) {
var entry = {};
entry[cfg.displayField] = entry[cfg.valueField] = $.trim(s);
json.push(entry);
});
return json;
},
/**
* Replaces html with highlighted html according to case
* @param html
* @private
*/
_highlightSuggestion: function(html) {
2014-10-29 12:02:08 +01:00
var q = ms.input.val();
//escape special regex characters
var specialCharacters = ['^', '$', '*', '+', '?', '.', '(', ')', ':', '!', '|', '{', '}', '[', ']'];
$.each(specialCharacters, function (index, value) {
q = q.replace(value, "\\" + value);
})
if(q.length === 0) {
return html; // nothing entered as input
}
2014-10-29 12:02:08 +01:00
var glob = cfg.matchCase === true ? 'g' : 'gi';
return html.replace(new RegExp('(' + q + ')(?!([^<]+)?>)', glob), '<em>$1</em>');
},
/**
* Moves the selected cursor amongst the list item
* @param dir - 'up' or 'down'
* @private
*/
_moveSelectedRow: function(dir) {
if(!cfg.expanded) {
ms.expand();
}
var list, start, active, scrollPos;
2014-10-29 12:02:08 +01:00
list = ms.combobox.find(".ms-res-item:not(.ms-res-item-disabled)");
if(dir === 'down') {
start = list.eq(0);
}
else {
start = list.filter(':last');
}
2014-10-29 12:02:08 +01:00
active = ms.combobox.find('.ms-res-item-active:not(.ms-res-item-disabled):first');
if(active.length > 0) {
if(dir === 'down') {
2014-10-29 12:02:08 +01:00
start = active.nextAll('.ms-res-item:not(.ms-res-item-disabled)').first();
if(start.length === 0) {
start = list.eq(0);
}
scrollPos = ms.combobox.scrollTop();
ms.combobox.scrollTop(0);
if(start[0].offsetTop + start.outerHeight() > ms.combobox.height()) {
ms.combobox.scrollTop(scrollPos + _comboItemHeight);
}
}
else {
2014-10-29 12:02:08 +01:00
start = active.prevAll('.ms-res-item:not(.ms-res-item-disabled)').first();
if(start.length === 0) {
start = list.filter(':last');
ms.combobox.scrollTop(_comboItemHeight * list.length);
}
if(start[0].offsetTop < ms.combobox.scrollTop()) {
ms.combobox.scrollTop(ms.combobox.scrollTop() - _comboItemHeight);
}
}
}
list.removeClass("ms-res-item-active");
start.addClass("ms-res-item-active");
},
/**
* According to given data and query, sort and add suggestions in their container
* @private
*/
_processSuggestions: function(source) {
var json = null, data = source || cfg.data;
if(data !== null) {
if(typeof(data) === 'function'){
2014-10-29 12:02:08 +01:00
data = data.call(ms, ms.getRawValue());
}
2014-10-29 12:02:08 +01:00
if(typeof(data) === 'string') { // get results from ajax
$(ms).trigger('beforeload', [ms]);
2014-10-29 12:02:08 +01:00
var queryParams = {}
queryParams[cfg.queryParam] = ms.input.val();
var params = $.extend(queryParams, cfg.dataUrlParams);
$.ajax($.extend({
type: cfg.method,
url: data,
data: params,
2014-10-29 12:02:08 +01:00
beforeSend: cfg.beforeSend,
success: function(asyncData){
json = typeof(asyncData) === 'string' ? JSON.parse(asyncData) : asyncData;
self._processSuggestions(json);
$(ms).trigger('load', [ms, json]);
2014-10-29 12:02:08 +01:00
if(self._asyncValues){
ms.setValue(typeof(self._asyncValues) === 'string' ? JSON.parse(self._asyncValues) : self._asyncValues);
self._renderSelection();
delete(self._asyncValues);
}
},
error: function(){
throw("Could not reach server");
}
2014-10-29 12:02:08 +01:00
}, cfg.ajaxConfig));
return;
} else { // results from local array
if(data.length > 0 && typeof(data[0]) === 'string') { // results from array of strings
_cbData = self._getEntriesFromStringArray(data);
} else { // regular json array or json object with results property
_cbData = data[cfg.resultsField] || data;
}
}
2014-10-29 12:02:08 +01:00
var sortedData = cfg.mode === 'remote' ? _cbData : self._sortAndTrim(_cbData);
self._displaySuggestions(self._group(sortedData));
}
},
/**
* Render the component to the given input DOM element
* @private
*/
_render: function(el) {
2014-10-29 12:02:08 +01:00
ms.setName(cfg.name); // make sure the form name is correct
// holds the main div, will relay the focus events to the contained input element.
ms.container = $('<div/>', {
2014-10-29 12:02:08 +01:00
'class': 'ms-ctn form-control ' + (cfg.resultAsString ? 'ms-as-string ' : '') + cfg.cls +
($(el).hasClass('input-lg') ? ' input-lg' : '') +
($(el).hasClass('input-sm') ? ' input-sm' : '') +
(cfg.disabled === true ? ' ms-ctn-disabled' : '') +
2014-10-29 12:02:08 +01:00
(cfg.editable === true ? '' : ' ms-ctn-readonly') +
(cfg.hideTrigger === false ? '' : ' ms-no-trigger'),
style: cfg.style,
id: cfg.id
});
ms.container.focus($.proxy(handlers._onFocus, this));
ms.container.blur($.proxy(handlers._onBlur, this));
ms.container.keydown($.proxy(handlers._onKeyDown, this));
ms.container.keyup($.proxy(handlers._onKeyUp, this));
// holds the input field
ms.input = $('<input/>', $.extend({
type: 'text',
2014-10-29 12:02:08 +01:00
'class': cfg.editable === true ? '' : ' ms-input-readonly',
readonly: !cfg.editable,
2014-10-29 12:02:08 +01:00
placeholder: cfg.placeholder,
disabled: cfg.disabled
2014-10-29 12:02:08 +01:00
}, cfg.inputCfg));
ms.input.focus($.proxy(handlers._onInputFocus, this));
ms.input.click($.proxy(handlers._onInputClick, this));
// holds the suggestions. will always be placed on focus
ms.combobox = $('<div/>', {
2014-10-29 12:02:08 +01:00
'class': 'ms-res-ctn dropdown-menu'
}).height(cfg.maxDropHeight);
// bind the onclick and mouseover using delegated events (needs jQuery >= 1.7)
ms.combobox.on('click', 'div.ms-res-item', $.proxy(handlers._onComboItemSelected, this));
ms.combobox.on('mouseover', 'div.ms-res-item', $.proxy(handlers._onComboItemMouseOver, this));
2014-10-29 12:02:08 +01:00
if(cfg.selectionContainer){
ms.selectionContainer = cfg.selectionContainer;
$(ms.selectionContainer).addClass('ms-sel-ctn');
} else {
ms.selectionContainer = $('<div/>', {
'class': 'ms-sel-ctn'
});
}
ms.selectionContainer.click($.proxy(handlers._onFocus, this));
2014-10-29 12:02:08 +01:00
if(cfg.selectionPosition === 'inner' && !cfg.selectionContainer) {
ms.selectionContainer.append(ms.input);
}
else {
ms.container.append(ms.input);
}
2014-10-29 12:02:08 +01:00
ms.helper = $('<span/>', {
'class': 'ms-helper ' + cfg.infoMsgCls
});
self._updateHelper();
ms.container.append(ms.helper);
// Render the whole thing
$(el).replaceWith(ms.container);
2014-10-29 12:02:08 +01:00
if(!cfg.selectionContainer){
switch(cfg.selectionPosition) {
case 'bottom':
ms.selectionContainer.insertAfter(ms.container);
if(cfg.selectionStacked === true) {
ms.selectionContainer.width(ms.container.width());
ms.selectionContainer.addClass('ms-stacked');
}
break;
case 'right':
ms.selectionContainer.insertAfter(ms.container);
ms.container.css('float', 'left');
break;
default:
ms.container.append(ms.selectionContainer);
break;
}
}
2014-10-29 12:02:08 +01:00
// holds the trigger on the right side
if(cfg.hideTrigger === false) {
ms.trigger = $('<div/>', {
'class': 'ms-trigger',
html: '<div class="ms-trigger-ico"></div>'
});
ms.trigger.click($.proxy(handlers._onTriggerClick, this));
ms.container.append(ms.trigger);
}
$(window).resize($.proxy(handlers._onWindowResized, this));
// do not perform an initial call if we are using ajax unless we have initial values
if(cfg.value !== null || cfg.data !== null){
if(typeof(cfg.data) === 'string'){
self._asyncValues = cfg.value;
self._processSuggestions();
} else {
self._processSuggestions();
if(cfg.value !== null){
ms.setValue(cfg.value);
self._renderSelection();
}
}
}
$("body").click(function(e) {
2014-10-29 12:02:08 +01:00
if(ms.container.hasClass('ms-ctn-focus') &&
ms.container.has(e.target).length === 0 &&
e.target.className.indexOf('ms-res-item') < 0 &&
e.target.className.indexOf('ms-close-btn') < 0 &&
ms.container[0] !== e.target) {
handlers._onBlur();
}
});
if(cfg.expanded === true) {
cfg.expanded = false;
ms.expand();
}
},
2014-10-29 12:02:08 +01:00
/**
* Renders each element within the combo box
* @private
*/
_renderComboItems: function(items, isGrouped) {
var ref = this, html = '';
$.each(items, function(index, value) {
var displayed = cfg.renderer !== null ? cfg.renderer.call(ref, value) : value[cfg.displayField];
2014-10-29 12:02:08 +01:00
var disabled = cfg.disabledField !== null && value[cfg.disabledField] === true;
var resultItemEl = $('<div/>', {
'class': 'ms-res-item ' + (isGrouped ? 'ms-res-item-grouped ':'') +
2014-10-29 12:02:08 +01:00
(disabled ? 'ms-res-item-disabled ':'') +
(index % 2 === 1 && cfg.useZebraStyle === true ? 'ms-res-odd' : ''),
html: cfg.highlight === true ? self._highlightSuggestion(displayed) : displayed,
'data-json': JSON.stringify(value)
});
html += $('<div/>').append(resultItemEl).html();
});
ms.combobox.append(html);
_comboItemHeight = ms.combobox.find('.ms-res-item:first').outerHeight();
},
/**
* Renders the selected items into their container.
* @private
*/
_renderSelection: function() {
var ref = this, w = 0, inputOffset = 0, items = [],
asText = cfg.resultAsString === true && !_hasFocus;
ms.selectionContainer.find('.ms-sel-item').remove();
if(ms._valueContainer !== undefined) {
ms._valueContainer.remove();
}
$.each(_selection, function(index, value){
var selectedItemEl, delItemEl,
selectedItemHtml = cfg.selectionRenderer !== null ? cfg.selectionRenderer.call(ref, value) : value[cfg.displayField];
2014-10-29 12:02:08 +01:00
var validCls = self._validateSingleItem(value[cfg.displayField]) ? '' : ' ms-sel-invalid';
// tag representing selected value
if(asText === true) {
selectedItemEl = $('<div/>', {
2014-10-29 12:02:08 +01:00
'class': 'ms-sel-item ms-sel-text ' + cfg.selectionCls + validCls,
html: selectedItemHtml + (index === (_selection.length - 1) ? '' : cfg.resultAsStringDelimiter)
}).data('json', value);
}
else {
selectedItemEl = $('<div/>', {
2014-10-29 12:02:08 +01:00
'class': 'ms-sel-item ' + cfg.selectionCls + validCls,
html: selectedItemHtml
}).data('json', value);
if(cfg.disabled === false){
// small cross img
delItemEl = $('<span/>', {
'class': 'ms-close-btn'
}).data('json', value).appendTo(selectedItemEl);
delItemEl.click($.proxy(handlers._onTagTriggerClick, ref));
}
}
items.push(selectedItemEl);
});
ms.selectionContainer.prepend(items);
2014-10-29 12:02:08 +01:00
// store the values, behaviour of multiple select
ms._valueContainer = $('<div/>', {
style: 'display: none;'
});
$.each(ms.getValue(), function(i, val){
var el = $('<input/>', {
type: 'hidden',
name: cfg.name,
value: val
});
el.appendTo(ms._valueContainer);
});
ms._valueContainer.appendTo(ms.selectionContainer);
2014-10-29 12:02:08 +01:00
if(cfg.selectionPosition === 'inner' && !cfg.selectionContainer) {
ms.input.width(0);
inputOffset = ms.input.offset().left - ms.selectionContainer.offset().left;
w = ms.container.width() - inputOffset - 42;
ms.input.width(w);
}
if(_selection.length === cfg.maxSelection){
self._updateHelper(cfg.maxSelectionRenderer.call(this, _selection.length));
} else {
ms.helper.hide();
}
},
/**
* Select an item either through keyboard or mouse
* @param item
* @private
*/
_selectItem: function(item) {
if(cfg.maxSelection === 1){
_selection = [];
}
ms.addToSelection(item.data('json'));
item.removeClass('ms-res-item-active');
if(cfg.expandOnFocus === false || _selection.length === cfg.maxSelection){
ms.collapse();
}
if(!_hasFocus){
ms.input.focus();
} else if(_hasFocus && (cfg.expandOnFocus || _ctrlDown)){
self._processSuggestions();
if(_ctrlDown){
ms.expand();
}
}
},
/**
* Sorts the results and cut them down to max # of displayed results at once
* @private
*/
_sortAndTrim: function(data) {
var q = ms.getRawValue(),
filtered = [],
newSuggestions = [],
selectedValues = ms.getValue();
// filter the data according to given input
if(q.length > 0) {
$.each(data, function(index, obj) {
var name = obj[cfg.displayField];
if((cfg.matchCase === true && name.indexOf(q) > -1) ||
2014-10-29 12:02:08 +01:00
(cfg.matchCase === false && name.toLowerCase().indexOf(q.toLowerCase()) > -1)) {
if(cfg.strictSuggest === false || name.toLowerCase().indexOf(q.toLowerCase()) === 0) {
filtered.push(obj);
}
}
});
}
else {
filtered = data;
}
// take out the ones that have already been selected
$.each(filtered, function(index, obj) {
2014-10-29 12:02:08 +01:00
if (cfg.allowDuplicates || $.inArray(obj[cfg.valueField], selectedValues) === -1) {
newSuggestions.push(obj);
}
});
// sort the data
if(cfg.sortOrder !== null) {
newSuggestions.sort(function(a,b) {
if(a[cfg.sortOrder] < b[cfg.sortOrder]) {
return cfg.sortDir === 'asc' ? -1 : 1;
}
if(a[cfg.sortOrder] > b[cfg.sortOrder]) {
return cfg.sortDir === 'asc' ? 1 : -1;
}
return 0;
});
}
// trim it down
if(cfg.maxSuggestions && cfg.maxSuggestions > 0) {
newSuggestions = newSuggestions.slice(0, cfg.maxSuggestions);
}
2014-10-29 12:02:08 +01:00
return newSuggestions;
},
_group: function(data){
// build groups
if(cfg.groupBy !== null) {
_groups = {};
2014-10-29 12:02:08 +01:00
$.each(data, function(index, value) {
var props = cfg.groupBy.indexOf('.') > -1 ? cfg.groupBy.split('.') : cfg.groupBy;
var prop = value[cfg.groupBy];
if(typeof(props) != 'string'){
prop = value;
while(props.length > 0){
prop = prop[props.shift()];
}
}
if(_groups[prop] === undefined) {
_groups[prop] = {title: prop, items: [value]};
}
else {
2014-10-29 12:02:08 +01:00
_groups[prop].items.push(value);
}
});
}
2014-10-29 12:02:08 +01:00
return data;
},
/**
* Update the helper text
* @private
*/
_updateHelper: function(html) {
ms.helper.html(html);
if(!ms.helper.is(":visible")) {
ms.helper.fadeIn();
}
2014-10-29 12:02:08 +01:00
},
/**
* Validate an item against vtype or vregex
* @private
*/
_validateSingleItem: function(value){
if(cfg.vregex !== null && cfg.vregex instanceof RegExp){
return cfg.vregex.test(value);
} else if(cfg.vtype !== null) {
switch(cfg.vtype){
case 'alpha':
return (/^[a-zA-Z_]+$/).test(value);
case 'alphanum':
return (/^[a-zA-Z0-9_]+$/).test(value);
case 'email':
return (/^(\w+)([\-+.][\w]+)*@(\w[\-\w]*\.){1,5}([A-Za-z]){2,6}$/).test(value);
case 'url':
return (/(((^https?)|(^ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i).test(value);
case 'ipaddress':
return (/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/).test(value);
}
}
return true;
}
};
var handlers = {
/**
* Triggered when blurring out of the component
* @private
*/
_onBlur: function() {
2014-10-29 12:02:08 +01:00
ms.container.removeClass('ms-ctn-focus');
ms.collapse();
_hasFocus = false;
if(ms.getRawValue() !== '' && cfg.allowFreeEntries === true){
var obj = {};
2014-10-29 12:02:08 +01:00
obj[cfg.displayField] = obj[cfg.valueField] = ms.getRawValue().trim();
ms.addToSelection(obj);
}
self._renderSelection();
if(ms.isValid() === false) {
2014-10-29 12:02:08 +01:00
ms.container.addClass(cfg.invalidCls);
}
else if(ms.input.val() !== '' && cfg.allowFreeEntries === false) {
ms.empty();
self._updateHelper('');
}
2014-10-29 12:02:08 +01:00
$(ms).trigger('blur', [ms]);
},
/**
* Triggered when hovering an element in the combo
* @param e
* @private
*/
_onComboItemMouseOver: function(e) {
2014-10-29 12:02:08 +01:00
var target = $(e.currentTarget);
if(!target.hasClass('ms-res-item-disabled')){
ms.combobox.children().removeClass('ms-res-item-active');
target.addClass('ms-res-item-active');
}
},
/**
* Triggered when an item is chosen from the list
* @param e
* @private
*/
_onComboItemSelected: function(e) {
2014-10-29 12:02:08 +01:00
var target = $(e.currentTarget);
if(!target.hasClass('ms-res-item-disabled')){
self._selectItem($(e.currentTarget));
}
},
/**
* Triggered when focusing on the container div. Will focus on the input field instead.
* @private
*/
_onFocus: function() {
ms.input.focus();
},
/**
* Triggered when clicking on the input text field
* @private
*/
_onInputClick: function(){
if (ms.isDisabled() === false && _hasFocus) {
if (cfg.toggleOnClick === true) {
if (cfg.expanded){
ms.collapse();
} else {
ms.expand();
}
}
}
},
/**
* Triggered when focusing on the input text field.
* @private
*/
_onInputFocus: function() {
if(ms.isDisabled() === false && !_hasFocus) {
_hasFocus = true;
2014-10-29 12:02:08 +01:00
ms.container.addClass('ms-ctn-focus');
ms.container.removeClass(cfg.invalidCls);
var curLength = ms.getRawValue().length;
if(cfg.expandOnFocus === true){
ms.expand();
}
if(_selection.length === cfg.maxSelection) {
self._updateHelper(cfg.maxSelectionRenderer.call(this, _selection.length));
} else if(curLength < cfg.minChars) {
self._updateHelper(cfg.minCharsRenderer.call(this, cfg.minChars - curLength));
}
self._renderSelection();
$(ms).trigger('focus', [ms]);
}
},
/**
* Triggered when the user presses a key while the component has focus
* This is where we want to handle all keys that don't require the user input field
* since it hasn't registered the key hit yet
* @param e keyEvent
* @private
*/
_onKeyDown: function(e) {
// check how tab should be handled
2014-10-29 12:02:08 +01:00
var active = ms.combobox.find('.ms-res-item-active:not(.ms-res-item-disabled):first'),
freeInput = ms.input.val();
$(ms).trigger('keydown', [ms, e]);
2014-10-29 12:02:08 +01:00
if(e.keyCode === KEYCODES.TAB && (cfg.useTabKey === false ||
(cfg.useTabKey === true && active.length === 0 && ms.input.val().length === 0))) {
handlers._onBlur();
return;
}
switch(e.keyCode) {
2014-10-29 12:02:08 +01:00
case KEYCODES.BACKSPACE:
if(freeInput.length === 0 && ms.getSelection().length > 0 && cfg.selectionPosition === 'inner') {
_selection.pop();
self._renderSelection();
2014-10-29 12:02:08 +01:00
$(ms).trigger('selectionchange', [ms, ms.getSelection()]);
ms.input.attr('placeholder', (cfg.selectionPosition === 'inner' && ms.getValue().length > 0) ? '' : cfg.placeholder);
ms.input.focus();
e.preventDefault();
}
break;
2014-10-29 12:02:08 +01:00
case KEYCODES.TAB:
case KEYCODES.ESC:
e.preventDefault();
break;
2014-10-29 12:02:08 +01:00
case KEYCODES.ENTER:
if(freeInput !== '' || cfg.expanded){
e.preventDefault();
}
break;
case KEYCODES.COMMA:
if(cfg.useCommaKey === true){
e.preventDefault();
}
break;
case KEYCODES.CTRL:
_ctrlDown = true;
break;
2014-10-29 12:02:08 +01:00
case KEYCODES.DOWNARROW:
e.preventDefault();
self._moveSelectedRow("down");
break;
2014-10-29 12:02:08 +01:00
case KEYCODES.UPARROW:
e.preventDefault();
self._moveSelectedRow("up");
break;
default:
if(_selection.length === cfg.maxSelection) {
e.preventDefault();
}
break;
}
},
/**
* Triggered when a key is released while the component has focus
* @param e
* @private
*/
_onKeyUp: function(e) {
var freeInput = ms.getRawValue(),
2014-10-29 12:02:08 +01:00
inputValid = $.trim(ms.input.val()).length > 0 &&
(!cfg.maxEntryLength || $.trim(ms.input.val()).length <= cfg.maxEntryLength),
selected,
obj = {};
$(ms).trigger('keyup', [ms, e]);
clearTimeout(_timer);
// collapse if escape, but keep focus.
2014-10-29 12:02:08 +01:00
if(e.keyCode === KEYCODES.ESC && cfg.expanded) {
ms.combobox.hide();
}
// ignore a bunch of keys
2014-10-29 12:02:08 +01:00
if((e.keyCode === KEYCODES.TAB && cfg.useTabKey === false) || (e.keyCode > KEYCODES.ENTER && e.keyCode < KEYCODES.SPACE)) {
if(e.keyCode === KEYCODES.CTRL){
_ctrlDown = false;
}
return;
}
switch(e.keyCode) {
2014-10-29 12:02:08 +01:00
case KEYCODES.UPARROW:
case KEYCODES.DOWNARROW:
e.preventDefault();
break;
2014-10-29 12:02:08 +01:00
case KEYCODES.ENTER:
case KEYCODES.TAB:
case KEYCODES.COMMA:
if(e.keyCode !== KEYCODES.COMMA || cfg.useCommaKey === true) {
e.preventDefault();
if(cfg.expanded === true){ // if a selection is performed, select it and reset field
2014-10-29 12:02:08 +01:00
selected = ms.combobox.find('.ms-res-item-active:not(.ms-res-item-disabled):first');
if(selected.length > 0) {
self._selectItem(selected);
return;
}
}
// if no selection or if freetext entered and free entries allowed, add new obj to selection
if(inputValid === true && cfg.allowFreeEntries === true) {
2014-10-29 12:02:08 +01:00
obj[cfg.displayField] = obj[cfg.valueField] = freeInput.trim();
ms.addToSelection(obj);
ms.collapse(); // reset combo suggestions
ms.input.focus();
}
break;
}
default:
if(_selection.length === cfg.maxSelection){
self._updateHelper(cfg.maxSelectionRenderer.call(this, _selection.length));
}
else {
if(freeInput.length < cfg.minChars) {
self._updateHelper(cfg.minCharsRenderer.call(this, cfg.minChars - freeInput.length));
if(cfg.expanded === true) {
ms.collapse();
}
}
else if(cfg.maxEntryLength && freeInput.length > cfg.maxEntryLength) {
self._updateHelper(cfg.maxEntryRenderer.call(this, freeInput.length - cfg.maxEntryLength));
if(cfg.expanded === true) {
ms.collapse();
}
}
else {
ms.helper.hide();
if(cfg.minChars <= freeInput.length){
_timer = setTimeout(function() {
if(cfg.expanded === true) {
self._processSuggestions();
} else {
ms.expand();
}
}, cfg.typeDelay);
}
}
}
break;
}
},
/**
* Triggered when clicking upon cross for deletion
* @param e
* @private
*/
_onTagTriggerClick: function(e) {
ms.removeFromSelection($(e.currentTarget).data('json'));
},
/**
* Triggered when clicking on the small trigger in the right
* @private
*/
_onTriggerClick: function() {
if(ms.isDisabled() === false && !(cfg.expandOnFocus === true && _selection.length === cfg.maxSelection)) {
$(ms).trigger('triggerclick', [ms]);
if(cfg.expanded === true) {
ms.collapse();
} else {
var curLength = ms.getRawValue().length;
if(curLength >= cfg.minChars){
ms.input.focus();
ms.expand();
} else {
self._updateHelper(cfg.minCharsRenderer.call(this, cfg.minChars - curLength));
}
}
}
2014-10-29 12:02:08 +01:00
},
/**
* Triggered when the browser window is resized
* @private
*/
_onWindowResized: function() {
self._renderSelection();
}
};
// startup point
if(element !== null) {
self._render(element);
}
};
$.fn.magicSuggest = function(options) {
var obj = $(this);
if(obj.size() === 1 && obj.data('magicSuggest')) {
return obj.data('magicSuggest');
}
obj.each(function(i) {
// assume $(this) is an element
var cntr = $(this);
// Return early if this element already has a plugin instance
if(cntr.data('magicSuggest')){
return;
}
if(this.nodeName.toLowerCase() === 'select'){ // rendering from select
options.data = [];
options.value = [];
$.each(this.children, function(index, child){
if(child.nodeName && child.nodeName.toLowerCase() === 'option'){
options.data.push({id: child.value, name: child.text});
2014-10-29 12:02:08 +01:00
if($(child).attr('selected')){
options.value.push(child.value);
}
}
});
}
var def = {};
// set values from DOM container element
$.each(this.attributes, function(i, att){
2014-10-29 12:02:08 +01:00
def[att.name] = att.name === 'value' && att.value !== '' ? JSON.parse(att.value) : att.value;
});
2014-10-29 12:02:08 +01:00
var field = new MagicSuggest(this, $.extend([], $.fn.magicSuggest.defaults, options, def));
cntr.data('magicSuggest', field);
field.container.data('magicSuggest', field);
});
if(obj.size() === 1) {
return obj.data('magicSuggest');
}
return obj;
};
2014-10-29 12:02:08 +01:00
$.fn.magicSuggest.defaults = {};
})(jQuery);