Packages > @fluidframework/tree > TreeApi

TreeApi Interface

Provides various functions for interacting with TreeNode s.

Signature

export interface TreeApi extends TreeNodeApi

Extends: TreeNodeApi

Properties

Property Modifiers Type Description
runTransaction readonly RunTransaction Run a transaction.

Methods

Method Return Type Description
contains(node, other) boolean Check if the subtree defined by node contains other.

Property Details

runTransaction

Run a transaction .

Signature

readonly runTransaction: RunTransaction;

Type: RunTransaction

Method Details

contains

Check if the subtree defined by node contains other.

Signature

contains(node: TreeNode, other: TreeNode): boolean;

Remarks

This includes direct and indirect children: as long as node is an ancestor of other (occurs in its parentage chain), this returns true, regardless of the number of levels of the tree between.

node is considered to contain itself, so the case where node === other returns true.

This is handy when checking if moving node into other would create a cycle and thus is invalid.

This check walks the parents of other looking for node, and thus runs in time proportional to the depth of child in the tree.

Parameters

Parameter Type Description
node TreeNode
other TreeNode

Returns

true if other is an inclusive descendant of node, and false otherwise.

Return type: boolean