/* Authors: * Pavel Zuna * Adam Young * Endi S. Dewata * Petr Vobornik * * 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 . */ define([ './builder', './ipa', './jquery', './phases', './reg', './rpc', './spec_util', './text', './facet'], function(builder, IPA, $, phases, reg, rpc, su, text, mod_facet) { var exp = {}; exp.search_facet_control_buttons_pre_op = function(spec, context) { var override_actions = function(cust_acts, def_acts) { if (!cust_acts) return def_acts; var new_default_actions = []; for (var i=0, l=def_acts.length; i', { 'class': 'search-filter' }).appendTo(container); that.filter = $('', { type: 'text', 'class': 'form-control', name: 'filter', placeholder: text.get('@i18n:search.placeholder') }).appendTo(that.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: 'fa-search', click: function() { that.find(); return false; } }).appendTo(that.filter_container); }; that.managed_entity_pkey_prefix = function() { if (that.entity !== that.managed_entity) { return that.get_pkeys(); } return that.get_pkey_prefix(); }; that.show = function() { that.facet_show(); var filter = that.state.filter || ''; if (that.filter) { that.filter.val(filter); } }; that.show_add_dialog = function() { var dialog = that.managed_entity.get_dialog('add'); if (!that.adder_dialog) { that.adder_dialog = dialog; dialog.added.attach(function() { that.refresh(); }); } dialog.pkey_prefix = that.managed_entity_pkey_prefix(); dialog.open(); }; that.create_remove_dialog = function() { var values = that.get_selected_values(); var title; if (!values.length) { title = text.get('@i18n:dialogs.remove_empty'); alert(title); return null; } var dialog = builder.build('', that.deleter_dialog); if (!dialog) { 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; dialog.pkey_prefix = that.managed_entity_pkey_prefix(); title = text.get('@i18n:dialogs.remove_title'); var label = that.managed_entity.metadata.label; dialog.title = title.replace('${entity}', label); dialog.set_values(values); return dialog; }; that.show_remove_dialog = function() { var dialog = that.create_remove_dialog(); if (dialog) { dialog.open(); } else { window.console.log("Remove dialog was not created properly."); } }; that.find = function() { var filter = that.filter.val(); var old_filter = that.state.filter; var state = {}; state[that.managed_entity.name + '-filter'] = filter; if (filter !== old_filter) that.set_expired_flag(); that.state.set({filter: filter}); }; that.get_search_command_name = function() { var name = that.managed_entity.name + '_find'; if (that.pagination && !that.search_all_entries) { name += '_pkeys'; } return name; }; that.get_refresh_command_args = function() { var filter = that.state.filter || ''; var args = that.managed_entity_pkey_prefix(); args.push(filter); return args; }; /** * Provide RPC options for refresh command * - override point */ that.get_refresh_command_options = function() { return that.command_options; }; that.create_refresh_command = function() { var args = that.get_refresh_command_args(); var command = rpc.command({ name: that.get_search_command_name(), entity: that.managed_entity.name, method: 'find', args: args }); command.set_options(that.get_refresh_command_options()); if (that.pagination) { if (!that.search_all_entries) command.set_option('pkey_only', true); command.set_option('sizelimit', 0); } return command; }; that.refresh = function() { var command = that.create_refresh_command(); command.on_success = function(data, text_status, xhr) { if (!IPA.opened_dialogs.dialogs.length && !that.disable_search_field) { that.filter.focus(); } that.load(data); that.show_content(); }; command.on_error = function(xhr, text_status, error_thrown) { that.report_error(error_thrown); }; command.execute(); }; that.clear = function() { if (that.needs_clear()) { that.table.clear(); } }; that.needs_clear = function() { var clear = false; var filter = that.state.filter; clear = that.old_filter !== '' || that.old_filter !== filter; var pkeys = that.get_pkeys(); clear = clear || IPA.array_diff(pkeys, that.old_pkeys); return clear; }; that.init_search_facet = function() { that.init_facet(); that.init_table_columns(); that.init_table(that.managed_entity); that.policies.init(); }; if (!no_init) that.init_search_facet(); // methods that should be invoked by subclasses that.search_facet_refresh = that.refresh; that.search_facet_create_refresh_command = that.create_refresh_command; that.search_facet_create_remove_dialog = that.create_remove_dialog; that.search_facet_create_header = that.create_header; that.search_facet_show = that.show; return that; }; IPA.search_deleter_dialog = function(spec) { spec = spec || {}; var that = IPA.deleter_dialog(spec); that.pkey_prefix = spec.pkey_prefix || []; /** * List of attributes from table from search facet, which * are added to remove command as options. In case that there is not column * with this name, then the option is skipped * * @property {String} */ that.additional_table_attrs = spec.additional_table_attrs || []; that.create_command = function() { var batch = rpc.batch_command({ error_message: '@i18n:search.partial_delete', name: that.entity.name + '_batch_del' }); for (var i=0; i 0) { command = that.extend_command(command, add_attrs, value); } batch.add_command(command); } return batch; }; that.execute = function() { var batch = that.create_command(); batch.on_success = function(data, text_status, xhr) { that.facet.refresh(); that.facet.on_update.notify([],that.facet); that.facet.table.unselect_all(); var succeeded = batch.commands.length - batch.errors.errors.length; var msg = text.get('@i18n:search.deleted').replace('${count}', succeeded); IPA.notify_success(msg); }; batch.on_error = function() { that.facet.refresh(); }; batch.execute(); }; that.extend_command = function(command, add_attrs, pkey) { var records = that.facet.fetch_records(); var pkey_name = that.entity.metadata.primary_key; for (var i=0,l=records.length; i