2.1.0 • Published 3 years ago

@hampusn/traversal-builder v2.1.0

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

Traversal Builder

Builder for creating a traversal which can traverse node trees in SiteVision.

Methods

ReturnMethodDescription
TraversalBuildersetRecurseTypes (Array types)Set which primary node types to recurse/traverse on. See NodeTypeUtil for examples.
TraversalBuildersetAcceptTypes (Array types)Set which primary node types to execute callback on. See NodeTypeUtil for examples.
TraversalBuildersetRecurseCallback (Function callback)Set the callback which will be used to determine if the current node should be traversed or not. This callback will be used instead of the default check of node types.
TraversalBuildersetAcceptCallback (Function callback)Set the callback which will be used to determine if a node is accepted for executing the main callback. This callback will be used instead of the default check of node types.
TraversalBuildersetCallback (Function callback)Set the callback which will be executed on all traversed nodes matching the accept types.
TraversalBuildersetDenyCallback (Function denyCallback)Set the callback which will be executed on all traversed nodes matching the accept types.
TraversalBuildersetMaxDepth (int maxDepth)Set the max depth to traverse. This is the max amount of times Node.getNodes() will be called recursivly.
TraversalBuildersetMaxNodes (int maxNodes)Set the max number of nodes to execute the callback on.
Traversalbuild ()Build a traversal object.

Traversal

Traversal is the object which is built by the TraversalBuilder.

Methods

The built Traversal instance has the following methods.

ReturnMethodDescription
Voidtraverse (Node node, Object context)Main traversal function. Traverses node structures either through JCR structure or through the Rest API.
Voidbreak ()Indicates that the traversal should break and halt further traversing and execution. The break will happen at the beginning of the next iteration. So the current iteration (callback on node) will still finish.

Example

Simple example

const { TraversalBuilder } = require('@hampusn/traversal-builder');
const traversalBuilder = TraversalBuilder.getInstance();

traversalBuilder
  .setCallback(function (node) {
    out.println(node.toString());
  });

const traversal = traversalBuilder.build();

if (scriptVariables.startNode) {
  traversal.traverse(scriptVariables.startNode);
}

Chunk the iteration by setting and checking a metadata

const nodeTypeUtil = require('NodeTypeUtil');
const propertyUtil = require('PropertyUtil');
const metadataUtil = require('MetadataUtil');
const metadataName = 'has-been-processed';

traversalBuilder
  .setAcceptCallback(function (node) {
    const isAcceptedType   = nodeTypeUtil.isTypeOf(node, [nodeTypeUtil.ARTICLE_TYPE, nodeTypeUtil.PAGE_TYPE]);
    const hasBeenProcessed = propertyUtil.getString(node, metadataName, '').equals('Yes');

    return isAcceptedType && hasBeenProcessed == false;
  })
  .setCallback(function (node) {
    out.println(node.toString());

    metadataUtil.setMetadataPropertyValue(node, metadataName, 'Yes');
  })
  .setMaxNodes(50);

const traversal = traversalBuilder.build();

if (scriptVariables.startNode) {
  traversal.traverse(scriptVariables.startNode);
}
2.1.0

3 years ago

1.1.0

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.0

5 years ago