-
I'm a little confused trying to synchronize an uncontrolled tree with React state, using a Custom Data Provider. The docs don't really give advice on this aspect, just setting a data property on the DataProvider isn't quite a solution. If my requirements are that:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In regards to the viewstate, you can provide the initial viewstate as prop to define what is focused, selected and expanded during the initial render. Changes to the viewstate you can get in the uncontrolled environment through the individual change handlers, like onExpandItem, onCollapseItem, onSelectItem, onFocusItem. Synchronizing the data itself (which items are being renamed to what, which items are being dragged where) can be done with the data provider, either implementing the TreeDataProvider interface yourself or using the static tree data provider with the If you want even more control over all tree data and manage the live properties for the viewstate yourself, you can use the Controlled Tree environment , there you can control everything yourself, but also need to implement the view state handling and drop logic yourself. |
Beta Was this translation helpful? Give feedback.
Ideally, the data provider is a stable reference that does not change on rerenders. Changes from outside would then be propagated to the dataprovider through the change listeners registered in the data provider.
You probably would want to encapsulate the
treeChangeListeners.forEach
part inside of your data provider implementation.The st…