Search in sources :

Example 1 with WCardManager

use of com.github.bordertech.wcomponents.WCardManager in project wcomponents by BorderTech.

the class TreeUtil_Test method initTree.

@Before
public void initTree() {
    root = new WApplication();
    containerChild = new WContainer();
    simpleChild = new WTextField();
    repeatedComponent = new WText();
    repeaterChild = new WRepeater(repeatedComponent);
    grandChild = new WTextArea();
    cardManager = new WCardManager();
    card1 = new WText();
    card2 = new WText();
    root.add(containerChild);
    root.add(simpleChild);
    root.add(repeaterChild);
    root.add(cardManager);
    containerChild.add(grandChild);
    cardManager.add(card1);
    cardManager.add(card2);
    root.setLocked(true);
    setActiveContext(new UIContextImpl());
    repeaterChild.setData(Arrays.asList(new String[] { "1", "2", "3" }));
}
Also used : WTextArea(com.github.bordertech.wcomponents.WTextArea) WContainer(com.github.bordertech.wcomponents.WContainer) WApplication(com.github.bordertech.wcomponents.WApplication) WText(com.github.bordertech.wcomponents.WText) UIContextImpl(com.github.bordertech.wcomponents.UIContextImpl) WCardManager(com.github.bordertech.wcomponents.WCardManager) WTextField(com.github.bordertech.wcomponents.WTextField) WRepeater(com.github.bordertech.wcomponents.WRepeater) Before(org.junit.Before)

Example 2 with WCardManager

use of com.github.bordertech.wcomponents.WCardManager in project wcomponents by BorderTech.

the class DebugStructureInterceptor method writeDebugInfo.

/**
 * Writes debugging information for the given component.
 *
 * @param component the component to write debugging information for.
 * @param xml the writer to send the debug output to.
 */
protected void writeDebugInfo(final WComponent component, final XmlStringBuilder xml) {
    if (component != null && (component.isVisible() || component instanceof WInvisibleContainer)) {
        xml.appendTagOpen("ui:debugInfo");
        xml.appendAttribute("for", component.getId());
        xml.appendAttribute("class", component.getClass().getName());
        xml.appendOptionalAttribute("type", getType(component));
        xml.appendClose();
        xml.appendTagOpen("ui:debugDetail");
        xml.appendAttribute("key", "defaultState");
        xml.appendAttribute("value", component.isDefaultState());
        xml.appendEnd();
        xml.appendEndTag("ui:debugInfo");
        if (component instanceof WRepeater) {
            // special case for WRepeaters - we must paint the info for each row.
            WRepeater repeater = (WRepeater) component;
            List<UIContext> contexts = repeater.getRowContexts();
            for (int i = 0; i < contexts.size(); i++) {
                UIContextHolder.pushContext(contexts.get(i));
                try {
                    writeDebugInfo(repeater.getRepeatedComponent(i), xml);
                } finally {
                    UIContextHolder.popContext();
                }
            }
        } else if (component instanceof WCardManager) {
            writeDebugInfo(((WCardManager) component).getVisible(), xml);
        } else if (component instanceof Container) {
            final int size = ((Container) component).getChildCount();
            for (int i = 0; i < size; i++) {
                writeDebugInfo(((Container) component).getChildAt(i), xml);
            }
        }
    }
}
Also used : Container(com.github.bordertech.wcomponents.Container) WInvisibleContainer(com.github.bordertech.wcomponents.WInvisibleContainer) UIContext(com.github.bordertech.wcomponents.UIContext) WCardManager(com.github.bordertech.wcomponents.WCardManager) WInvisibleContainer(com.github.bordertech.wcomponents.WInvisibleContainer) WRepeater(com.github.bordertech.wcomponents.WRepeater)

Example 3 with WCardManager

use of com.github.bordertech.wcomponents.WCardManager in project wcomponents by BorderTech.

the class TreeUtil method doTraverse.

/**
 * Internal implementation of tree traversal method.
 *
 * @param node the node to traverse.
 * @param visibleOnly if true, only visit visible components.
 * @param visitor the visitor to notify as the tree is traversed.
 * @return how the traversal should continue.
 */
private static VisitorResult doTraverse(final WComponent node, final boolean visibleOnly, final WComponentTreeVisitor visitor) {
    if (visibleOnly) {
        // Certain components have their visibility altered to implement custom processing.
        if (node instanceof WInvisibleContainer) {
            WComponent parent = node.getParent();
            // If inside a CardManager, skip the InvisibleContainer and process the visible card.
            if (parent instanceof WCardManager) {
                WComponent visible = ((WCardManager) node.getParent()).getVisible();
                if (visible == null) {
                    return VisitorResult.ABORT_BRANCH;
                }
                return doTraverse(visible, visibleOnly, visitor);
            } else if (parent instanceof WWindow) {
                // Abort branch if WWindow is not in ACTIVE state
                if (((WWindow) parent).getState() != WWindow.ACTIVE_STATE) {
                    return VisitorResult.ABORT_BRANCH;
                }
            }
        } else if (node instanceof WRepeatRoot) {
        // Let be processed.
        } else if (!node.isVisible()) {
            // For most components, we just need to see if they're marked as visible
            return VisitorResult.ABORT_BRANCH;
        }
    }
    VisitorResult result = visitor.visit(node);
    switch(result) {
        case ABORT_BRANCH:
            // Continue processing, but not down this branch
            return VisitorResult.CONTINUE;
        case CONTINUE:
            // Process repeater rows
            if (node instanceof WRepeater) {
                // Get parent repeater
                WRepeater repeater = (WRepeater) node;
                // Get row contexts
                List<UIContext> rowContextList = repeater.getRowContexts();
                WRepeatRoot repeatRoot = (WRepeatRoot) repeater.getRepeatedComponent().getParent();
                for (UIContext rowContext : rowContextList) {
                    UIContextHolder.pushContext(rowContext);
                    try {
                        result = doTraverse(repeatRoot, visibleOnly, visitor);
                    } finally {
                        UIContextHolder.popContext();
                    }
                    if (VisitorResult.ABORT.equals(result)) {
                        return VisitorResult.ABORT;
                    }
                }
            } else if (node instanceof Container) {
                Container container = (Container) node;
                for (int i = 0; i < container.getChildCount(); i++) {
                    result = doTraverse(container.getChildAt(i), visibleOnly, visitor);
                    if (VisitorResult.ABORT.equals(result)) {
                        return VisitorResult.ABORT;
                    }
                }
            }
            return VisitorResult.CONTINUE;
        default:
            // Abort entire traversal
            return VisitorResult.ABORT;
    }
}
Also used : WComponent(com.github.bordertech.wcomponents.WComponent) VisitorResult(com.github.bordertech.wcomponents.util.WComponentTreeVisitor.VisitorResult) Container(com.github.bordertech.wcomponents.Container) WInvisibleContainer(com.github.bordertech.wcomponents.WInvisibleContainer) WRepeatRoot(com.github.bordertech.wcomponents.WRepeater.WRepeatRoot) UIContext(com.github.bordertech.wcomponents.UIContext) WCardManager(com.github.bordertech.wcomponents.WCardManager) WWindow(com.github.bordertech.wcomponents.WWindow) WInvisibleContainer(com.github.bordertech.wcomponents.WInvisibleContainer) WRepeater(com.github.bordertech.wcomponents.WRepeater)

Aggregations

WCardManager (com.github.bordertech.wcomponents.WCardManager)3 WRepeater (com.github.bordertech.wcomponents.WRepeater)3 Container (com.github.bordertech.wcomponents.Container)2 UIContext (com.github.bordertech.wcomponents.UIContext)2 WInvisibleContainer (com.github.bordertech.wcomponents.WInvisibleContainer)2 UIContextImpl (com.github.bordertech.wcomponents.UIContextImpl)1 WApplication (com.github.bordertech.wcomponents.WApplication)1 WComponent (com.github.bordertech.wcomponents.WComponent)1 WContainer (com.github.bordertech.wcomponents.WContainer)1 WRepeatRoot (com.github.bordertech.wcomponents.WRepeater.WRepeatRoot)1 WText (com.github.bordertech.wcomponents.WText)1 WTextArea (com.github.bordertech.wcomponents.WTextArea)1 WTextField (com.github.bordertech.wcomponents.WTextField)1 WWindow (com.github.bordertech.wcomponents.WWindow)1 VisitorResult (com.github.bordertech.wcomponents.util.WComponentTreeVisitor.VisitorResult)1 Before (org.junit.Before)1