Skip to main content

Module: @lexical/utils

References

$splitNode

Re-exports $splitNode


isHTMLAnchorElement

Re-exports isHTMLAnchorElement


isHTMLElement

Re-exports isHTMLElement

Type Aliases

DFSNode

Ƭ DFSNode: Readonly<{ depth: number ; node: LexicalNode }>

Defined in

packages/lexical-utils/src/index.ts:60


DOMNodeToLexicalConversion

Ƭ DOMNodeToLexicalConversion: (element: Node) => LexicalNode

Type declaration

▸ (element): LexicalNode

Parameters
NameType
elementNode
Returns

LexicalNode

Defined in

packages/lexical-utils/src/index.ts:271


DOMNodeToLexicalConversionMap

Ƭ DOMNodeToLexicalConversionMap: Record<string, DOMNodeToLexicalConversion>

Defined in

packages/lexical-utils/src/index.ts:273

Variables

CAN_USE_BEFORE_INPUT

Const CAN_USE_BEFORE_INPUT: boolean = CAN_USE_BEFORE_INPUT_

Defined in

packages/lexical-utils/src/index.ts:49


CAN_USE_DOM

Const CAN_USE_DOM: boolean = CAN_USE_DOM_

Defined in

packages/lexical-utils/src/index.ts:50


IS_ANDROID

Const IS_ANDROID: boolean = IS_ANDROID_

Defined in

packages/lexical-utils/src/index.ts:51


IS_ANDROID_CHROME

Const IS_ANDROID_CHROME: boolean = IS_ANDROID_CHROME_

Defined in

packages/lexical-utils/src/index.ts:52


IS_APPLE

Const IS_APPLE: boolean = IS_APPLE_

Defined in

packages/lexical-utils/src/index.ts:53


IS_APPLE_WEBKIT

Const IS_APPLE_WEBKIT: boolean = IS_APPLE_WEBKIT_

Defined in

packages/lexical-utils/src/index.ts:54


IS_CHROME

Const IS_CHROME: boolean = IS_CHROME_

Defined in

packages/lexical-utils/src/index.ts:55


IS_FIREFOX

Const IS_FIREFOX: boolean = IS_FIREFOX_

Defined in

packages/lexical-utils/src/index.ts:56


IS_IOS

Const IS_IOS: boolean = IS_IOS_

Defined in

packages/lexical-utils/src/index.ts:57


IS_SAFARI

Const IS_SAFARI: boolean = IS_SAFARI_

Defined in

packages/lexical-utils/src/index.ts:58

Functions

$dfs

$dfs(startingNode?, endingNode?): DFSNode[]

"Depth-First Search" starts at the root/top node of a tree and goes as far as it can down a branch end before backtracking and finding a new path. Consider solving a maze by hugging either wall, moving down a branch until you hit a dead-end (leaf) and backtracking to find the nearest branching path and repeat. It will then return all the nodes found in the search in an array of objects.

Parameters

NameTypeDescription
startingNode?LexicalNodeThe node to start the search, if ommitted, it will start at the root node.
endingNode?LexicalNodeThe node to end the search, if ommitted, it will find all descendants of the startingNode.

Returns

DFSNode[]

An array of objects of all the nodes found by the search, including their depth into the tree. {depth: number, node: LexicalNode} It will always return at least 1 node (the ending node) so long as it exists

Defined in

packages/lexical-utils/src/index.ts:173


$filter

$filter<T>(nodes, filterFn): T[]

Filter the nodes

Type parameters

Name
T

Parameters

NameTypeDescription
nodesLexicalNode[]Array of nodes that needs to be filtered
filterFn(node: LexicalNode) => null | TA filter function that returns node if the current node satisfies the condition otherwise null

Returns

T[]

Array of filtered nodes

Defined in

packages/lexical-utils/src/index.ts:525


$findMatchingParent

$findMatchingParent<T>(startingNode, findFn): null | T

Starts with a node and moves up the tree (toward the root node) to find a matching node based on the search parameters of the findFn. (Consider JavaScripts' .find() function where a testing function must be passed as an argument. eg. if( (node) => node.__type === 'div') ) return true; otherwise return false

Type parameters

NameType
Textends LexicalNode

Parameters

NameTypeDescription
startingNodeLexicalNodeThe node where the search starts.
findFn(node: LexicalNode) => node is TA testing function that returns true if the current node satisfies the testing parameters.

Returns

null | T

A parent node that matches the findFn parameters, or null if one wasn't found.

Defined in

packages/lexical-utils/src/index.ts:287

$findMatchingParent(startingNode, findFn): null | LexicalNode

Starts with a node and moves up the tree (toward the root node) to find a matching node based on the search parameters of the findFn. (Consider JavaScripts' .find() function where a testing function must be passed as an argument. eg. if( (node) => node.__type === 'div') ) return true; otherwise return false

Parameters

NameTypeDescription
startingNodeLexicalNodeThe node where the search starts.
findFn(node: LexicalNode) => booleanA testing function that returns true if the current node satisfies the testing parameters.

Returns

null | LexicalNode

A parent node that matches the findFn parameters, or null if one wasn't found.

Defined in

packages/lexical-utils/src/index.ts:291


$getNearestBlockElementAncestorOrThrow

$getNearestBlockElementAncestorOrThrow(startNode): ElementNode

Returns the element node of the nearest ancestor, otherwise throws an error.

Parameters

NameTypeDescription
startNodeLexicalNodeThe starting node of the search

Returns

ElementNode

The ancestor node found

Defined in

packages/lexical-utils/src/index.ts:254


$getNearestNodeOfType

$getNearestNodeOfType<T>(node, klass): T | null

Takes a node and traverses up its ancestors (toward the root node) in order to find a specific type of node.

Type parameters

NameType
Textends ElementNode

Parameters

NameTypeDescription
nodeLexicalNodethe node to begin searching.
klassKlass<T>an instance of the type of node to look for.

Returns

T | null

the node of type klass that was passed, or null if none exist.

Defined in

packages/lexical-utils/src/index.ts:232


$insertFirst

$insertFirst(parent, node): void

Appends the node before the first child of the parent node

Parameters

NameTypeDescription
parentElementNodeA parent node
nodeLexicalNodeNode that needs to be appended

Returns

void

Defined in

packages/lexical-utils/src/index.ts:543


$insertNodeToNearestRoot

$insertNodeToNearestRoot<T>(node): T

If the selected insertion area is the root/shadow root node (see $isRootOrShadowRoot), the node will be appended there, otherwise, it will be inserted before the insertion area. If there is no selection where the node is to be inserted, it will be appended after any current nodes within the tree, as a child of the root node. A paragraph node will then be added after the inserted node and selected.

Type parameters

NameType
Textends LexicalNode

Parameters

NameTypeDescription
nodeTThe node to be inserted

Returns

T

The node after its insertion

Defined in

packages/lexical-utils/src/index.ts:436


$restoreEditorState

$restoreEditorState(editor, editorState): void

Clones the editor and marks it as dirty to be reconciled. If there was a selection, it would be set back to its previous state, or null otherwise.

Parameters

NameTypeDescription
editorLexicalEditorThe lexical editor
editorStateEditorStateThe editor's state

Returns

void

Defined in

packages/lexical-utils/src/index.ts:402


$wrapNodeInElement

$wrapNodeInElement(node, createElementNode): ElementNode

Wraps the node into another node created from a createElementNode function, eg. $createParagraphNode

Parameters

NameTypeDescription
nodeLexicalNodeNode to be wrapped.
createElementNode() => ElementNodeCreates a new lexical element to wrap the to-be-wrapped node and returns it.

Returns

ElementNode

A new lexical element with the previous node appended within (as a child, including its children).

Defined in

packages/lexical-utils/src/index.ts:491


addClassNamesToElement

addClassNamesToElement(element, ...classNames): void

Takes an HTML element and adds the classNames passed within an array, ignoring any non-string types. A space can be used to add multiple classes eg. addClassNamesToElement(element, ['element-inner active', true, null]) will add both 'element-inner' and 'active' as classes to that element.

Parameters

NameTypeDescription
elementHTMLElementThe element in which the classes are added
...classNames(undefined | null | string | boolean)[]An array defining the class names to add to the element

Returns

void

Defined in

packages/lexical-utils/src/index.ts:73


calculateZoomLevel

calculateZoomLevel(element): number

Calculates the zoom level of an element as a result of using css zoom property.

Parameters

NameType
elementnull | Element

Returns

number

Defined in

packages/lexical-utils/src/index.ts:557


isMimeType

isMimeType(file, acceptableMimeTypes): boolean

Returns true if the file type matches the types passed within the acceptableMimeTypes array, false otherwise. The types passed must be strings and are CASE-SENSITIVE. eg. if file is of type 'text' and acceptableMimeTypes = ['TEXT', 'IMAGE'] the function will return false.

Parameters

NameTypeDescription
fileFileThe file you want to type check.
acceptableMimeTypesstring[]An array of strings of types which the file is checked against.

Returns

boolean

true if the file is an acceptable mime type, false otherwise.

Defined in

packages/lexical-utils/src/index.ts:109


markSelection

markSelection(editor, onReposition?): () => void

Parameters

NameType
editorLexicalEditor
onReposition?(node: HTMLElement[]) => void

Returns

fn

▸ (): void

Returns

void

Defined in

packages/lexical-utils/src/markSelection.ts:23


mediaFileReader

mediaFileReader(files, acceptableMimeTypes): Promise<{ file: File ; result: string }[]>

Lexical File Reader with:

  1. MIME type support
  2. batched results (HistoryPlugin compatibility)
  3. Order aware (respects the order when multiple Files are passed)

const filesResult = await mediaFileReader(files, ['image/']); filesResult.forEach(file => editor.dispatchCommand('INSERT_IMAGE', { src: file.result, }));

Parameters

NameType
filesFile[]
acceptableMimeTypesstring[]

Returns

Promise<{ file: File ; result: string }[]>

Defined in

packages/lexical-utils/src/index.ts:132


mergeRegister

mergeRegister(...func): () => void

Returns a function that will execute all functions passed when called. It is generally used to register multiple lexical listeners and then tear them down with a single function call, such as React's useEffect hook.

Parameters

NameTypeDescription
...funcFunc[]An array of functions meant to be executed by the returned function.

Returns

fn

the function which executes all the passed register command functions.

▸ (): void

Returns

void

Example

useEffect(() => {
return mergeRegister(
editor.registerCommand(...registerCommand1 logic),
editor.registerCommand(...registerCommand2 logic),
editor.registerCommand(...registerCommand3 logic)
)
}, [editor])

In this case, useEffect is returning the function returned by mergeRegister as a cleanup function to be executed after either the useEffect runs again (due to one of its dependencies updating) or the component it resides in unmounts. Note the functions don't neccesarily need to be in an array as all arguements are considered to be the func argument and spread from there.

Defined in

packages/lexical-utils/src/mergeRegister.ts:33


objectKlassEquals

objectKlassEquals<T>(object, objectClass): boolean

Type parameters

Name
T

Parameters

NameTypeDescription
objectunknown= The instance of the type
objectClassObjectKlass<T>= The class of the type

Returns

boolean

Whether the object is has the same Klass of the objectClass, ignoring the difference across window (e.g. different iframs)

Defined in

packages/lexical-utils/src/index.ts:509


positionNodeOnRange

positionNodeOnRange(editor, range, onReposition): () => void

Parameters

NameType
editorLexicalEditor
rangeRange
onReposition(node: HTMLElement[]) => void

Returns

fn

▸ (): void

Returns

void

Defined in

packages/lexical-utils/src/positionNodeOnRange.ts:23


registerNestedElementResolver

registerNestedElementResolver<N>(editor, targetNode, cloneNode, handleOverlap): () => void

Attempts to resolve nested element nodes of the same type into a single node of that type. It is generally used for marks/commenting

Type parameters

NameType
Nextends ElementNode

Parameters

NameTypeDescription
editorLexicalEditorThe lexical editor
targetNodeKlass<N>The target for the nested element to be extracted from.
cloneNode(from: N) => NSee $createMarkNode
handleOverlap(from: N, to: N) => voidHandles any overlap between the node to extract and the targetNode

Returns

fn

The lexical editor

▸ (): void

Returns

void

Defined in

packages/lexical-utils/src/index.ts:321


removeClassNamesFromElement

removeClassNamesFromElement(element, ...classNames): void

Takes an HTML element and removes the classNames passed within an array, ignoring any non-string types. A space can be used to remove multiple classes eg. removeClassNamesFromElement(element, ['active small', true, null]) will remove both the 'active' and 'small' classes from that element.

Parameters

NameTypeDescription
elementHTMLElementThe element in which the classes are removed
...classNames(undefined | null | string | boolean)[]An array defining the class names to remove from the element

Returns

void

Defined in

packages/lexical-utils/src/index.ts:91