All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.richfaces.fragment.tree.RichFacesTree Maven / Gradle / Ivy

There is a newer version: 5.0.0.Alpha3
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013, 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.fragment.tree;

import java.util.Collections;
import java.util.List;

import org.jboss.arquillian.graphene.findby.FindByJQuery;
import org.jboss.arquillian.graphene.fragment.Root;
import org.openqa.selenium.WebElement;
import org.richfaces.fragment.common.AdvancedVisibleComponentIteractions;
import org.richfaces.fragment.common.Event;
import org.richfaces.fragment.common.Utils;
import org.richfaces.fragment.common.VisibleComponentInteractions;
import org.richfaces.fragment.common.picker.ChoicePicker;
import org.richfaces.fragment.common.picker.ChoicePickerHelper;

import com.google.common.collect.Lists;

public class RichFacesTree implements Tree, AdvancedVisibleComponentIteractions {

    @Root
    private WebElement root;

    @FindByJQuery("> .rf-tr-nd")
    private List childNodes;
    @FindByJQuery("> .rf-tr-nd")
    private List childNodesElements;

    private final AdvancedTreeInteractionsImpl interactions = new AdvancedTreeInteractionsImpl();

    @Override
    public AdvancedTreeInteractionsImpl advanced() {
        return interactions;
    }

    @Override
    public TreeNode collapseNode(int index) {
        return collapseNode(ChoicePickerHelper.byIndex().index(index));
    }

    @Override
    public TreeNode collapseNode(ChoicePicker picker) {
        return advanced().getChildNodes().get(getIndexOfPickedElement(picker)).advanced().collapse();
    }

    @Override
    public TreeNode expandNode(int index) {
        return expandNode(ChoicePickerHelper.byIndex().index(index));
    }

    @Override
    public TreeNode expandNode(ChoicePicker picker) {
        return advanced().getChildNodes().get(getIndexOfPickedElement(picker)).advanced().expand();
    }

    protected int getIndexOfPickedElement(ChoicePicker picker) {
        if (advanced().getChildNodesElements().isEmpty()) {
            throw new RuntimeException("Cannot find child node, because there are no child nodes.");
        }
        return Utils.getIndexOfElement(picker.pick(advanced().getChildNodesElements()));
    }

    @Override
    public TreeNode selectNode(int index) {
        return selectNode(ChoicePickerHelper.byIndex().index(index));
    }

    @Override
    public TreeNode selectNode(ChoicePicker picker) {
        return advanced().getChildNodes().get(getIndexOfPickedElement(picker)).advanced().select();
    }

    public class AdvancedTreeInteractionsImpl implements Tree.AdvancedTreeInteractions, VisibleComponentInteractions {

        private final Event DEFAULT_TOGGLE_NODE_EVENT = Event.CLICK;
        private final boolean DEFAULT_TOGGLE_BY_HANDLE = Boolean.TRUE;
        private boolean toggleByHandle = DEFAULT_TOGGLE_BY_HANDLE;
        private Event toggleNodeEvent = DEFAULT_TOGGLE_NODE_EVENT;

        @Override
        public TreeNode getFirstNode() {
            return getNodes().get(0);
        }

        protected List getChildNodes() {
            return Collections.unmodifiableList(childNodes);
        }

        protected List getChildNodesElements() {
            return Collections.unmodifiableList(childNodesElements);
        }

        @Override
        public List getLeafNodes() {
            List result = Lists.newArrayList();
            for (TreeNode treeNode : getChildNodes()) {
                if (treeNode.advanced().isLeaf()) {
                    result.add(treeNode);
                }
            }
            return Collections.unmodifiableList(result);
        }

        @Override
        public List getNodes() {
            return getChildNodes();
        }

        @Override
        public List getNodesCollapsed() {
            List result = Lists.newArrayList();
            for (TreeNode treeNode : getChildNodes()) {
                if (treeNode.advanced().isCollapsed()) {
                    result.add(treeNode);
                }
            }
            return Collections.unmodifiableList(result);
        }

        @Override
        public List getNodesElements() {
            return getChildNodesElements();
        }

        @Override
        public List getNodesExpanded() {
            List result = Lists.newArrayList();
            for (TreeNode treeNode : getChildNodes()) {
                if (treeNode.advanced().isExpanded()) {
                    result.add(treeNode);
                }
            }
            return Collections.unmodifiableList(result);
        }

        @Override
        public WebElement getRootElement() {
            return root;
        }

        @Override
        public List getSelectedNodes() {
            List result = Lists.newArrayList();
            for (TreeNode treeNode : getChildNodes()) {
                if (treeNode.advanced().isSelected()) {
                    result.add(treeNode);
                }
            }
            return Collections.unmodifiableList(result);
        }

        protected Event getToggleNodeEvent() {
            return toggleNodeEvent;
        }

        protected boolean isToggleByHandle() {
            return toggleByHandle;
        }

        @Override
        public boolean isVisible() {
            return Utils.isVisible(getRootElement());
        }

        @Override
        public void setToggleByHandle() {
            this.toggleByHandle = DEFAULT_TOGGLE_BY_HANDLE;
        }

        @Override
        public void setToggleByHandle(boolean toggleByHandle) {
            this.toggleByHandle = toggleByHandle;
        }

        @Override
        public void setToggleNodeEvent() {
            this.toggleNodeEvent = DEFAULT_TOGGLE_NODE_EVENT;
        }

        @Override
        public void setToggleNodeEvent(Event toggleNodeEvent) {
            this.toggleNodeEvent = toggleNodeEvent;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy