/* * JBoss, Home of Professional Open Source * Copyright , Red Hat, Inc. and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.richfaces.renderkit.html; import java.io.IOException; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Map; import javax.faces.application.ResourceDependencies; import javax.faces.application.ResourceDependency; import javax.faces.component.UIComponent; import javax.faces.context.FacesContext; import javax.faces.context.ResponseWriter; import org.richfaces.cdk.annotations.JsfRenderer; import org.richfaces.component.AbstractColorPicker; import org.richfaces.javascript.JSObject; import org.richfaces.renderkit.RenderKitUtils; import org.richfaces.ui.common.HtmlConstants; import org.richfaces.ui.input.InputRendererBase; @JsfRenderer(family = AbstractColorPicker.COMPONENT_FAMILY, type = ColorPickerRenderer.RENDERER_TYPE) @ResourceDependencies({@ResourceDependency(library = "javax.faces", name = "jsf.js"), @ResourceDependency(name = "jquery.js", target = "head"), @ResourceDependency(name = "richfaces.js", target = "head"), @ResourceDependency(name = "richfaces-base-component.js", target = "head"), @ResourceDependency(name = "farbtastic.js", target = "head"), @ResourceDependency(name = "richfaces.colorpicker.js", target = "head"), @ResourceDependency(name = "richfaces.colorpicker.css", target = "head"), @ResourceDependency(name = "farbtastic.css", target = "head")}) public class ColorPickerRenderer extends InputRendererBase { // ------------------------------ FIELDS ------------------------------ public static final String RENDERER_TYPE = "org.richfaces.ColorPickerRenderer"; private static final Map<String, Object> DEFAULTS; // -------------------------- STATIC METHODS -------------------------- static { Map<String, Object> defaults = new HashMap<String, Object>(); defaults.put("popup", true); defaults.put("okLabel", "OK"); defaults.put("cancelLabel", "Cancel"); DEFAULTS = Collections.unmodifiableMap(defaults); } // -------------------------- OTHER METHODS -------------------------- @Override public void doEncodeEnd(ResponseWriter writer, FacesContext context, UIComponent component) throws IOException { if (!(component instanceof AbstractColorPicker)) { return; } boolean popup = ((AbstractColorPicker) component).isPopup(); writer.startElement(HtmlConstants.DIV_ELEM, null); String clientId = component.getClientId(context); writer.writeAttribute(HtmlConstants.ID_ATTRIBUTE, clientId, HtmlConstants.ID_ATTRIBUTE); String styleClass = "rf-cpi"; Object customStyleClass = component.getAttributes().get(HtmlConstants.STYLE_CLASS_ATTR); if(popup) { styleClass += " rf-cpi-pop"; } if (customStyleClass != null) { styleClass += " " + customStyleClass; } writer.writeAttribute(HtmlConstants.CLASS_ATTRIBUTE, styleClass, HtmlConstants.STYLE_CLASS_ATTR); getUtils().encodePassThru(context, component, null); getUtils().encodeAttributesFromArray(context, component, HtmlConstants.PASS_THRU_STYLES); writer.startElement(HtmlConstants.DIV_ELEM, null); writer.writeAttribute(HtmlConstants.CLASS_ATTRIBUTE, "rf-cpi-h", HtmlConstants.STYLE_CLASS_ATTR); if (popup) { writer.writeAttribute(HtmlConstants.STYLE_ATTRIBUTE, "display:none", HtmlConstants.STYLE_ATTRIBUTE); } writer.endElement(HtmlConstants.DIV_ELEM); writer.startElement(HtmlConstants.INPUT_ELEM, null); writer.writeAttribute(HtmlConstants.ID_ATTRIBUTE, clientId, HtmlConstants.ID_ATTRIBUTE); writer.writeAttribute(HtmlConstants.NAME_ATTRIBUTE, clientId, HtmlConstants.NAME_ATTRIBUTE); writer.writeAttribute(HtmlConstants.VALUE_ATTRIBUTE, getInputValue(context, component), HtmlConstants.VALUE_ATTRIBUTE); writer.writeAttribute(HtmlConstants.TYPE_ATTR, "hidden", HtmlConstants.TYPE_ATTR); writer.writeAttribute(HtmlConstants.CLASS_ATTRIBUTE, "rf-cpi-i", HtmlConstants.STYLE_CLASS_ATTR); writer.writeAttribute(HtmlConstants.ID_ATTRIBUTE, clientId, "type"); writer.startElement(HtmlConstants.SCRIPT_ELEM, null); writer.writeAttribute(HtmlConstants.TYPE_ATTR, "text/javascript", "type"); final Map<String, Object> options = getOptions(context, (AbstractColorPicker) component); writer.writeText(new JSObject("RichFaces.ui.ColorPicker", clientId, options), null); writer.writeText(";", null); writer.endElement(HtmlConstants.SCRIPT_ELEM); writer.endElement(HtmlConstants.DIV_ELEM); } protected void addOptionIfSetAndNotDefault(String optionName, Object value, Map<String, Object> options) { if (value != null && !"".equals(value) && !value.equals(DEFAULTS.get( optionName)) && !(value instanceof Collection && ((Collection) value).size() == 0) && !(value instanceof Map && ((Map) value).size() == 0)) { options.put(optionName, value); } } protected Map<String, Object> getOptions(FacesContext context, AbstractColorPicker colorpicker) throws IOException { /** * Include only attributes that are actually set. */ Map<String, Object> options = new HashMap<String, Object>(); addOptionIfSetAndNotDefault("popup", colorpicker.isPopup(), options); addOptionIfSetAndNotDefault("okLabel", colorpicker.getOkLabel(), options); addOptionIfSetAndNotDefault("cancelLabel", colorpicker.getCancelLabel(), options); RenderKitUtils.addToScriptHash(options, "onchange", RenderKitUtils.getAttributeAndBehaviorsValue(context, colorpicker, RenderKitUtils.attributes().generic("onchange", "onchange", "change", "valueChange").first()), null, RenderKitUtils.ScriptHashVariableWrapper.eventHandler); RenderKitUtils.addToScriptHash(options, "onhide", RenderKitUtils.getAttributeAndBehaviorsValue(context, colorpicker, RenderKitUtils.attributes().generic("onhide", "onhide", "hide", "hide").first()), null, RenderKitUtils.ScriptHashVariableWrapper.eventHandler); RenderKitUtils.addToScriptHash(options, "onshow", RenderKitUtils.getAttributeAndBehaviorsValue(context, colorpicker, RenderKitUtils.attributes().generic("onshow", "onshow", "show", "show").first()), null, RenderKitUtils.ScriptHashVariableWrapper.eventHandler); return options; } }