/* 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; version 2 only
*
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* REQUIRES: ipa.js */
function ipa_search_widget(spec) {
spec = spec || {};
var that = ipa_table_widget(spec);
that.superior_create = that.superior('create');
that.superior_setup = that.superior('setup');
that.create = function(container) {
var div = $('#'+that.id);
var search_controls = $('', {
'class': 'search-controls'
}).appendTo(div);
var search_filter = $('', {
'class': 'search-filter'
}).appendTo(search_controls);
this.filter = $('', {
'type': 'text',
'name': 'search-' + that.entity_name + '-filter'
}).appendTo(search_filter);
ipa_button({
'label': IPA.messages.button.find,
'icon': 'ui-icon-search',
'click': function() { that.find(container); }
}).appendTo(search_filter);
var li = $('', {
html: ipa_button({
'label': IPA.messages.button.remove,
'icon': 'ui-icon-trash',
'click': function() { that.remove(container); }
})});
li.append(
ipa_button({
'label': IPA.messages.button.add,
'icon': 'ui-icon-plus',
'click': function() { that.add(container); }
})
);
li.appendTo($('.action-panel ul'));
search_controls.append('');
var search_results = $('', {
'class': 'search-results'
}).appendTo(div);
that.superior_create(container);
};
that.setup = function(container) {
that.superior_setup(container);
var filter = $.bbq.getState(that.entity_name + '-filter', true) || '';
this.filter.val(filter);
};
that.find = function(container) {
var filter = this.filter.val();
var state = {};
state[that.entity_name + '-filter'] = filter;
$.bbq.pushState(state);
};
that.add = function(container) {
var entity = IPA.get_entity(that.entity_name);
var dialog = entity.get_dialog('add');
dialog.open(container);
return false;
};
that.remove = function(container) {
var values = that.get_selected_values();
if (!values.length) {
alert('Select '+that.label+' to be removed.');
return;
}
var title = 'Remove '+that.label;
var dialog = ipa_deleter_dialog({
'title': title,
'parent': container,
'values': values
});
dialog.remove = function() {
var batch = ipa_batch_command();
for (var i=0; iError: '+error_thrown.name+'
');
search_results.append('
'+error_thrown.title+'
');
search_results.append('
'+error_thrown.message+'
');
}
var filter = $.bbq.getState(that.entity_name + '-filter', true) || '';
ipa_cmd(
'find', [filter], {all: true}, on_success, on_error, that.entity_name
);
};
return that;
}
function ipa_search_column(spec) {
spec = spec || {};
var that = ipa_column_widget(spec);
return that;
}
function ipa_search_facet(spec) {
spec = spec || {};
var that = ipa_facet(spec);
that.init = spec.init || init;
that.create = spec.create || ipa_search_facet_create;
that.setup = spec.setup || setup;
that.load = spec.load || load;
that.columns = [];
that.columns_by_name = {};
that.__defineGetter__("entity_name", function(){
return that._entity_name;
});
that.__defineSetter__("entity_name", function(entity_name){
that._entity_name = entity_name;
for (var i=0; i', {
'id': that.entity_name+'-search'
}).appendTo(container);
that.table.create(container);
}
function setup(container, unspecified) {
that.table.setup(container);
}
function load(container, unspecified) {
that.filter = $.bbq.getState(that.entity_name + '-filter', true) || '';
that.table.refresh(container);
}
if (spec.columns) {
for (var i=0; i');
var tr = tbody.children().last();
search_generate_checkbox_td(tr, pkey_value);
var ths = thead.find('th');
for (var i = 1; i < ths.length; ++i) {
var jobj = $(ths[i]);
var attr = jobj.attr('abbr');
var value = entry_attrs[attr];
var column = facet ? facet.get_column(attr) : null;
var render_call = window[jobj.attr('title')];
if (column && column.setup) {
column.setup(tr, attr, value, entry_attrs);
} else if (typeof render_call == 'function') {
render_call(tr, attr, value, entry_attrs);
} else
search_generate_td(tr, attr, value, entry_attrs);
}
tbody.find('.search-a-pkey').click(function () {
var jobj = $(this);
var state = {};
state[obj_name + '-facet'] = 'details';
state[obj_name + '-pkey'] = $(this).text();
$.bbq.pushState(state);
return (false);
});
}
function search_generate_checkbox_td(tr, pkey)
{
var checkbox = $('', {
name: pkey,
title: pkey,
type: 'checkbox',
'class': 'search-selector'
});
var td = $('
');
td.append(checkbox);
tr.append(td);
}
var _search_td_template = '
V
';
var _search_a_pkey_template = 'V';
function search_generate_td(tr, attr, value, entry_attrs)
{
var obj_name = tr.closest('.entity-container').attr('title');
var param_info = ipa_get_param_info(obj_name, attr);
if (param_info && param_info['primary_key'])
value = _search_a_pkey_template.replace('V', value);
tr.append(_search_td_template.replace('A', attr).replace('V', value));
}