The tree is a component for representing information in a hierarchical way.It allows navigating between the different nodes and visualizing the parent-child relationships between nodes.Up to 5 depth levels can be displayed at a time. To avoid a horizontal scroll,from the 5th level will be collapsing previous levels, starting with the first parent.
| Property | Type | Req | Description | Default |
|---|---|---|---|---|
| qaTag | String | False | Id value for qa test | '' |
| tree | StNodeTree | True | Tree root node | |
| maxLevel | Number | False | Max level to show. From this level the tree does not expand more | |
| isRoot | Boolean | False | TRUE: the first node is root and not show dots, FALSE: the first node is not root andwe put three dots to indicate that are more levels upper | true |
| expandFatherBranch | Boolean | False | TRUE: Expand the path from the root to the expanded node if any node is not expanded.FALSE: Only expand the selected node | true |
| collapseChildsBranch | Boolean | False | TRUE: Collapse all child nodes. FALSE: Only collapse the selected node | true |
| changeStreamNotification | Observable<StNodeTreeChange> | False | Stream for notificating changes in some node and not change all tree |
| Property | Type | Description |
|---|---|---|
| toogleNode | StNodeTreeChange | Notify any node expansion or collapsed |
| selectNode | StNodeTreeChange | Notify any node selection |
| navigatePrevious | Event | Notify click over three dots to indicate that user wants to go up in tree structrure |
<st-tree [tree]="treeA"
[maxLevel]="treeModel.max"
[isRoot]="true"
(toogleNode)="onToogleNode($event, treeA)"
(selectNode)="onSelectNode($event, treeA)"
(navigatePrevious)="onNavigatePrevious($event)"
[changeStreamNotification]="notificationChangeStream">
</st-tree>
Node of tree (StNodeTree)
export class StNodeTree {
name: string;
icon: string;
children ? : StNodeTree[];
expanded ? : boolean;
selected ? : boolean;
}
Object emited on changes (StNodeTreeChange)
export class StNodeTreeChange {
node: StNodeTree;
path: string;
}