Skip to content

Does anyone have a simple example of syncronizing an UncontrolledTreeEnvironment with React state? #414

Answered by lukasbach
doulighan asked this question in Q&A
Discussion options

You must be logged in to vote

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.

function MyApp({ initialItems }) {
  const [items, setItems] useState(initialItems)

  const dataProvider = useRef(CustomDataProvider(items, setItems));

  const updateItem = (itemId: string) => {
    // do something with the item and update via setItem()
    dataProvider.treeChangeListeners.forEach(listener => listener([itemId]));
  }

  // render tree
}

You probably would want to encapsulate the treeChangeListeners.forEach part inside of your data provider implementation.

The st…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@doulighan
Comment options

@lukasbach
Comment options

Answer selected by doulighan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants