mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-01 11:47:11 -06:00
46137fdf89
The ordered map is a jQuery extension for creating a collection which can be accessed both as an ordered list and as a map. This collection can be used to store various objects including entities, fields, columns, and dialogs. A test suite for this class has been added as well. Ticket #1232
149 lines
4.1 KiB
JavaScript
149 lines
4.1 KiB
JavaScript
/*jsl:import ipa.js */
|
|
|
|
/* Authors:
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
* Endi Sukma Dewata <edewata@redhat.com>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* REQUIRES: ipa.js */
|
|
|
|
IPA.add_dialog = function (spec) {
|
|
|
|
spec = spec || {};
|
|
|
|
var that = IPA.dialog(spec);
|
|
|
|
that.name = spec.name;
|
|
that.title = spec.title;
|
|
that._entity_name = spec.entity_name;
|
|
|
|
that.init = function() {
|
|
|
|
that.add_button(IPA.messages.buttons.add, function() {
|
|
var record = {};
|
|
that.save(record);
|
|
that.add(
|
|
record,
|
|
function() {
|
|
var entity = IPA.get_entity(that.entity_name);
|
|
var facet = entity.get_facet('search');
|
|
var table = facet.table;
|
|
table.refresh();
|
|
that.close();
|
|
}
|
|
);
|
|
});
|
|
|
|
|
|
that.add_button(IPA.messages.buttons.add_and_add_another, function() {
|
|
var record = {};
|
|
that.save(record);
|
|
that.add(
|
|
record,
|
|
function() {
|
|
var entity = IPA.get_entity(that.entity_name);
|
|
var facet = entity.get_facet('search');
|
|
var table = facet.table;
|
|
table.refresh();
|
|
that.reset();
|
|
}
|
|
);
|
|
});
|
|
|
|
that.add_button(IPA.messages.buttons.add_and_edit, function() {
|
|
var record = {};
|
|
that.save(record);
|
|
that.add(
|
|
record,
|
|
function() {
|
|
that.close();
|
|
|
|
var pkey_name = IPA.metadata.objects[that.entity_name].primary_key;
|
|
var pkey = record[pkey_name];
|
|
|
|
IPA.nav.show_page(that.entity_name, 'details', pkey);
|
|
}
|
|
);
|
|
});
|
|
|
|
that.add_button(IPA.messages.buttons.cancel, function() {
|
|
that.close();
|
|
});
|
|
|
|
that.dialog_init();
|
|
};
|
|
|
|
that.add = function(record, on_success, on_error) {
|
|
|
|
var pkey_name = IPA.metadata.objects[that.entity_name].primary_key;
|
|
|
|
var command = IPA.command({
|
|
entity: that.entity_name,
|
|
method: 'add',
|
|
on_success: on_success,
|
|
on_error: on_error
|
|
});
|
|
|
|
var field, value;
|
|
|
|
var fields = that.fields.values;
|
|
for (var i=0; i<fields.length; i++) {
|
|
field = fields[i];
|
|
if (!field.valid) return;
|
|
|
|
value = record[field.name];
|
|
if (!value) continue;
|
|
|
|
if (field.name == pkey_name) {
|
|
command.add_arg(value);
|
|
} else {
|
|
command.set_option(field.name, value);
|
|
}
|
|
}
|
|
|
|
for (var j=0; j<that.sections.length; j++) {
|
|
var section = that.sections[j];
|
|
|
|
var section_fields = section.fields.values;
|
|
for (var k=0; k<section_fields.length; k++) {
|
|
field = section_fields[k];
|
|
if (!field.valid) return;
|
|
|
|
value = record[field.name];
|
|
if (!value) continue;
|
|
|
|
if (field.name == pkey_name) {
|
|
command.add_arg(value);
|
|
} else {
|
|
command.set_option(field.name, value);
|
|
}
|
|
}
|
|
}
|
|
|
|
//alert(JSON.stringify(command.to_json()));
|
|
|
|
command.execute();
|
|
};
|
|
|
|
that.add_dialog_init = that.init;
|
|
|
|
return that;
|
|
};
|
|
|