summaryrefslogtreecommitdiffstats
path: root/install/static/group.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2010-11-19 23:52:33 -0600
committerAdam Young <ayoung@redhat.com>2010-11-30 14:58:30 -0500
commitc90bff232dcc9dbab2cd6d5a1bb482cb1c5f16f9 (patch)
treee270c50dbff183e94590bd20d0d8e42100abc390 /install/static/group.js
parentd644d17adf117321747db1e4e22a771fbea3b09e (diff)
downloadfreeipa-c90bff232dcc9dbab2cd6d5a1bb482cb1c5f16f9.tar.gz
freeipa-c90bff232dcc9dbab2cd6d5a1bb482cb1c5f16f9.tar.xz
freeipa-c90bff232dcc9dbab2cd6d5a1bb482cb1c5f16f9.zip
Multicolumn association facet
The association facet has been modified to support multiple columns. By default the facet will have one column which is the primary key of the associated object (e.g. username of a group member), so the existing code will work like before. Other fields (e.g. user's full name) can be added by subclassing the ipa_association_facet class and specifying the additional columns to display. These additional fields will be retrieved using a batch operation. Previously a single association facet instance will be used for all associations in an entity. Now each association will have its own association facet. This way each association facet can be customized differently as needed. The <entity>-enroll URL parameter has been removed because it's no longer needed. The ipa_entity.create_association_facets() is provided to generate the default association facets with one column for the primary key. The column click handler has been moved out of ipa_column to provide more flexibility for customization. The get_action_panel() and get_client_area() have been modified to search within the entity's container. The group entity has been fully converted to use the new UI framework. Association facets that have been modified to use multiple columns are: - User Group's member_user - HBAC Service Group's member_hbacsvc - SUDO Command Group's member_sudocmd - Service's managedby_host New test data files have been added. Unit tests have been updated.
Diffstat (limited to 'install/static/group.js')
-rw-r--r--install/static/group.js168
1 files changed, 141 insertions, 27 deletions
diff --git a/install/static/group.js b/install/static/group.js
index f94a7dea..0dfae2fd 100644
--- a/install/static/group.js
+++ b/install/static/group.js
@@ -26,10 +26,23 @@ function ipa_group() {
'name': 'group'
});
- that.superior_init = that.superior('init');
-
that.init = function() {
+ that.create_association({
+ name: 'netgroup',
+ associator: 'serial'
+ });
+
+ that.create_association({
+ name: 'rolegroup',
+ associator: 'serial'
+ });
+
+ that.create_association({
+ name: 'taskgroup',
+ associator: 'serial'
+ });
+
var dialog = ipa_group_add_dialog({
'name': 'add',
'title': 'Add New Group'
@@ -37,7 +50,28 @@ function ipa_group() {
that.add_dialog(dialog);
dialog.init();
- that.superior_init();
+ var facet = ipa_group_search_facet({
+ 'name': 'search',
+ 'label': 'Search'
+ });
+ that.add_facet(facet);
+
+ facet = ipa_group_details_facet({
+ 'name': 'details',
+ 'label': 'Details'
+ });
+ that.add_facet(facet);
+
+ facet = ipa_group_member_user_facet({
+ 'name': 'member_user',
+ 'label': 'Users',
+ 'other_entity': 'user'
+ });
+ that.add_facet(facet);
+
+ that.create_association_facets();
+
+ that.entity_init();
};
return that;
@@ -51,36 +85,116 @@ function ipa_group_add_dialog(spec) {
var that = ipa_add_dialog(spec);
- that.superior_init = that.superior('init');
+ that.init = function() {
+
+ that.add_dialog_init();
+
+ that.add_field(ipa_text_widget({name:'cn', label:'Name', undo: false}));
+ that.add_field(ipa_text_widget({name:'description', label:'Description', undo: false}));
+ that.add_field(ipa_checkbox_widget({name:'posix', label:'Is this a POSIX group?', undo: false}));
+ that.add_field(ipa_text_widget({name:'gidnumber', label:'GID', undo: false}));
+ };
+
+ return that;
+}
+
+function ipa_group_search_facet(spec) {
+
+ spec = spec || {};
+
+ var that = ipa_search_facet(spec);
+
+ that.init = function() {
+
+ that.create_column({name:'cn', label:'Name'});
+ that.create_column({name:'gidnumber', label:'GID'});
+ that.create_column({name:'description', label:'Description'});
+
+ that.search_facet_init();
+ };
+
+ return that;
+}
+
+function ipa_group_details_facet(spec) {
+
+ spec = spec || {};
+
+ var that = ipa_details_facet(spec);
that.init = function() {
- this.superior_init();
+ var section = ipa_details_list_section({
+ name: 'details',
+ label: 'Group Details'
+ });
+ that.add_section(section);
+
+ section.create_field({
+ name: 'cn',
+ label: 'Group Name'
+ });
+
+ section.create_field({
+ name: 'description',
+ label: 'Description'
+ });
+
+ section.create_field({
+ name: 'gidnumber',
+ label: 'Group ID'
+ });
- this.add_field(ipa_text_widget({name:'cn', label:'Name', undo: false}));
- this.add_field(ipa_text_widget({name:'description', label:'Description', undo: false}));
- this.add_field(ipa_checkbox_widget({name:'posix', label:'Is this a POSIX group?', undo: false}));
- this.add_field(ipa_text_widget({name:'gidnumber', label:'GID', undo: false}));
+ that.details_facet_init();
};
return that;
}
-ipa_entity_set_search_definition('group', [
- ['cn', 'Name', null],
- ['gidnumber', 'GID', null],
- ['description', 'Description', null]
-]);
-
-ipa_entity_set_details_definition('group',[
- ipa_stanza({name:'identity', label:'Group Details'}).
- input({name:'cn', label:'Group Name'}).
- input({name:'description', label:'Description'}).
- input({name:'gidnumber', label:'Group ID'})
-]);
-
-ipa_entity_set_association_definition('group', {
- 'netgroup': { associator: 'serial' },
- 'rolegroup': { associator: 'serial' },
- 'taskgroup': { associator: 'serial' }
-});
+function ipa_group_member_user_facet(spec) {
+
+ spec = spec || {};
+
+ var that = ipa_association_facet(spec);
+
+ that.init = function() {
+
+ that.create_column({name: 'cn', label: 'Name'});
+
+ var column = that.create_column({
+ name: 'uid',
+ label: 'Login',
+ primary_key: true
+ });
+
+ column.setup = function(container, record) {
+ container.empty();
+
+ var value = record[column.name];
+ value = value ? value.toString() : '';
+
+ $('<a/>', {
+ 'href': '#'+value,
+ 'html': value,
+ 'click': function (value) {
+ return function() {
+ var state = IPA.tab_state(that.other_entity);
+ state[that.other_entity + '-facet'] = 'details';
+ state[that.other_entity + '-pkey'] = value;
+ $.bbq.pushState(state);
+ return false;
+ }
+ }(value)
+ }).appendTo(container);
+ };
+
+ that.create_column({name: 'uidnumber', label: 'UID'});
+ that.create_column({name: 'mail', label: 'EMAIL'});
+ that.create_column({name: 'telephonenumber', label: 'Phone'});
+ that.create_column({name: 'title', label: 'Job Title'});
+
+ that.association_facet_init();
+ };
+
+ return that;
+} \ No newline at end of file