Skip to content

Latest commit

 

History

History
191 lines (124 loc) · 5.03 KB

node.md

File metadata and controls

191 lines (124 loc) · 5.03 KB

Node

Node is not a publicly accessible module, but instead an interface that Document, Block and Inline all implement.

Properties

nodes

Immutable.List

A list of child nodes. Defaults to a list with a single text node child.

Computed Properties

kind

String

An immutable string value of 'block' for easily separating this node from Inline or Text nodes.

length

Number

The sum of the lengths of all of the descendant Text nodes of this node.

text

String

A concatenated string of all of the descendant Text nodes of this node.

Methods

filterDescendants

filterDescendants(iterator: Function) => List

Deeply filter the descendant nodes of a node by iterator.

findDescendant

findDescendant(iterator: Function) => Node || Void

Deeply find a descendant node by iterator.

getBlocksAtRange

getBlocksAtRange(range: Selection) => List

Get all of the bottom-most Block nodes in a range.

getBlocks

getBlocks() => List

Get all of the bottom-most Block node descendants.

getCharactersAtRange

getCharactersAtRange(range: Selection) => List

Get a list of all of the Charaters in a range.

getChild

getChild(key: String || Node) => Node || Void

Get a child by key.

getClosestBlock

getClosestBlock(key: String || Node) => Node || Void

Get the closest Block node to a descendant node by key.

getClosestInline

getClosestInline(key: String || Node) => Node || Void

Get the closest Inline node to a descendant node by key.

getClosest

getClosest(key: String || Node, match: Function) => Node || Void

Get the closest parent node of a descendant node by key that matches a match function.

getDepth

getDepth(key: String || Node) => Number

Get the depth of a descendant node by key.

getDescendant

getDescendant(key: String || Node) => Node || Void

Get a descendant node by key.

getFragmentAtRange

getFragmentAtRange(range: Selection) => Document

Get a document fragment of the nodes in a range.

getInlinesAtRange

getInlinesAtRange(range: Selection) => List

Get all of the top-most Inline nodes in a range.

getMarksAtRange

getMarksAtRange(range: Selection) => Set

Get a set of all of the marks in a range.

getNextBlock

getNextBlock(key: String || Node) => Node || Void

Get the next, bottom-most Block node after a descendant by key.

getNextSibling

getNextSibling(key: String || Node) => Node || Void

Get the next sibling of a descendant by key.

getNextText

getNextText(key: String || Node) => Node || Void

Get the next Text node after a descendant by key.

getParent

getParent(key: String || Node) => Node || Void

Get the parent node of a descendant by key.

getPreviousBlock

getPreviousBlock(key: String || Node) => Node || Void

Get the previous, bottom-most Block node before a descendant by key.

getPreviousSibling

getPreviousSibling(key: String || Node) => Node || Void

Get the previous sibling of a descendant by key.

getPreviousText

getPreviousText(key: String || Node) => Node || Void

Get the previous Text node before a descendant by key.

getTextAtOffset

getTextAtOffset(offset: Number) => Text || Void

Get the Text node at an offset.

getTextsAtRange

getTextsAtRange(range: Selection) => List

Get all of the Text nodes in a range.

hasChild

hasChild(key: String || Node) => Boolean

Check whether the node has a child node by key.

hasDescendant

hasDescendant(key: String || Node) => Boolean

Check whether the node has a descendant node by key.