3.2.4 • Published 5 years ago

symbol-tree v3.2.4

Weekly downloads
11,029,297
License
MIT
Repository
github
Last release
5 years ago

symbol-tree

Travis CI Build Status Coverage Status

Turn any collection of objects into its own efficient tree or linked list using Symbol.

This library has been designed to provide an efficient backing data structure for DOM trees. You can also use this library as an efficient linked list. Any meta data is stored on your objects directly, which ensures any kind of insertion or deletion is performed in constant time. Because an ES6 Symbol is used, the meta data does not interfere with your object in any way.

Node.js 4+, io.js and modern browsers are supported.

Example

A linked list:

const SymbolTree = require('symbol-tree');
const tree = new SymbolTree();

let a = {foo: 'bar'}; // or `new Whatever()`
let b = {foo: 'baz'};
let c = {foo: 'qux'};

tree.insertBefore(b, a); // insert a before b
tree.insertAfter(b, c); // insert c after b

console.log(tree.nextSibling(a) === b);
console.log(tree.nextSibling(b) === c);
console.log(tree.previousSibling(c) === b);

tree.remove(b);
console.log(tree.nextSibling(a) === c);

A tree:

const SymbolTree = require('symbol-tree');
const tree = new SymbolTree();

let parent = {};
let a = {};
let b = {};
let c = {};

tree.prependChild(parent, a); // insert a as the first child
tree.appendChild(parent,c ); // insert c as the last child
tree.insertAfter(a, b); // insert b after a, it now has the same parent as a

console.log(tree.firstChild(parent) === a);
console.log(tree.nextSibling(tree.firstChild(parent)) === b);
console.log(tree.lastChild(parent) === c);

let grandparent = {};
tree.prependChild(grandparent, parent);
console.log(tree.firstChild(tree.firstChild(grandparent)) === a);

See api.md for more documentation.

Testing

Make sure you install the dependencies first:

npm install

You can now run the unit tests by executing:

npm test

The line and branch coverage should be 100%.

API Documentation

symbol-tree

Author: Joris van der Wel joris@jorisvanderwel.com

SymbolTree ⏏

Kind: Exported class

new SymbolTree(description)

ParamTypeDefaultDescription
descriptionstring"'SymbolTree data'"Description used for the Symbol

symbolTree.initialize(object) ⇒ Object

You can use this function to (optionally) initialize an object right after its creation, to take advantage of V8's fast properties. Also useful if you would like to freeze your object.

O(1)

Kind: instance method of SymbolTree
Returns: Object - object

ParamType
objectObject

symbolTree.hasChildren(object) ⇒ Boolean

Returns true if the object has any children. Otherwise it returns false.

  • O(1)

Kind: instance method of SymbolTree

ParamType
objectObject

symbolTree.firstChild(object) ⇒ Object

Returns the first child of the given object.

  • O(1)

Kind: instance method of SymbolTree

ParamType
objectObject

symbolTree.lastChild(object) ⇒ Object

Returns the last child of the given object.

  • O(1)

Kind: instance method of SymbolTree

ParamType
objectObject

symbolTree.previousSibling(object) ⇒ Object

Returns the previous sibling of the given object.

  • O(1)

Kind: instance method of SymbolTree

ParamType
objectObject

symbolTree.nextSibling(object) ⇒ Object

Returns the next sibling of the given object.

  • O(1)

Kind: instance method of SymbolTree

ParamType
objectObject

symbolTree.parent(object) ⇒ Object

Return the parent of the given object.

  • O(1)

Kind: instance method of SymbolTree

ParamType
objectObject

symbolTree.lastInclusiveDescendant(object) ⇒ Object

Find the inclusive descendant that is last in tree order of the given object.

  • O(n) (worst case) where n is the depth of the subtree of object

Kind: instance method of SymbolTree

ParamType
objectObject

symbolTree.preceding(object, options) ⇒ Object

Find the preceding object (A) of the given object (B). An object A is preceding an object B if A and B are in the same tree and A comes before B in tree order.

  • O(n) (worst case)
  • O(1) (amortized when walking the entire tree)

Kind: instance method of SymbolTree

ParamTypeDescription
objectObject
optionsObject
options.rootObjectIf set, root must be an inclusive ancestor of the return value (or else null is returned). This check assumes that root is also an inclusive ancestor of the given object

symbolTree.following(object, options) ⇒ Object

Find the following object (A) of the given object (B). An object A is following an object B if A and B are in the same tree and A comes after B in tree order.

  • O(n) (worst case) where n is the amount of objects in the entire tree
  • O(1) (amortized when walking the entire tree)

Kind: instance method of SymbolTree

ParamTypeDefaultDescription
objectObject
optionsObject
options.rootObjectIf set, root must be an inclusive ancestor of the return value (or else null is returned). This check assumes that root is also an inclusive ancestor of the given object
options.skipChildrenBooleanfalseIf set, ignore the children of object

symbolTree.childrenToArray(parent, options) ⇒ Array.<Object>

Append all children of the given object to an array.

  • O(n) where n is the amount of children of the given parent

Kind: instance method of SymbolTree

ParamTypeDefaultDescription
parentObject
optionsObject
options.arrayArray.<Object>[]
options.filterfunctionFunction to test each object before it is added to the array. Invoked with arguments (object). Should return true if an object is to be included.
options.thisArg*Value to use as this when executing filter.

symbolTree.ancestorsToArray(object, options) ⇒ Array.<Object>

Append all inclusive ancestors of the given object to an array.

  • O(n) where n is the amount of ancestors of the given object

Kind: instance method of SymbolTree

ParamTypeDefaultDescription
objectObject
optionsObject
options.arrayArray.<Object>[]
options.filterfunctionFunction to test each object before it is added to the array. Invoked with arguments (object). Should return true if an object is to be included.
options.thisArg*Value to use as this when executing filter.

symbolTree.treeToArray(root, options) ⇒ Array.<Object>

Append all descendants of the given object to an array (in tree order).

  • O(n) where n is the amount of objects in the sub-tree of the given object

Kind: instance method of SymbolTree

ParamTypeDefaultDescription
rootObject
optionsObject
options.arrayArray.<Object>[]
options.filterfunctionFunction to test each object before it is added to the array. Invoked with arguments (object). Should return true if an object is to be included.
options.thisArg*Value to use as this when executing filter.

symbolTree.childrenIterator(parent, options) ⇒ Object

Iterate over all children of the given object

  • O(1) for a single iteration

Kind: instance method of SymbolTree
Returns: Object - An iterable iterator (ES6)

ParamTypeDefault
parentObject
optionsObject
options.reverseBooleanfalse

symbolTree.previousSiblingsIterator(object) ⇒ Object

Iterate over all the previous siblings of the given object. (in reverse tree order)

  • O(1) for a single iteration

Kind: instance method of SymbolTree
Returns: Object - An iterable iterator (ES6)

ParamType
objectObject

symbolTree.nextSiblingsIterator(object) ⇒ Object

Iterate over all the next siblings of the given object. (in tree order)

  • O(1) for a single iteration

Kind: instance method of SymbolTree
Returns: Object - An iterable iterator (ES6)

ParamType
objectObject

symbolTree.ancestorsIterator(object) ⇒ Object

Iterate over all inclusive ancestors of the given object

  • O(1) for a single iteration

Kind: instance method of SymbolTree
Returns: Object - An iterable iterator (ES6)

ParamType
objectObject

symbolTree.treeIterator(root, options) ⇒ Object

Iterate over all descendants of the given object (in tree order).

Where n is the amount of objects in the sub-tree of the given root:

  • O(n) (worst case for a single iteration)
  • O(n) (amortized, when completing the iterator)

Kind: instance method of SymbolTree
Returns: Object - An iterable iterator (ES6)

ParamTypeDefault
rootObject
optionsObject
options.reverseBooleanfalse

symbolTree.index(child) ⇒ Number

Find the index of the given object (the number of preceding siblings).

  • O(n) where n is the amount of preceding siblings
  • O(1) (amortized, if the tree is not modified)

Kind: instance method of SymbolTree
Returns: Number - The number of preceding siblings, or -1 if the object has no parent

ParamType
childObject

symbolTree.childrenCount(parent) ⇒ Number

Calculate the number of children.

  • O(n) where n is the amount of children
  • O(1) (amortized, if the tree is not modified)

Kind: instance method of SymbolTree

ParamType
parentObject

symbolTree.compareTreePosition(left, right) ⇒ Number

Compare the position of an object relative to another object. A bit set is returned:

The semantics are the same as compareDocumentPosition in DOM, with the exception that DISCONNECTED never occurs with any other bit.

where n and m are the amount of ancestors of left and right; where o is the amount of children of the lowest common ancestor of left and right:

  • O(n + m + o) (worst case)
  • O(n + m) (amortized, if the tree is not modified)

Kind: instance method of SymbolTree

ParamType
leftObject
rightObject

symbolTree.remove(removeObject) ⇒ Object

Remove the object from this tree. Has no effect if already removed.

  • O(1)

Kind: instance method of SymbolTree
Returns: Object - removeObject

ParamType
removeObjectObject

symbolTree.insertBefore(referenceObject, newObject) ⇒ Object

Insert the given object before the reference object. newObject is now the previous sibling of referenceObject.

  • O(1)

Kind: instance method of SymbolTree
Returns: Object - newObject
Throws:

  • Error If the newObject is already present in this SymbolTree
ParamType
referenceObjectObject
newObjectObject

symbolTree.insertAfter(referenceObject, newObject) ⇒ Object

Insert the given object after the reference object. newObject is now the next sibling of referenceObject.

  • O(1)

Kind: instance method of SymbolTree
Returns: Object - newObject
Throws:

  • Error If the newObject is already present in this SymbolTree
ParamType
referenceObjectObject
newObjectObject

symbolTree.prependChild(referenceObject, newObject) ⇒ Object

Insert the given object as the first child of the given reference object. newObject is now the first child of referenceObject.

  • O(1)

Kind: instance method of SymbolTree
Returns: Object - newObject
Throws:

  • Error If the newObject is already present in this SymbolTree
ParamType
referenceObjectObject
newObjectObject

symbolTree.appendChild(referenceObject, newObject) ⇒ Object

Insert the given object as the last child of the given reference object. newObject is now the last child of referenceObject.

  • O(1)

Kind: instance method of SymbolTree
Returns: Object - newObject
Throws:

  • Error If the newObject is already present in this SymbolTree
ParamType
referenceObjectObject
newObjectObject
jsdomarchetype-libraryreact-native-bluetooth2killi8n-react-native-fast-imageticket-jsdomspecify-importsbabel-specify-imports@icanpm/api-masterjsdom-exreact-native-template-rfbaseairscanairscan-examplereact-native-esc-pos-sahaab@borisovart/atol-kkt-moduledeneme323112@ntt_app/react-native-custom-notificationreact-native-covid-sdkgql_din_modbitgetjsdom-fork@olivervorasai/sliderreact-native-printer-brotherswilscannerjsdom__no_corsstretch-rollup@mink-opn/build-tokensreact-native-slider-kfsvelte-slime@infinitebrahmanuniverse/nolb-symplginexpand-react-bridgesklif-ui-kitsklif-api@everything-registry/sub-chunk-2865p149-table@pmadhur/jsdomsklif-uidiscordjs-con-selfdiscord.js-bycon@simstudio/htmldiffzzzxxxyyy321123@batbayar/superset-plugin-chart-hello-world@hemith/react-native-tnk@hproinformatica/functions@humanity.cash/types@garonx/oracle-zkappregevbr-jsdom@gaofq/utils@gebruederheitz/debuggablern-adyen-dropinrn-session-multiplier-demorfp-librn-use-modal-hook@gzup/react-image-file-resizer@gzzhanghao/jsdomreact-native-payu-payment-testingreact-native-plugpag-wrapperreact-native-responsive-sizers-jsdomepm-npm-tsces-react-bridge@hawkingnetwork/react-native-tab-viewrn-tm-notify@hazyflame/vue-jitsi-meet@hbglobal/react-native-actions-shortcutsevanutilssdenv-jsdomex-ikon-components-library@inikulin/jsdom-only-external-scripts@inti-ar/evm-chains@innodata/vue-v3-ya-metrika@eliteswap/token-listsdskcorenew@forbeslindesay/jsdom@eki-group/svelvetreact-solid-gradient-pickerreactofy-css-library@flk/parserdrift-npm@geeky-apo/react-native-advanced-clipboard@gaearon/jsdomrefinejs-reporesponsive-react-app@furgot100/dates-lib@furgot100/string-libregression-external-dtoreikamoon-string-library-aaresponsis-gantt-task-reactreact-native-pulsator-nativereact-native-sayhello-modulereact-native-remote-cloverreact-native-template-vifereact-native-test-module-hhhreact-native-video-typoreact-native-ytximkitreact-native-transtracker-libraryreact-native-template-nascam-templatereact-native-version-manager@envoy1084/zktalents@epigraph/epigraph-analytics
3.2.4

5 years ago

3.2.3

5 years ago

3.2.2

7 years ago

3.2.1

7 years ago

3.2.0

7 years ago

3.1.4

8 years ago

3.1.3

9 years ago

3.1.2

9 years ago

3.1.1

9 years ago

3.1.0

9 years ago

3.0.0

9 years ago

2.0.0

9 years ago

1.5.1

9 years ago

1.5.0

9 years ago

1.4.0

9 years ago

1.3.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago