react-sortable-tree icon indicating copy to clipboard operation
react-sortable-tree copied to clipboard

Insert node at specific index under parent node.Iindex

Open amitmankotia opened this issue 3 years ago • 1 comments

I am using react-sortable-tree in my application to create a funnel. I have a use case where I have a two buttons on child node to create another node under and above it. I need a method where I can pass parentKey and index so that new node is create under parent at specific index.

image

I did not find any function like addNodeUnderParentAtIndex which can do so.

Any help on how this can be done is appreciated!

amitmankotia avatar Jul 03 '22 13:07 amitmankotia

You will need to create a clone the parent and place the new node the cloned parent node children. Then update the tree with this new parent node.

ths-somebody avatar Jul 12 '22 13:07 ths-somebody