001/*
002 * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Anahide Tchertchian
018 */
019package org.nuxeo.ecm.platform.contentview.jsf.facelets.plugins;
020
021import java.io.Serializable;
022import java.util.List;
023import java.util.Map;
024
025import javax.faces.view.facelets.FaceletContext;
026import javax.faces.view.facelets.TagConfig;
027
028import org.nuxeo.ecm.platform.contentview.jsf.facelets.plugins.SelectAggregateWidgetTypeHandler.AggregatePropertyMappings;
029import org.nuxeo.ecm.platform.forms.layout.api.Widget;
030import org.nuxeo.ecm.platform.forms.layout.api.WidgetSelectOption;
031import org.nuxeo.ecm.platform.forms.layout.facelets.plugins.AbstractDirectorySelectWidgetTypeHandler;
032
033/**
034 * @since 6.0
035 */
036public abstract class SelectDirectoryAggregateWidgetTypeHandler extends AbstractDirectorySelectWidgetTypeHandler {
037
038    public SelectDirectoryAggregateWidgetTypeHandler(TagConfig config) {
039        super(config);
040    }
041
042    @Override
043    protected List<String> getExcludedProperties() {
044        List<String> res = super.getExcludedProperties();
045        for (AggregatePropertyMappings mapping : AggregatePropertyMappings.values()) {
046            res.add(mapping.name());
047        }
048        return res;
049    }
050
051    @Override
052    protected Map<String, Serializable> getOptionProperties(FaceletContext ctx, Widget widget,
053            WidgetSelectOption selectOption) {
054        Map<String, Serializable> props = super.getOptionProperties(ctx, widget, selectOption);
055        props.put(SelectPropertyMappings.itemLabelSuffix.name(),
056                widget.getProperty(AggregatePropertyMappings.itemCount.name()));
057        return props;
058    }
059
060}