webadmin/src/wa/server/page/struct/WANavigation.java

122 lines
3.8 KiB
Java
Raw Normal View History

2015-04-09 21:22:47 +00:00
/*
* Copyright (c) 2015 Ziver
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package wa.server.page.struct;
2015-04-25 15:22:44 +00:00
import java.util.*;
2015-04-09 21:22:47 +00:00
/**
* Created by Ziver on 2015-04-02.
*/
public class WANavigation implements Iterable{
private static int nextId = 0;
private static HashMap<Integer, WANavigation> navMap = new HashMap<Integer, WANavigation>();
private static WANavigation rootNav = new WANavigation(null);
2015-04-22 15:33:08 +00:00
2015-07-28 12:06:51 +00:00
private final int id;
2015-04-25 15:22:44 +00:00
private String url;
2015-04-09 21:22:47 +00:00
private String name;
private WANavigation parentNav;
2015-07-28 12:06:51 +00:00
private ArrayList<WANavigation> subNav;
2015-04-25 15:22:44 +00:00
private Object resource;
2015-04-09 21:22:47 +00:00
private WANavigation(String name) {
2015-04-25 15:22:44 +00:00
this.id = nextId++;
this.navMap.put(this.id, this);
2015-04-25 15:22:44 +00:00
this.url = "?i="+this.id;
2015-04-09 21:22:47 +00:00
this.name = name;
this.subNav = new ArrayList<>();
2015-04-22 15:33:08 +00:00
}
2015-04-25 15:22:44 +00:00
@Override
public Iterator iterator() {
return subNav.iterator();
2015-04-22 15:33:08 +00:00
}
public List<WANavigation> getSubNavs() {
return subNav;
2015-04-09 21:22:47 +00:00
}
private WANavigation getSubNav(String name) {
for(WANavigation nav : subNav) {
if(nav.equals(name))
return nav;
}
return null;
}
/**
* Will create a new subnav if it does not already exist or return the existing one.
*/
public WANavigation createSubNav(String name) {
WANavigation nav = getSubNav(name);
if(nav != null)
return nav;
nav = new WANavigation(name);
nav.setParentNav(this);
subNav.add(nav);
return nav;
2015-04-22 15:33:08 +00:00
}
2015-06-03 15:08:41 +00:00
public String getName(){
return name;
}
2015-04-25 15:22:44 +00:00
public Object getResource(){
return resource;
}
public void setResource(Object obj){
resource = obj;
}
private void setParentNav(WANavigation nav){
this.parentNav = nav;
2015-04-25 15:22:44 +00:00
}
2015-04-22 15:33:08 +00:00
@Override
2015-04-22 15:33:08 +00:00
public boolean equals(Object o){
if(o instanceof String)
return this.name.equals(o);
return this == o ||
(o != null && this.name.equals(((WANavigation)o).name));
}
2015-04-09 21:22:47 +00:00
2015-04-25 15:22:44 +00:00
public static List<WANavigation> getRootNav(){
return rootNav.getSubNavs();
2015-04-25 15:22:44 +00:00
}
public static WANavigation createRootNav(String name){
return rootNav.createSubNav(name);
2015-06-03 15:08:41 +00:00
}
2015-04-25 15:22:44 +00:00
public static List<WANavigation> getNavBreadcrumb(Map<String, String> request) {
2015-04-25 15:22:44 +00:00
LinkedList list = new LinkedList();
if(request.containsKey("i")){
WANavigation current = navMap.get(Integer.parseInt(request.get("i")));
while(current != null && current != rootNav){
2015-04-25 15:22:44 +00:00
list.addFirst(current);
current = current.parentNav;
2015-04-25 15:22:44 +00:00
}
}
return list;
2015-04-09 21:22:47 +00:00
}
}