-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathangular-chosen.js
166 lines (161 loc) · 6.44 KB
/
angular-chosen.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
/**
* angular-chosen-localytics - Angular Chosen directive is an AngularJS Directive that brings the Chosen jQuery in a Angular way
* @version v1.9.2
* @link http://github.com/leocaseiro/angular-chosen
* @license MIT
*/
(function() {
var chosenModule,
indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
angular.module('localytics.directives', []);
chosenModule = angular.module('localytics.directives');
chosenModule.provider('chosen', function() {
var options;
options = {};
return {
setOption: function(newOpts) {
angular.extend(options, newOpts);
},
$get: function() {
return options;
}
};
});
chosenModule.directive('chosen', [
'chosen', '$timeout', '$parse', function(config, $timeout, $parse) {
var CHOSEN_OPTION_WHITELIST, NG_OPTIONS_REGEXP, isEmpty, snakeCase;
NG_OPTIONS_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/;
CHOSEN_OPTION_WHITELIST = ['allowSingleDeselect', 'disableSearch', 'disableSearchThreshold', 'enableSplitWordSearch', 'inheritSelectClasses', 'maxSelectedOptions', 'noResultsText', 'placeholderTextMultiple', 'placeholderTextSingle', 'searchContains', 'groupSearch', 'singleBackstrokeDelete', 'width', 'displayDisabledOptions', 'displaySelectedOptions', 'includeGroupLabelInSelected', 'maxShownResults', 'caseSensitiveSearch', 'hideResultsOnSelect', 'rtl'];
snakeCase = function(input) {
return input.replace(/[A-Z]/g, function($1) {
return "_" + ($1.toLowerCase());
});
};
isEmpty = function(value) {
var key;
if (angular.isArray(value)) {
return value.length === 0;
} else if (angular.isObject(value)) {
for (key in value) {
if (value.hasOwnProperty(key)) {
return false;
}
}
}
return true;
};
return {
restrict: 'A',
require: ['select', '?ngModel'],
priority: 1,
link: function(scope, element, attr, ctrls) {
var $render, chosen, directiveOptions, disableIfEmpty, empty, initIfNotInitialized, match, ngModel, ngSelect, options, startLoading, stopLoading, timer, trackBy, valuesExpr, viewWatch;
scope.disabledValuesHistory = scope.disabledValuesHistory ? scope.disabledValuesHistory : [];
element = $(element);
element.addClass('localytics-chosen');
ngSelect = ctrls[0];
ngModel = ctrls[1];
match = attr.ngOptions && attr.ngOptions.match(NG_OPTIONS_REGEXP);
valuesExpr = match && $parse(match[7]);
trackBy = match && match[8];
directiveOptions = scope.$eval(attr.chosen) || {};
options = angular.copy(config);
angular.extend(options, directiveOptions);
angular.forEach(attr, function(value, key) {
if (indexOf.call(CHOSEN_OPTION_WHITELIST, key) >= 0) {
return attr.$observe(key, function(value) {
var prefix;
prefix = String(element.attr(attr.$attr[key])).slice(0, 2);
options[snakeCase(key)] = prefix === '{{' ? value : scope.$eval(value);
return disableIfEmpty();
});
}
});
startLoading = function() {
return element.addClass('loading').attr('disabled', true).trigger('chosen:updated');
};
stopLoading = function() {
element.removeClass('loading');
if (angular.isDefined(attr.disabled)) {
element.attr('disabled', attr.disabled);
} else {
element.attr('disabled', false);
}
return element.trigger('chosen:updated');
};
chosen = null;
empty = false;
initIfNotInitialized = function() {
if (!chosen) {
return scope.$evalAsync(function() {
if (!chosen) {
return chosen = element.chosen(options).data('chosen');
}
});
}
};
disableIfEmpty = function() {
if (chosen && empty) {
element.attr('disabled', true);
}
return element.trigger('chosen:updated');
};
if (ngModel) {
$render = ngModel.$render;
ngModel.$render = function() {
var isPrimitive, nextValue, previousValue, valueChanged;
initIfNotInitialized();
try {
previousValue = ngSelect.readValue();
} catch (error) {}
$render();
try {
nextValue = ngSelect.readValue();
} catch (error) {}
isPrimitive = !trackBy && !attr.multiple;
valueChanged = isPrimitive ? previousValue !== nextValue : !angular.equals(previousValue, nextValue);
if (valueChanged) {
return element.trigger('chosen:updated');
}
};
element.on('chosen:hiding_dropdown', function() {
return scope.$applyAsync(function() {
return ngModel.$setTouched();
});
});
if (attr.multiple) {
viewWatch = function() {
return ngModel.$viewValue;
};
scope.$watch(viewWatch, ngModel.$render, true);
}
} else {
initIfNotInitialized();
}
attr.$observe('disabled', function() {
return element.trigger('chosen:updated');
});
if (attr.ngOptions && ngModel) {
timer = null;
scope.$watchCollection(valuesExpr, function(newVal, oldVal) {
return timer = $timeout(function() {
if (angular.isUndefined(newVal)) {
return startLoading();
} else {
empty = isEmpty(newVal);
stopLoading();
return disableIfEmpty();
}
});
});
return scope.$on('$destroy', function(event) {
if (timer != null) {
return $timeout.cancel(timer);
}
});
}
}
};
}
]);
}).call(this);