Selection
Types of selection
Lexical's selection is part of the EditorState
. This means that for every update, or change to the editor, the
selection always remains consistent with that of the EditorState
's node tree.
In Lexical, there are four types of selection possible:
RangeSelection
NodeSelection
GridSelection
null
RangeSelection
This is the most common type of selection, and is a normalization of the browser's DOM Selection and Range APIs.
RangeSelection
consists of three main properties:
anchor
representing aRangeSelection
pointfocus
representing aRangeSelection
pointformat
numeric bitwise flag, representing any active text formats
Both the anchor
and focus
points refer to an object that represents a specific part of the editor. The main properties of a RangeSelection
point are:
key
representing theNodeKey
of the selected Lexical nodeoffset
representing the position from within its selected Lexical node. For thetext
type this is the character, and for theelement
type this is the child index from within theElementNode
type
representing eitherelement
ortext
.
NodeSelection
NodeSelection represents a selection of multiple arbitrary nodes. For example, three images selected at the same time.
getNodes()
returns an array containing the selected LexicalNodes
GridSelection
GridSelection represents a grid-like selection like tables. It stores the key of the parent node where the selection takes place and the start and end points.
GridSelection
consists of three main properties:
gridKey
representing the parent node key where the selection takes placeanchor
representing aGridSelection
pointfocus
reprensenting aGridSelection
point
For example, a table where you select row = 1 col = 1 to row 2 col = 2 could be stored as follows:
gridKey = 2
table keyanchor = 4
table cell (key may vary)focus = 10
table cell (key may vary)
Note that anchor
and focus
points work the same way as RangeSelection
.
null
This is for when the editor doesn't have any active selection. This is common for when the editor has been blurred or when selection has moved to another editor on the page. This can also happen when trying to select non-editable components within the editor space.
Working with selection
Selection can be found using the $getSelection()
helper, exported from the lexical
package. This function can be used within
an update, a read, or a command listener.
import {$getSelection, SELECTION_CHANGE_COMMAND} from 'lexical';
editor.update(() => {
const selection = $getSelection();
});
editorState.read(() => {
const selection = $getSelection();
});
// SELECTION_CHANGE_COMMAND fires when selection changes within a Lexical editor.
editor.registerCommand(SELECTION_CHANGE_COMMAND, () => {
const selection = $getSelection();
});
In some cases you might want to create a new type of selection and set the editor selection to be that. This can only be done in update or command listeners.
import {$setSelection, $createRangeSelection, $createNodeSelection} from 'lexical';
editor.update(() => {
// Set a range selection
const rangeSelection = $createRangeSelection();
$setSelection(rangeSelection);
// You can also indirectly create a range selection, by calling some of the selection
// methods on Lexical nodes.
const someNode = $getNodeByKey(someKey);
// On element nodes, this will create a RangeSelection with type "element",
// referencing an offset relating to the child within the element.
// On text nodes, this will create a RangeSelection with type "text",
// referencing the text character offset.
someNode.select();
someNode.selectPrevious();
someNode.selectNext();
// You can use this on any node.
someNode.selectStart();
someNode.selectEnd();
// Set a node selection
const nodeSelection = $createNodeSelection();
// Add a node key to the selection.
nodeSelection.add(someKey);
$setSelection(nodeSelection);
// You can also clear selection by setting it to `null`.
$setSelection(null);
});