blob: 4408f95d8d22ed5ff616a3fb18c2e14bb9cf9cd1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
(function (callback) {
if (typeof define === 'function' && define.amd) {
define(['core/AbstractFacetWidget'], callback);
}
else {
callback();
}
}(function () {
(function ($) {
AjaxSolr.CountryCodeWidget = AjaxSolr.AbstractFacetWidget.extend({
afterRequest: function () {
var self = this;
$(this.target).empty();
var maxCount = 0;
var options = { '': '--select--' };
for (var facet in this.manager.response.facet_counts.facet_fields[this.field]) {
if (facet.length == 2) { // only display country codes
var count = this.manager.response.facet_counts.facet_fields[this.field][facet];
if (count > maxCount) {
maxCount = count;
}
options[facet] = facet + ' (' + count + ')';
}
}
$(this.target).append(this.template('country', options));
$(this.target).find('#country').change(function () {
var value = $(this).val();
if (value && self.add(value)) {
self.doRequest();
}
});
},
template: function (name, container) {
var options = [];
for (var value in container) {
options.push('<option value="' + value +'">' + container[value] + '</option>');
}
return '<select id="' + name + '" name="' + name + '">' + options.join('\n') + '</select>';
}
});
})(jQuery);
}));