React Tree Overview

    Ignite UI for React Tree, also known as TreeView component, is a high-performance control that visualizes expandable data structures within a tree-like UI, enabling you to apply load on demand for child items. The Ignite UI for React Tree also provides features like expanding and collapsing nodes, nested app navigation, Ignite UI for React Tree nodes either can be generated manually or from a bound data source.

    For end-users this means they can easily navigate across different app pages, use selection, checkboxes, add texts, icons, images and more.

    The Ignite UI for React Tree component allows users to represent hierarchical data in a tree-view structure, maintaining parent-child relationships, as well as to define static tree-view structure without a corresponding data model. Its primary purpose is to allow end-users to visualize and navigate within hierarchical data structures. The IgrTree component also provides load on demand capabilities, item activation, multiple and cascade selection of items through built-in checkboxes, built-in keyboard navigation and more.

    React Tree Example

    In this basic Ignite UI for React Tree example, you can see how to define a tree and its items by specifying the item hierarchy.

    How to Use Ignite UI for React Tree With Ignite UI

    First, you need to the install the corresponding Ignite UI for React npm package by running the following command:

    npm install igniteui-react
    

    You will then need to import the IgrTree, its necessary CSS, and register its module, like so:

    import { IgrTreeModule, IgrTree, IgrTreeItem } from 'igniteui-react';
    import 'igniteui-webcomponents/themes/light/bootstrap.css';
    IgrTreeModule.register();
    

    The simplest way to start using the IgrTree is as follows:

    Declaring a tree

    IgrTreeItem is the representation of every item that belongs to the IgrTree. Items provide disabled, active, selected and expanded properties, which give you opportunity to configure the states of the item as per your requirement. The value property can be used to add a reference to the data entry the item represents.

    Items can be bound to a data model so that their expanded and selected states are reflected in the underlying data as well.

    • Declaring a tree by creating static unbound items

    In order to render a tree you do not necessarily need a data set - individual items can be created without an underlying data model using the exposed label property or provide a custom slot content for the IgrTreeItem label.

    <IgrTree>
        <IgrTreeItem label='North America'>
            <IgrTreeItem label='United States' />
            <IgrTreeItem label='Canada' />
            <IgrTreeItem label='Mexico' />
        </IgrTreeItem>
        <IgrTreeItem label='South America'>
            <IgrTreeItem label='Brazil' />
            <IgrTreeItem label='Uruguay' />
        </IgrTreeItem>
        <IgrTreeItem label='Europe'>
            <IgrTreeItem label='United Kingdom' />
            <IgrTreeItem label='Germany' />
            <IgrTreeItem label='Bulgaria' />
        </IgrTreeItem>
    </IgrTree>
    

    [!Note] You can provide a custom slot content for each IgrTreeItem's indentation, expansion and label area respectively using the provided indentation, indicator and label slots.

    Item Interactions

    IgrTreeItem could be expanded or collapsed:

    • by clicking on the item expand indicator (default behavior).
    • by clicking on the item if the IgrTree toggleNodeOnClick property is set to true.

    By default, multiple items could be expanded at the same time. In order to change this behavior and allow expanding only single branch at a time, the singleBranchExpand property could be enabled. This way when an item is expanded, all of the others already expanded branches in the same level will be collapsed.

    React Tree Selection

    In order to setup item selection in the Ignite UI for React Tree component, you just need to set its selection property. This property accepts the following three modes: None, Multiple and Cascade. Below we will take a look at each of them in more detail.

    None

    In the IgrTree by default item selection is disabled. Users cannot select or deselect an item through UI interaction, but these actions can still be completed through the provided API method.

    Multiple

    To enable multiple item selection in the IgrTree just set the selection property to multiple. This will render a checkbox for every item. Each item has two states - selected or not. This mode supports multiple selection.

    <IgrTree selection="multiple" />
    

    Cascade

    To enable cascade item selection in the IgrTree, just set the selection property to cascade. This will render a checkbox for every item.

    <IgrTree selection="cascade" />
    

    In this mode a parent's selection state entirely depends on the selection state of its children. When a parent has some selected and some deselected children, its checkbox is in an indeterminate state.

    Keyboard Navigation

    Keyboard navigation in IgrTree provides a rich variety of keyboard interactions for the user. This functionality is enabled by default and allows users to navigate through the items.

    The IgrTree navigation is compliant with W3C accessibility standards and convenient to use.

    Key Combinations

    • - navigates to the next visible item. Marks the item as active. Does nothing if on the LAST item.
    • Ctrl + - navigates to the next visible item. Does nothing if on the LAST item.
    • - navigates to the previous visible item. Marks the item as active. Does nothing if on the FIRST item.
    • Ctrl + - navigates to the previous visible item. Does nothing if on the FIRST item.
    • - on an expanded parent item, collapses it. If the item is collapsed or does not have children, moves to its parent item. Does nothing if there is no parent item.
    • - on an expanded parent item, navigates to the first child of the item. If on a collapsed parent item, expands it. Does nothing if the item does not have children.
    • Home - navigates to the FIRST item.
    • End - navigates to the LAST visible item.
    • Tab - navigates to the next focusable element on the page, outside of the tree.
    • Shift + Tab - navigates to the previous focusable element on the page, outside of the tree.
    • Space - toggles selection of the current item. Marks the node as active.
    • Shift + Space - toggles selection of all items between the active one and the one pressed Space while holding Shift if selection is enabled.
    • Enter - activates the focused item. If the item has link in it, opens the link.
    • * - expands the item and all sibling items on the same level.

    When selection is enabled, end-user selection of items is only allowed through the rendered checkbox. Since both selection types allow multiple selection, the following mouse and keyboard interactions are available:

    • Click - when performed on the item checkbox, toggles selection of the item if selection is enabled. Otherwise, focuses the item
    • Shift + Click - when performed on the item checkbox, toggles selection of all items between the active one and the one clicked while holding Shift if selection is enabled

    Styling

    You can change the appearance of the IgrTreeItems, by using some of the exposed CSS parts listed below:

    Part name Description
    wrapper The wrapper for the tree item.
    selected Indicates selected state. Applies to wrapper.
    focused Indicates focused state. Applies to wrapper.
    active Indicates an active state. Applies to wrapper.
    indicator The expand indicator of the tree item.
    label The tree item content.
    text The tree item displayed text.
    select The checkbox of the tree item when selection is enabled.

    Using these CSS parts we can customize thе appearance of the IgrTree component like this:

    igc-tree-item::part(active) {
        background: #ecaa53;
    }
    
    igc-tree-item::part(selected) {
        background: #ffe6cc;
    }
    
    igc-tree-item::part(active selected) {
        background: #ff8c1a;
        color: white;
    }
    

    API References

    Additional Resources