1.4.4 • Published 5 years ago

tree-tools v1.4.4

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Tree-Tools

Tools to manage deeply nested collection tree structures.

See the API reference for a full list of functionality.

Goals:

  • Provide a simple API to manipulate and operate on tree structures
  • Closely mirror Lodash's API wherever possible to minimize confusion
  • No dependencies (except Lodash)

Install (NodeJS)

Install via

npm install tree-tools

Then just use as

var treeTools = require('tree-tools');

treeTools.flatten(treeTools.find(tree, {path: '/bar/baz'}));

Install (AngularJS)

  1. Include dist/ngTreeTools.js somewhere in your build chain
  2. Add ngTreeTools as a module in your main angular.module('app', [modules]) list
  3. Require the module as TreeTools in your controller e.g. app.controller('myController', function($scope, TreeTools) { // Controller // })

API

In all the examples below the example tree structure is similar to the main test case.

treeTools.find(tree, query, options)

Find a single node deeply within a tree structure. Query can be any valid Lodash matching object or a function.

treeTools.find(tree, {path: '/bar/baz'});

Since this function is really just a convenience wrapper around parents() see that function definition for available options.

treeTools.filter(tree, query, options)

Return a copy of a tree while filtering nodes. Query can be any valid Lodash matching object or a function.

treeTools.find(tree, (node, index) => matchingExpression);

Options are:

OptionTypeDefaultDescription
childNodeString or Array"children"How to discover child nodes, can be a single key or an array of keys to check

treeTools.flatten(tree)

Return all branches of a tree as a flat array. The array is returned as a shallow copy, allowing mutation via forEach or map iterators.

treeTools.flatten(treeTools.find(tree, {path: '/bar/baz'}));

Options are:

OptionTypeDefaultDescription
childNodeString or Array"children"How to discover child nodes, can be a single key or an array of keys to check

treeTools.parents(tree, query, options)

Utility function to deep search a tree structure for a matching query and find parents up to the given query. If found this function will return an array of all generations with the found branch as the last element of the array.

treeTools.parents(tree, {path: '/bar/baz'})

Options are:

OptionTypeDefaultDescription
childNodeString or Array"children"How to discover child nodes, can be a single key or an array of keys to check

treeTools.children(tree, query, options)

Utility function to deep search a tree structure for a matching query and find all children after the given query. If found this function will return an array of all child elements NOT including the query element.

treeTools.children(tree, {path: '/foo'});

Options are:

OptionTypeDefaultDescription
childNodeString or Array"children"How to discover child nodes, can be a single key or an array of keys to check

treeTools.hasChildren(branch, options)

Utility function to determines whether a given node has children.

treeTools.hasChildren(someBranch); // Returns a boolean

Options are:

OptionTypeDefaultDescription
childNodeString or Array"children"How to discover child nodes, can be a single key or an array of keys to check

treeTools.hasSome(tree, query)

Utility function to determine if an item matching query exists deep within a given tree.

treeTools.hasSome(tree, {someKey: someValue});
treeTools.hasSome(tree, (v, k) => { ... });

treeTools.resolve(tree, options)

Recursively walk a tree evaluating all functions (promise compatible) and inserting their values. Should a node return a promise it will be waited on before evaluating it along with its children, recursively.

treeTools.resolve(complexTreeWithPromises)
	.then(tree => {...})

Options are:

OptionTypeDefaultDescription
childNodeString or Array"children"How to discover child nodes, can be a single key or an array of keys to check
cloneBooleanfalseClone the tree before resolving it, this keeps the original intact but costs some time while cloning, without this the input will be mutated
attemptsNumber5How many times to recurse when resolving promises-within-promises
isPromiseFunction_.isFunctionFunction used to recognise a promise-like return when recursing into promises
isSpliceFunctionSee codeSupport splicing arrays (arrays are collapsed into their parents rather than returned as is)
wrapperFunctionPromise.resolveWrap the promise in this function before resolving. Called as (nodeFunction, path, tree)

treeTools.sortBy(tree, propertyName)

Utility function to sort tree by specific property or an array of properties. propertyName can be a string or an array of strings.

// Sort an outer array of families with all children in `name` order
treeTools.sortBy(families, 'name');
1.4.4

5 years ago

1.4.3

5 years ago

1.4.2

5 years ago

1.4.1

5 years ago

1.4.0

6 years ago

1.3.3

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.9

6 years ago

1.2.8

6 years ago

1.2.7

6 years ago

1.2.6

6 years ago

1.2.5

6 years ago

1.2.4

7 years ago

1.2.3

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago