Search in sources :

Example 1 with Icon

use of com.liferay.faces.alloy.component.icon.Icon in project liferay-faces-alloy by liferay.

the class IconRenderer method encodeBegin.

@Override
public void encodeBegin(FacesContext facesContext, UIComponent uiComponent) throws IOException {
    ResponseWriter responseWriter = facesContext.getResponseWriter();
    responseWriter.startElement("span", uiComponent);
    String clientId = uiComponent.getClientId(facesContext);
    responseWriter.writeAttribute("id", clientId, "id");
    Icon icon = (Icon) uiComponent;
    String name = icon.getName();
    if (name != null) {
        name = ICON_CLASS_PREFIX + name;
    }
    String color = icon.getColor();
    if (color != null) {
        color = ICON_CLASS_PREFIX + color;
    }
    RendererUtil.encodeStyleable(responseWriter, icon, name, color);
}
Also used : ResponseWriter(javax.faces.context.ResponseWriter) Icon(com.liferay.faces.alloy.component.icon.Icon)

Example 2 with Icon

use of com.liferay.faces.alloy.component.icon.Icon in project liferay-faces-alloy by liferay.

the class InputDateTimeRenderer method encodeMarkupEnd.

@Override
public void encodeMarkupEnd(FacesContext facesContext, UIComponent uiComponent) throws IOException {
    ResponseWriter responseWriter = facesContext.getResponseWriter();
    String clientId = uiComponent.getClientId(facesContext);
    String inputClientId = clientId.concat(INPUT_SUFFIX);
    BrowserSniffer browserSniffer = BrowserSnifferFactory.getBrowserSnifferInstance(facesContext.getExternalContext());
    InputDateTime inputDateTime = (InputDateTime) uiComponent;
    InputDateTimeResponseWriter inputDateTimeResponseWriter = getInputDateTimeResponseWriter(responseWriter, inputClientId, isNative(browserSniffer, inputDateTime));
    super.encodeMarkupEnd(facesContext, uiComponent, inputDateTimeResponseWriter);
    // Determine whether or not the text input is enabled.
    boolean disabled = inputDateTime.isDisabled();
    // If the "showOn" attribute indicates that a button is to be rendered and the component is not being rendered
    // for a mobile browser, then render the button.
    String showOn = inputDateTime.getShowOn();
    if (("both".equals(showOn) || "button".equals(showOn)) && !isNative(browserSniffer, inputDateTime)) {
        ApplicationFactory applicationFactory = (ApplicationFactory) FactoryFinder.getFactory(FactoryFinder.APPLICATION_FACTORY);
        Application application = applicationFactory.getApplication();
        // Create an icon component that is to remain detached from the component tree.
        Icon icon = (Icon) application.createComponent(Icon.COMPONENT_TYPE);
        String buttonIconName = getButtonIconName();
        icon.setName(buttonIconName);
        // Create a button component that that is also to remain detached from the component tree.
        Button button = (Button) application.createComponent(Button.COMPONENT_TYPE);
        List<UIComponent> buttonChildren = button.getChildren();
        buttonChildren.add(icon);
        button.setDisabled(disabled);
        // If the component is enabled, then
        if (!disabled) {
            if ("button".equals(showOn)) {
                String buttonClientId = getButtonClientId(facesContext, inputDateTime);
                button.setId(buttonClientId);
            } else {
                // If the both the button and the input are supposed to trigger the datePicker, set the button's
                // onclick to focus and click the input.
                String onClick = BUTTON_ON_CLICK_EVENT.replace("{0}", inputClientId);
                button.setOnclick(onClick);
            }
        }
        // Invoke the button's renderer so that it renders itself and its child icon.
        button.encodeAll(facesContext);
    }
    // If the component is enabled, then create the boundingBox and contentBox of the picker.
    if (!disabled) {
        responseWriter.startElement("div", uiComponent);
        String boundingBoxClientId = clientId.concat(BOUNDING_BOX_SUFFIX);
        responseWriter.writeAttribute("id", boundingBoxClientId, null);
        responseWriter.startElement("div", uiComponent);
        String contentBoxClientId = clientId.concat(CONTENT_BOX_SUFFIX);
        responseWriter.writeAttribute("id", contentBoxClientId, null);
        responseWriter.endElement("div");
        responseWriter.endElement("div");
    }
    // Finish the encoding of the outermost </div> element.
    responseWriter.endElement("div");
}
Also used : BrowserSniffer(com.liferay.faces.util.client.BrowserSniffer) ResponseWriter(javax.faces.context.ResponseWriter) Button(com.liferay.faces.alloy.component.button.Button) UIComponent(javax.faces.component.UIComponent) ApplicationFactory(javax.faces.application.ApplicationFactory) Icon(com.liferay.faces.alloy.component.icon.Icon) InputDateTime(com.liferay.faces.alloy.component.inputdatetime.InputDateTime) Application(javax.faces.application.Application)

Aggregations

Icon (com.liferay.faces.alloy.component.icon.Icon)2 ResponseWriter (javax.faces.context.ResponseWriter)2 Button (com.liferay.faces.alloy.component.button.Button)1 InputDateTime (com.liferay.faces.alloy.component.inputdatetime.InputDateTime)1 BrowserSniffer (com.liferay.faces.util.client.BrowserSniffer)1 Application (javax.faces.application.Application)1 ApplicationFactory (javax.faces.application.ApplicationFactory)1 UIComponent (javax.faces.component.UIComponent)1