/*
* (C) Copyright 2006-2007 Nuxeo SA (http://nuxeo.com/) and others.
*
* 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.
*
* Contributors:
* btatar
* Anahide Tchertchian
*
* $Id$
*/
package org.nuxeo.ecm.platform.forms.layout.facelets.plugins;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.faces.component.UIComponent;
import javax.faces.component.html.HtmlOutputText;
import javax.faces.component.html.HtmlSelectBooleanCheckbox;
import javax.faces.view.facelets.ComponentHandler;
import javax.faces.view.facelets.CompositeFaceletHandler;
import javax.faces.view.facelets.FaceletContext;
import javax.faces.view.facelets.FaceletHandler;
import javax.faces.view.facelets.TagAttribute;
import javax.faces.view.facelets.TagAttributes;
import javax.faces.view.facelets.TagConfig;
import org.nuxeo.ecm.platform.forms.layout.api.BuiltinWidgetModes;
import org.nuxeo.ecm.platform.forms.layout.api.FieldDefinition;
import org.nuxeo.ecm.platform.forms.layout.api.Widget;
import org.nuxeo.ecm.platform.forms.layout.api.exceptions.WidgetException;
import org.nuxeo.ecm.platform.forms.layout.facelets.FaceletHandlerHelper;
import org.nuxeo.ecm.platform.forms.layout.facelets.ValueExpressionHelper;
import org.nuxeo.ecm.platform.ui.web.component.seam.UIHtmlText;
import org.nuxeo.ecm.platform.ui.web.renderer.NXCheckboxRenderer;
import com.sun.faces.facelets.tag.TagAttributesImpl;
/**
* Checkbox widget that generates a checkbox for a boolean value in edit mode, and displays the boolean value in view
* mode.
* <p>
* In view mode, it expects the messages 'label.yes' and 'label.no' to be present in a bundle called 'messages' for
* internationalization, when the bound value is computed from field definitions.
*/
public class CheckboxWidgetTypeHandler extends AbstractWidgetTypeHandler {
public CheckboxWidgetTypeHandler(TagConfig config) {
super(config);
}
@Override
public void apply(FaceletContext ctx, UIComponent parent, Widget widget) throws WidgetException, IOException {
FaceletHandlerHelper helper = new FaceletHandlerHelper(tagConfig);
String mode = widget.getMode();
String widgetId = widget.getId();
String widgetName = widget.getName();
String widgetTagConfigId = widget.getTagConfigId();
FaceletHandler leaf = getNextHandler(ctx, tagConfig, widget, null, helper);
if (BuiltinWidgetModes.EDIT.equals(mode)) {
TagAttributes attributes = helper.getTagAttributes(widgetId, widget);
ComponentHandler input = helper.getHtmlComponentHandler(widgetTagConfigId, attributes, leaf,
HtmlSelectBooleanCheckbox.COMPONENT_TYPE, NXCheckboxRenderer.RENDERER_TYPE);
String msgId = FaceletHandlerHelper.generateMessageId(ctx, widgetName);
ComponentHandler message = helper.getMessageComponentHandler(widgetTagConfigId, msgId, widgetId, null);
FaceletHandler[] handlers = { input, message };
FaceletHandler h = new CompositeFaceletHandler(handlers);
h.apply(ctx, parent);
} else {
TagAttributes attributes = getViewTagAttributes(ctx, helper, widgetId, widget,
!BuiltinWidgetModes.isLikePlainMode(mode));
// default on text for other modes
ComponentHandler output = helper.getHtmlComponentHandler(widgetTagConfigId, attributes, leaf,
HtmlOutputText.COMPONENT_TYPE, null);
if (BuiltinWidgetModes.PDF.equals(mode)) {
// add a surrounding p:html tag handler
FaceletHandler h = helper.getHtmlComponentHandler(widgetTagConfigId, new TagAttributesImpl(
new TagAttribute[0]), output, UIHtmlText.class.getName(), null);
h.apply(ctx, parent);
} else {
output.apply(ctx, parent);
}
}
}
/**
* Return tag attributes after having replaced the usual value expression for the 'value' field by a specific
* expression to display the boolean value as an internationalized label.
*/
protected TagAttributes getViewTagAttributes(FaceletContext ctx, FaceletHandlerHelper helper, String id,
Widget widget, boolean addId) {
List<TagAttribute> attrs = new ArrayList<TagAttribute>();
FieldDefinition[] fields = widget.getFieldDefinitions();
if (fields != null && fields.length > 0) {
FieldDefinition field = fields[0];
String bareExpression = ValueExpressionHelper.createBareExpressionString(widget.getValueName(), field);
String bundleName = ctx.getFacesContext().getApplication().getMessageBundle();
String messageYes = bundleName + "['label.yes']";
String messageNo = bundleName + "['label.no']";
String expression = "#{" + bareExpression + " ? " + messageYes + " : " + messageNo + "}";
TagAttribute valueAttr = helper.createAttribute("value", expression);
attrs.add(valueAttr);
}
// fill with widget properties
List<TagAttribute> propertyAttrs = helper.getTagAttributes(widget.getProperties(), null, true,
widget.getType(), widget.getTypeCategory(), widget.getMode());
if (propertyAttrs != null) {
attrs.addAll(propertyAttrs);
}
TagAttributes widgetAttrs = FaceletHandlerHelper.getTagAttributes(attrs);
// handle id
if (!addId) {
return widgetAttrs;
} else {
return FaceletHandlerHelper.addTagAttribute(widgetAttrs, helper.createAttribute("id", id));
}
}
}