JairajJangle / react-native-tree-multi-select

Super-fast tree view with multi-selection capabilities, using checkboxes and search filtering.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[FEAT-REQ] key

ansarikhurshid786 opened this issue · comments

It is really useful and most update.

I have very small enhancement request. If you accept name and children from props. It could be easy for us to pass any kind of data in our own structure.

it will reduce conversion to name and children.

Hey there! 👋

Thank you for your kind words! 😊

I appreciate your enhancement request. However, I'm not entirely sure I understand the specific changes you're suggesting. Could you please provide an example of what you mean by accepting name and children from props and how it would help with passing any kind of data in your own structure? Additionally, an example of the data structure you are requesting would be very helpful.

The current structure of the tree data:

export interface TreeNode {
    id: string;
    name: string;
    children?: TreeNode[];
    [key: string]: any;
}

is already designed to accurately represent the Tree View structure, so understanding your perspective would be very helpful.

Thanks again for your feedback and looking forward to your example! 🙏