/* * JBoss, Home of Professional Open Source * Copyright 2010-2016, 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.tests.metamer.bean.rich; import java.io.Serializable; import java.util.ArrayList; import java.util.Collection; import java.util.Date; import java.util.HashMap; import java.util.Map; import javax.annotation.PostConstruct; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import org.ajax4jsf.model.DataComponentState; import org.richfaces.component.UIDataTable; import org.richfaces.model.Filter; import org.richfaces.model.SortMode; import org.richfaces.tests.metamer.Attributes; import org.richfaces.tests.metamer.ColumnSortingMap; import org.richfaces.tests.metamer.model.Employee; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Managed bean for rich:dataTable. * * @author <a href="mailto:ppitonak@redhat.com">Pavol Pitonak</a> * @version $Revision: 22460 $ */ @ManagedBean(name = "richDataTableBean") @SessionScoped public class RichDataTableBean implements Serializable { private static final long serialVersionUID = -1L; private static Logger logger; private Attributes attributes; private DataComponentState dataTableState; private Map<Object, Integer> stateMap = new HashMap<Object, Integer>(); private int page = 1; // true = model, false = empty table private boolean state = true; private boolean emptyModelCalled; // sorting private ColumnSortingMap sorting = new CustomColumnSortingMap(); // filtering private Map<String, Object> filtering = new HashMap<String, Object>(); // facets private Map<String, String> facets = new HashMap<String, String>(); /** * Initializes the managed bean. */ @PostConstruct public void init() { logger = LoggerFactory.getLogger(getClass()); logger.debug("initializing bean " + getClass().getName()); attributes = Attributes.getComponentAttributesFromFacesConfig(UIDataTable.class, getClass()); attributes.setAttribute("rendered", true); attributes.setAttribute("rows", 10); attributes.setAttribute("sortMode", SortMode.single); // facets initial values facets.put("noData", "There is no data."); facets.put("caption", "Caption"); facets.put("header", "Header"); facets.put("footer", "Footer"); facets.put("columnStateHeader", "State Header"); facets.put("columnStateFooter", "State Footer"); facets.put("columnCapitalHeader", "Capital Header"); facets.put("columnCapitalFooter", "Capital Footer"); // attributes already in page attributes.remove("value"); attributes.remove("var"); // TODO needs to be tested another way attributes.remove("filterVar"); attributes.remove("iterationStatusVar"); attributes.remove("rowKeyVar"); attributes.remove("stateVar"); filtering.put("numberOfKids2", 6); } public Attributes getAttributes() { return attributes; } public void setAttributes(Attributes attributes) { this.attributes = attributes; } public int getPage() { return page; } public void setPage(int page) { this.page = page; } public Map<Object, Integer> getStateMap() { return stateMap; } public void setStateMap(Map<Object, Integer> stateMap) { this.stateMap = stateMap; } public DataComponentState getDataTableState() { return dataTableState; } public void setDataTableState(DataComponentState dataTableState) { this.dataTableState = dataTableState; } public boolean isState() { return state; } public void setState(boolean state) { this.state = state; } public Date getDate() { return new Date(); } public void setEmptyModelCalled(boolean isCalled) { emptyModelCalled = isCalled; } public boolean getEmptyModelCalled() { return emptyModelCalled; } public Map<String, String> getFacets() { return facets; } public ColumnSortingMap getSorting() { return sorting; } public Map<String, Object> getFiltering() { return filtering; } public Filter<?> getFilterSexImpl() { return new Filter<Employee>() { public boolean accept(Employee e) { String sex = (String) getFiltering().get("sex"); return sex == null || sex.length() == 0 || sex.equalsIgnoreCase("all") || sex.equalsIgnoreCase(e.getSex().toString()); } }; } public Collection<Object> getEmptyModel() { setEmptyModelCalled(true); logger.info("empty model called"); return new ArrayList<Object>(); } private class CustomColumnSortingMap extends ColumnSortingMap { private static final long serialVersionUID = 1L; @Override protected Attributes getAttributes() { return attributes; } } }