/*jsl:import ipa.js */ /* Authors: * Pavel Zuna * Adam Young * Endi S. Dewata * * Copyright (C) 2010 Red Hat * see file 'COPYING' for use and warranty information * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /* REQUIRES: ipa.js */ IPA.search_facet = function(spec) { spec = spec || {}; spec.name = spec.name || 'search'; spec.managed_entity = spec.managed_entity ? IPA.get_entity(spec.managed_entity) : spec.entity; spec.disable_breadcrumb = spec.disable_breadcrumb === undefined ? true : spec.disable_breadcrumb; spec.disable_facet_tabs = spec.disable_facet_tabs === undefined ? true : spec.disable_facet_tabs; var that = IPA.table_facet(spec); var init = function() { that.init_table(that.managed_entity); }; that.create_header = function(container) { that.facet_create_header(container); var span = $('
', { 'class': 'right-aligned-facet-controls' }).appendTo(that.controls); span.append(IPA.create_network_spinner()); var filter_container = $('
', { 'class': 'search-filter' }).appendTo(span); that.filter = $('', { type: 'text', name: 'filter' }).appendTo(filter_container); that.filter.keypress(function(e) { /* if the key pressed is the enter key */ if (e.which == 13) { that.find(); } }); that.find_button = IPA.action_button({ name: 'find', icon: 'search-icon', click: function() { that.find(); return false; } }).appendTo(filter_container); that.remove_button = IPA.action_button({ name: 'remove', label: IPA.messages.buttons.remove, icon: 'remove-icon', click: function() { if (!that.remove_button.hasClass('action-button-disabled')) { that.show_remove_dialog(); } return false; } }).appendTo(that.controls); that.add_button = IPA.action_button({ name: 'add', label: IPA.messages.buttons.add, icon: 'add-icon', click: function() { if (!that.add_button.hasClass('action-button-disabled')) { that.show_add_dialog(); } return false; } }).appendTo(that.controls); }; that.show = function() { that.facet_show(); var filter = IPA.nav.get_state(that.entity.name+'-filter'); that.old_filter = filter || ''; if (that.filter) { that.filter.val(filter); } }; that.show_add_dialog = function() { var dialog = that.managed_entity.get_dialog('add'); dialog.open(that.container); }; that.show_remove_dialog = function() { var values = that.get_selected_values(); var title; if (!values.length) { title = IPA.messages.dialogs.remove_empty; alert(title); return; } var dialog = that.managed_entity.get_dialog('remove'); if (!dialog) { dialog = IPA.search_deleter_dialog(); } dialog.entity_name = that.managed_entity.name; dialog.entity = that.managed_entity; dialog.facet = that; title = IPA.messages.dialogs.remove_title; var label = that.managed_entity.metadata.label; dialog.title = title.replace('${entity}', label); dialog.set_values(values); dialog.open(that.container); }; that.find = function() { var filter = that.filter.val(); var state = {}; state[that.managed_entity.name + '-filter'] = filter; IPA.nav.push_state(state); }; that.get_pkeys = function(data) { var result = data.result.result; var pkey_name = that.managed_entity.metadata.primary_key; var pkeys = []; for (var i=0; i