1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*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('Add', function() {
var record = that.get_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('Add and Add Another', function() {
var record = that.get_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('Add and Edit', function() {
var record = that.get_record();
that.add(
record,
function() {
that.close();
var pkey_name = IPA.metadata[that.entity_name].primary_key;
var pkey = record[pkey_name];
var state = {};
state[that.entity_name + '-facet'] = 'details';
state[that.entity_name + '-pkey'] = pkey;
$.bbq.pushState(state);
}
);
});
that.add_button('Cancel', function() {
that.close();
});
that.dialog_init();
};
that.add = function(record, on_success, on_error) {
var pkey_name = IPA.metadata[that.entity_name].primary_key;
var command = IPA.command({
method: that.entity_name+'_add',
on_success: on_success,
on_error: on_error
});
for (var i=0; i<that.fields.length; i++) {
var field = that.fields[i];
var value = record[field.name];
if (!value) continue;
if (field.name == pkey_name) {
command.add_arg(value);
} else {
command.set_option(field.name, value);
}
}
command.execute();
};
that.add_dialog_init = that.init;
return that;
};
|