64 lines
2.3 KiB
JavaScript
64 lines
2.3 KiB
JavaScript
/**
|
|
* Copyright 2014 Openstack Foundation
|
|
* Licensed 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.
|
|
**/
|
|
jQuery(document).ready(function($){
|
|
|
|
$('#name-term').autocomplete({
|
|
source: 'implementations/names',
|
|
minLength: 2,
|
|
select: function (event, ui) {
|
|
$('.filter-label').trigger("click");
|
|
}
|
|
})
|
|
.keydown(function (e) {
|
|
if (e.keyCode === 13) {
|
|
$('.filter-label').trigger("click");
|
|
}
|
|
});
|
|
|
|
$('#service-term').prepend("<option value='' selected='selected'>-- Select a Service--</option>");
|
|
$('#service-term').chosen({disable_search_threshold: 3});
|
|
$('#service-term').change(function () {
|
|
$('.filter-label').trigger("click");
|
|
});
|
|
|
|
var last_filter_request = null;
|
|
|
|
$('.filter-label').live('click', function (event) {
|
|
var params = {
|
|
name_term : $('#name-term').val(),
|
|
service_term : $('#service-term').val()
|
|
}
|
|
if(last_filter_request!=null)
|
|
last_filter_request.abort();
|
|
|
|
last_filter_request = $.ajax(
|
|
{
|
|
type: "POST",
|
|
url: 'implementations/search',
|
|
contentType: "application/json; charset=utf-8",
|
|
dataType: "html",
|
|
data: JSON.stringify(params),
|
|
success: function (data,textStatus,jqXHR) {
|
|
$('#implementation-list').html(data);
|
|
last_filter_request = null;
|
|
},
|
|
error: function (jqXHR, textStatus, errorThrown) {
|
|
$('#implementation-list').html('<div>There are no Distros/Appliances matching your criteria.</div>');
|
|
last_filter_request = null;
|
|
}
|
|
}
|
|
);
|
|
});
|
|
|
|
});
|