fix(baSidebar)-fix level 2 submenu bug

pull/222/head
xy 2016-12-22 17:11:44 +08:00
parent 9f40742637
commit b029e801a8
1 changed files with 21 additions and 12 deletions

View File

@ -21,18 +21,27 @@
this.getMenuItems = function() {
var states = defineMenuItemStates();
var menuItems = states.filter(function(item) {
return item.level == 0;
});
menuItems.forEach(function(item) {
var children = states.filter(function(child) {
return child.level == 1 && child.name.indexOf(item.name) === 0;
});
item.subMenu = children.length ? children : null;
});
return menuItems.concat(staticMenuItems);
//result shoud like [0,1,2]
var levels = states.map(function(e){
return e.level;
}).filter(function(e, i, arr){
return i === arr.indexOf(e);
});
//add subMenu for each level item
levels.forEach(function(level){
var menuItems = states.filter(function(e){
return e.level === level;
});
menuItems.forEach(function(item){
var children = states.filter(function(child){
return child.level - level === 1 && child.name.indexOf(item.name) === 0;
});
item.subMenu = children.length ? children : null;
});
});
return states.filter(function(e){
return e.level === 0;
}).concat(staticMenuItems);
};
this.shouldMenuBeCollapsed = shouldMenuBeCollapsed;