Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Does this work with a nested parent_id in each object? #2

Closed
amhinson opened this issue Jan 12, 2017 · 1 comment
Closed

Does this work with a nested parent_id in each object? #2

amhinson opened this issue Jan 12, 2017 · 1 comment

Comments

@amhinson
Copy link

I've been trying to get this to work with a nested parent_id but I can't seem to find the solution.

Say I have:

[
    {
      "id": "1",
      "attributes": {
        "name": "Parent",
        "parent_id": null,
      }
    },
    {
      "id": "2",
      "attributes": {
        "name": "Child One",
        "parent_id": 1,
      }
    },
    {
      "id": "3",
      "attributes": {
        "name": "Child Two",
        "parent_id": 1,
      }
    },
]

Will arrayToTree() work in this situation?

@alferov
Copy link
Owner

alferov commented Jan 13, 2017

Yep, just implemented this.
I used your example as a test case:
https://github.com/alferov/array-to-tree/blob/master/test/test.js#L86

arrayToTree(yourData, {
  parentProperty: 'attributes.parent_id',
});

Please update the package to the latest version (2.2.0)!

@alferov alferov closed this as completed Jan 13, 2017
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants