52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
|
(function() {
|
||
|
this.CompareAutocomplete = (function() {
|
||
|
function CompareAutocomplete() {
|
||
|
this.initDropdown();
|
||
|
}
|
||
|
|
||
|
CompareAutocomplete.prototype.initDropdown = function() {
|
||
|
return $('.js-compare-dropdown').each(function() {
|
||
|
var $dropdown, selected;
|
||
|
$dropdown = $(this);
|
||
|
selected = $dropdown.data('selected');
|
||
|
return $dropdown.glDropdown({
|
||
|
data: function(term, callback) {
|
||
|
return $.ajax({
|
||
|
url: $dropdown.data('refs-url'),
|
||
|
data: {
|
||
|
ref: $dropdown.data('ref')
|
||
|
}
|
||
|
}).done(function(refs) {
|
||
|
return callback(refs);
|
||
|
});
|
||
|
},
|
||
|
selectable: true,
|
||
|
filterable: true,
|
||
|
filterByText: true,
|
||
|
fieldName: $dropdown.attr('name'),
|
||
|
filterInput: 'input[type="text"]',
|
||
|
renderRow: function(ref) {
|
||
|
var link;
|
||
|
if (ref.header != null) {
|
||
|
return $('<li />').addClass('dropdown-header').text(ref.header);
|
||
|
} else {
|
||
|
link = $('<a />').attr('href', '#').addClass(ref === selected ? 'is-active' : '').text(ref).attr('data-ref', escape(ref));
|
||
|
return $('<li />').append(link);
|
||
|
}
|
||
|
},
|
||
|
id: function(obj, $el) {
|
||
|
return $el.attr('data-ref');
|
||
|
},
|
||
|
toggleLabel: function(obj, $el) {
|
||
|
return $el.text().trim();
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
return CompareAutocomplete;
|
||
|
|
||
|
})();
|
||
|
|
||
|
}).call(this);
|