All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.icesoft.faces.component.panelstack.PanelStackRenderer Maven / Gradle / Ivy

/*
 * Copyright 2004-2013 ICEsoft Technologies Canada Corp.
 *
 * Licensed 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 com.icesoft.faces.component.panelstack;

import com.icesoft.faces.component.util.CustomComponentUtils;
import com.icesoft.faces.component.ExtendedAttributeConstants;
import com.icesoft.faces.context.DOMContext;
import com.icesoft.faces.renderkit.dom_html_basic.DomBasicRenderer;
import com.icesoft.faces.renderkit.dom_html_basic.HTML;
import com.icesoft.faces.renderkit.dom_html_basic.PassThruAttributeRenderer;
import com.icesoft.util.CoreComponentUtils;
import org.w3c.dom.Element;

import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import java.io.IOException;

public class PanelStackRenderer extends DomBasicRenderer {
    // Basically, everything is excluded
    private static final String[] PASSTHRU_EXCLUDE =
        new String[] { HTML.STYLE_ATTR };
    private static final String[] PASSTHRU =
        ExtendedAttributeConstants.getAttributes(
            ExtendedAttributeConstants.ICE_PANELSTACK,
            PASSTHRU_EXCLUDE);
    
    public boolean getRendersChildren() {
        return true;
    }

    public void encodeChildren(FacesContext facesContext,
                               UIComponent uiComponent) throws IOException {
        validateParameters(facesContext, uiComponent, PanelStack.class);
        DOMContext domContext =
                DOMContext.attachDOMContext(facesContext, uiComponent);

        if (!domContext.isInitialized()) {
            Element panelStackTable =
                    domContext.createRootElement(HTML.TABLE_ELEM);
            setRootElementId(facesContext, panelStackTable, uiComponent);
            PassThruAttributeRenderer.renderHtmlAttributes(
                facesContext, uiComponent, PASSTHRU);
        }
        Element panelStackTable = (Element) domContext.getRootNode();
        DOMContext.removeChildren(panelStackTable);
        panelStackTable.setAttribute(HTML.CLASS_ATTR,
                                     ((PanelStack) uiComponent).getStyleClass());
        String style = ((PanelStack) uiComponent).getStyle();
        if(style != null && style.length() > 0)
            panelStackTable.setAttribute(HTML.STYLE_ATTR, style);
        else
            panelStackTable.removeAttribute(HTML.STYLE_ATTR);
        Element tr = domContext.createElement(HTML.TR_ELEM);
        panelStackTable.appendChild(tr);
        tr.setAttribute(HTML.CLASS_ATTR,
                        ((PanelStack) uiComponent).getRowClass());
        Element td = domContext.createElement(HTML.TD_ELEM);
        tr.appendChild(td);
        td.setAttribute(HTML.CLASS_ATTR,
                        ((PanelStack) uiComponent).getColumnClass());
        domContext.setCursorParent(td);
        PanelStack panelStack = (PanelStack) uiComponent;
        String selectedPanel = panelStack.getSelectedPanel();
        UIComponent childToRender = null;

        if (selectedPanel == null) {
            // render the first child
            if (panelStack.getChildCount() > 0) {
                childToRender = (UIComponent) panelStack.getChildren().get(0);
            }
        } else {
            // render the selected child
            childToRender =  CoreComponentUtils.findComponent(selectedPanel, panelStack);
            if (childToRender == null) {
                // if not found, render the first child
                if (panelStack.getChildCount() > 0) {
                    childToRender =
                            (UIComponent) panelStack.getChildren().get(0);
                }
            }
        }

        if (childToRender != null) {
            CustomComponentUtils.renderChild(facesContext, childToRender);
        }

        domContext.stepOver();
        facesContext.getExternalContext().getRequestMap().put(PanelStack.LAST_SELECTED_PANEL + uiComponent.getClientId(facesContext), selectedPanel);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy