Giter Site home page Giter Site logo

treeify-paths's Introduction

hey

treeify-paths's People

Contributors

khtdr avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

springyboy

treeify-paths's Issues

Context of parent gets overwritten

Input

const tree = treeifyPaths([
  ['parent', {name: 'a'}],
  ['parent/child1/1', {name: 'b'}],
  ['parent/child2', {name: 'c'}],
  ['parent/child2/1', {name: 'd'}],
  ['parent/child3', {name: 'e'}],
  ['parent/child4', {name: 'f'}],
  ['another', {name: 'g'}],
  ['another/child1/A/B', {name: 'h'}],
  ['another/child2/A/B', {name: 'i'}],
]);

console.log(JSON.stringify(tree, null, 3));

Output

{
   "path": "",
   "name": "",
   "children": [
      {
         "path": "another",
         "name": "another",
         "children": [
            {
               "path": "another/child1",
               "name": "",
               "children": [
                  {
                     "path": "another/child1/A",
                     "name": "",
                     "children": [
                        {
                           "path": "another/child1/A/B",
                           "name": "B",
                           "children": [],
                           "ctx": {
                              "name": "h"
                           }
                        }
                     ],
                     "ctx": {
                        "name": "h"
                     }
                  }
               ],
               "ctx": {
                  "name": "h"
               }
            },
            {
               "path": "another/child2",
               "name": "",
               "children": [
                  {
                     "path": "another/child2/A",
                     "name": "",
                     "children": [
                        {
                           "path": "another/child2/A/B",
                           "name": "B",
                           "children": [],
                           "ctx": {
                              "name": "i"
                           }
                        }
                     ],
                     "ctx": {
                        "name": "i"
                     }
                  }
               ],
               "ctx": {
                  "name": "i"
               }
            }
         ],
         "ctx": {
            "name": "i"
         }
      },
      {
         "path": "parent",
         "name": "parent",
         "children": [
            {
               "path": "parent/child1",
               "name": "",
               "children": [
                  {
                     "path": "parent/child1/1",
                     "name": "1",
                     "children": [],
                     "ctx": {
                        "name": "b"
                     }
                  }
               ],
               "ctx": {
                  "name": "b"
               }
            },
            {
               "path": "parent/child2",
               "name": "child2",
               "children": [
                  {
                     "path": "parent/child2/1",
                     "name": "1",
                     "children": [],
                     "ctx": {
                        "name": "d"
                     }
                  }
               ],
               "ctx": {
                  "name": "d"
               }
            },
            {
               "path": "parent/child3",
               "name": "child3",
               "children": [],
               "ctx": {
                  "name": "e"
               }
            },
            {
               "path": "parent/child4",
               "name": "child4",
               "children": [],
               "ctx": {
                  "name": "f"
               }
            }
         ],
         "ctx": {
            "name": "f"
         }
      }
   ]
}

Expected

  • ctx with path = another and name = another should be g but not i.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.