Package org.apache.empire.struts2.jsp.tags

Source Code of org.apache.empire.struts2.jsp.tags.MenuItemTag

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.empire.struts2.jsp.tags;

import java.util.Stack;

import javax.servlet.jsp.JspException;

import org.apache.empire.struts2.html.HtmlTagDictionary;
import org.apache.empire.struts2.html.HtmlWriter;
import org.apache.empire.struts2.html.HtmlWriter.HtmlTag;


@SuppressWarnings("serial")
public class MenuItemTag extends LinkTag
{
    protected String menuId;
    protected Object expanded;

    @Override
    protected void resetParams()
    {
        menuId = null;
        expanded = null;
        // done
        super.resetParams();
    }

    @Override
    public int doStartTag() throws JspException
    {
        // check visibility
        if (getBoolean(visible, true)==false)
        {   // not visible
            return SKIP_BODY;
        }
        // MenuInfo
        MenuTag.MenuInfo mi = getMenuInfo();
        boolean current = isCurrent(mi);
        // HtmlWriter
        HtmlTagDictionary dic = HtmlTagDictionary.getInstance();
        HtmlWriter w = new HtmlWriter(pageContext.getOut());
        HtmlTag wrap = w.startTag("li");
        addStandardAttributes(wrap, null);
        this.cssClass = getCssClass(mi, current);
        this.cssStyle = null;
        wrap.beginBody();
        // The Anchors
        if (item== null && mi.actionItem!=null)
            item = mi.actionItem;
        // OnClick
        if (onclick== null)
            onclick = dic.MenuItemLinkDefaultOnClickScript();
        // Call base class
        int result = super.doStartTag();
        // Check expanded
        return (isExpanded(mi) ? result : SKIP_BODY)
    }
   
    @Override
    public int doEndTag() throws JspException
    {
        // Check visibility
        if (getBoolean(visible, true)==false)
        {   // Not visible
            if (autoResetParams)
                resetParams();
            return EVAL_PAGE;
        }   
        // Get body
        String body = getBody();
        setBodyContent(null);
        // End tag
        int result = super.doEndTag();
        // HtmlWriter
        HtmlWriter w = new HtmlWriter(pageContext.getOut());
        HtmlTag wrap = w.continueTag("li", true);
        wrap.endTag(body);
        // Done
        return result;
    }

    @SuppressWarnings("unchecked")
    private MenuTag.MenuInfo getMenuInfo()
    {
        Stack<MenuTag.MenuInfo> stack = (Stack<MenuTag.MenuInfo>)pageContext.getAttribute(MenuTag.MENU_STACK_ATTRIBUTE);
        return (stack!= null) ? stack.peek() : null;
    }
   
    private boolean isCurrent(MenuTag.MenuInfo mi)
    {
        if (mi==null || mi.currentId==null)
            return false;
        String thisMenu = (menuId!=null) ? menuId : id;
        return (thisMenu!=null) ? thisMenu.equals(mi.currentId) : false;
    }
   
    private boolean isExpanded(MenuTag.MenuInfo mi)
    {
        if (expanded==null)
            return true;
        // autoexpand if current
        if (expanded instanceof String && "auto".equalsIgnoreCase((String)expanded))
            return isCurrent(mi);
        // get boolean
        return getBoolean(expanded, true);
    }
   
    private String getCssClass(MenuTag.MenuInfo mi, boolean current)
    {
        if (mi==null)
            return null;
        // Check disabled
        if (getBoolean(disabled, false))
            return mi.disabledClass;
        // Check Current
        if (current)
            return mi.currentClass;
        // Check Expanded
        if (expanded!=null && isExpanded(mi))
            return mi.expandedClass;
        // Default: Enabled Class
        return mi.enabledClass;
    }
   
    // -------------------------------- Property accessors -----------------------------

    public void setMenuId(String menuId)
    {
        this.menuId = menuId;
    }

    public void setExpanded(Object expanded)
    {
        this.expanded = expanded;
    }
}
TOP

Related Classes of org.apache.empire.struts2.jsp.tags.MenuItemTag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.