summaryrefslogtreecommitdiffstats
path: root/install/ui/navigation.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-04-28 17:38:21 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-05-05 12:14:34 -0500
commit5eb9f088f2c5c902a55aefdf9dd8b2a95e060837 (patch)
tree57e5eb988fb2056d02df4ab07c857622dd03f0b8 /install/ui/navigation.js
parent238da3dffd99f3ea91318eb2dd0fe77860aff345 (diff)
downloadfreeipa-5eb9f088f2c5c902a55aefdf9dd8b2a95e060837.tar.gz
freeipa-5eb9f088f2c5c902a55aefdf9dd8b2a95e060837.tar.xz
freeipa-5eb9f088f2c5c902a55aefdf9dd8b2a95e060837.zip
Use entity names for tab state.
Previously the tab state is represented using numeric index such as navigation=0&identity=1 which is not very user friendly. Now the code has been modified to use entity names such as navigation=identity&identity=group.
Diffstat (limited to 'install/ui/navigation.js')
-rw-r--r--install/ui/navigation.js150
1 files changed, 84 insertions, 66 deletions
diff --git a/install/ui/navigation.js b/install/ui/navigation.js
index 3043b7c43..9b8f649df 100644
--- a/install/ui/navigation.js
+++ b/install/ui/navigation.js
@@ -30,7 +30,53 @@ IPA.navigation = function(spec) {
that.container = spec.container;
that.tab_class = spec.tab_class || 'tabs';
- that.tabs = spec.tabs || [];
+ that.tabs = [];
+ that.tabs_by_name = {};
+
+ that.set_tabs = function(tabs) {
+ that.tabs = tabs;
+ that.tabs_by_name = {};
+
+ for (var i=0; i<tabs.length; i++) {
+ that.add_tab(tabs[i]);
+ }
+ };
+
+ that.add_tab = function(tab, parent) {
+ if (!tab.name) {
+ tab.name = tab.entity;
+ }
+ tab.parent = parent;
+
+ that.tabs_by_name[tab.name] = tab;
+
+ for (var i=0; tab.children && i<tab.children.length; i++) {
+ that.add_tab(tab.children[i], tab);
+ }
+ };
+
+ that.get_tab = function(name) {
+ return that.tabs_by_name[name];
+ };
+
+ that.get_path_state = function(name) {
+
+ var state = {};
+
+ var tab = that.get_tab(name);
+ var parent = tab.parent;
+
+ while (parent) {
+ state[parent.name] = tab.name;
+
+ tab = parent;
+ parent = tab.parent;
+ }
+
+ state[that.container.attr('id')] = tab.name;
+
+ return state;
+ };
that.push_state = function(params) {
if (!IPA.test_dirty()) {
@@ -48,6 +94,20 @@ IPA.navigation = function(spec) {
$.bbq.removeState(key);
};
+ that.show_page = function(entity_name, facet_name, pkey) {
+ var state = that.get_path_state(entity_name);
+
+ if (facet_name) {
+ state[entity_name + '-facet'] = facet_name;
+ }
+
+ if (pkey) {
+ state[entity_name + '-pkey'] = pkey;
+ }
+
+ that.push_state(state);
+ };
+
that.create = function() {
that._create(that.tabs, that.container, 1);
@@ -56,11 +116,9 @@ IPA.navigation = function(spec) {
tabs.tabs({
select: function(event, ui) {
var panel = $(ui.panel);
- var parent = panel.parent();
- var id = parent.attr('id');
- var state = {};
- state[id] = ui.index;
- return that.push_state(state);
+ var name = panel.attr('id');
+
+ return that.show_page(name);
}
});
};
@@ -75,10 +133,6 @@ IPA.navigation = function(spec) {
for (var i=0; i<tabs.length; i++) {
var tab = tabs[i];
- if (!tab.name) {
- tab.name = tab.entity;
- }
-
var label = tab.name;
if (tab.entity) {
var entity = IPA.get_entity(tab.entity);
@@ -94,91 +148,55 @@ IPA.navigation = function(spec) {
label = tab.label;
}
- var li = that.create_tab_li(tab.name, label);
- ul.append(li);
+ $('<li/>').append($('<a/>', {
+ href: '#'+tab.name,
+ title: tab.name,
+ html: label
+ })).appendTo(ul);
- var div = that.create_tab_div(tab.name);
- container.append(div);
+ tab.content = $('<div/>', {
+ id: tab.name
+ }).appendTo(container);
if (tab.entity) {
- div.addClass('entity-container');
+ tab.content.addClass('entity-container');
}
if (tab.children && tab.children.length) {
- that._create(tab.children, div, depth+1);
+ that._create(tab.children, tab.content, depth+1);
}
}
};
- that.create_tab_li = function(id, name) {
- return $('<li/>').append($('<a/>', {
- href: '#'+id,
- title: id,
- html: name
- }));
- };
-
- that.create_tab_div = function(id) {
- return $('<div/>', {
- id: id
- });
- };
-
that.update = function() {
that._update(that.tabs, that.container, 1);
};
that._update = function(tabs, container, depth) {
- var id = container.attr('id');
- var index = that.get_state(id);
- if (!index || index >= tabs.length) index = 0;
+ var parent_name = container.attr('id');
+ var tab_name = that.get_state(parent_name);
+
+ var index = 0;
+ while (index < tabs.length && tabs[index].name != tab_name) index++;
+ if (index >= tabs.length) index = 0;
container.tabs('select', index);
var tab = tabs[index];
- var container2 = $('#' + tab.name);
if (tab.children && tab.children.length) {
- that._update(tab.children, container2, depth+1);
+ that._update(tab.children, tab.content, depth+1);
} else if (tab.entity) {
- tab.entity.setup(container2);
+ tab.entity.setup(tab.content);
}
};
// methods that should be invoked by subclasses
that.navigation_update = that.update;
- return that;
-};
+ that.set_tabs(spec.tabs);
-IPA.tab_state = function(entity_name,tab){
- var state;
- var i;
- var children;
- var tab_name;
-
- if (!tab){
- children = IPA.nav.tabs;
- tab_name = 'navigation';
- }else if (tab.children){
- children = tab.children;
- tab_name = tab.name;
- }else if (tab.entity){
- if (tab.entity.name === entity_name){
- state = {};
- state[entity_name] = 0;
- }
- return state;
- }
-
- for (i = 0; i < children.length; i +=1){
- state = IPA.tab_state(entity_name,children[i]);
- if (state){
- state[tab_name] = i;
- return state;
- }
- }
- return null;
+ return that;
};