Change
import { Change } from 'slate'A change allows you to define a series of changes you'd like to make to the current Value.
All changes are performed through Change objects, so that a history of changes can be preserved for use in undo/redo operations, and to make collaborative editing possible.
Properties
object
objectString
A string with a value of 'change'.
value
valueA Value with the change's current operations applied. Each time you run a new change function this property will be updated.
Methods
call
callcall(customChange: Function, ...args) => Change
This method calls the provided customChange function with the current instance of the Change object as the first argument and passes through the remaining args.
The purpose of call is to enable custom change methods to exist and called in a chain. For example:
function addBoldMark(change) {
change.addMark('bold_mark')
}
function insertParagraph(change) {
change.insertBlock('paragraph_block')
}
function onSomeEvent(event, change) {
change
.call(insertParagraph)
.insertText('Some text...')
.extendToStartOfBlock()
.call(addBoldMark)
.collapseToEnd()
}withoutNormalization
withoutNormalizationwithoutNormalization(customChange: Function) => Change
This method calls the provided customChange function with the current instance of the Change object as the first argument. While customChange is executing, normalization is temporarily suppressed, but normalization will be executed once the customChange function completes execution.
The purpose of withoutNormalization is to allow a sequence of change operations that should not be interrupted by normalization. For example:
/**
* Only allow block nodes in documents.
*
* @type {Object}
*/
validateNode(node) {
if (node.object != 'document') return
const invalids = node.nodes.filter(n => n.object != 'block')
if (!invalids.size) return
return (change) => {
change.withoutNormalization((c) => {
invalids.forEach((child) => {
c.removeNodeByKey(child.key)
})
})
}
}Current Value Changes
These changes act on the document based on the current selection. They are equivalent to calling the Document Changes with the current selection as the range argument, but they are there for convenience, since you often want to act with the current selection, as a user would.
deleteBackward
deleteBackwarddeleteBackward(n: Number) => Change
Delete backward n characters at the current cursor. If the selection is expanded, this method is equivalent to a regular delete(). n defaults to 1.
deleteForward
deleteForwarddeleteForward(n: Number) => Change
Delete forward n characters at the current cursor. If the selection is expanded, this method is equivalent to a regular delete(). n defaults to 1.
delete
deletedelete() => Change
Delete everything in the current selection.
insertBlock
insertBlockinsertBlock(block: Block) => Change
insertBlock(properties: Object) => Change
insertBlock(type: String) => Change
Insert a new block at the same level as the current block, splitting the current block to make room if it is non-empty. If the selection is expanded, it will be deleted first.
insertFragment
insertFragmentinsertFragment(fragment: Document) => Change
Insert a fragment at the current selection. If the selection is expanded, it will be deleted first.
insertInline
insertInlineinsertInline(inline: Inline) => Change
insertInline(properties: Object) => Change
Insert a new inline at the current cursor position, splitting the text to make room if it is non-empty. If the selection is expanded, it will be deleted first.
insertText
insertTextinsertText(text: String) => Change
Insert a string of text at the current selection. If the selection is expanded, it will be deleted first.
addMark
addMarkaddMark(mark: Mark) => Change
addMark(properties: Object) => Change
addMark(type: String) => Change
Add a mark to the characters in the current selection. For convenience, you can pass a type string or properties object to implicitly create a Mark of that type.
setBlocks
setBlockssetBlocks(properties: Object) => Change
setBlocks(type: String) => Change
Set the properties of the Blocks in the current selection. For convenience, you can pass a type string to set the blocks' type only.
setInlines
setInlinessetInlines(properties: Object) => Change
setInlines(type: String) => Change
Set the properties of the Inlines nodes in the current selection. For convenience, you can pass a type string to set the inline nodes' type only.
splitBlock
splitBlocksplitBlock(depth: Number) => Change
Split the Block in the current selection by depth levels. If the selection is expanded, it will be deleted first. depth defaults to 1.
splitInline
splitInlinesplitInline(depth: Number) => Change
Split the Inline node in the current selection by depth levels. If the selection is expanded, it will be deleted first. depth defaults to Infinity.
removeMark
removeMarkremoveMark(mark: Mark) => Change
removeMark(properties: Object) => Change
removeMark(type: String) => Change
Remove a mark from the characters in the current selection. For convenience, you can pass a type string or properties object to implicitly create a Mark of that type.
toggleMark
toggleMarktoggleMark(mark: Mark) => Change
toggleMark(properties: Object) => Change
toggleMark(type: String) => Change
Add or remove a mark from the characters in the current selection, depending on it already exists on any or not. For convenience, you can pass a type string or properties object to implicitly create a Mark of that type.
unwrapBlock
unwrapBlockunwrapBlock(type: String) => Change
unwrapBlock(properties: Object) => Change
Unwrap all Block nodes in the current selection that match a type and/or data.
unwrapInline
unwrapInlineunwrapInline(type: String) => Change
unwrapInline(properties: Object) => Change
Unwrap all Inline nodes in the current selection that match a type and/or data.
wrapBlock
wrapBlockwrapBlock(type: String) => Change
wrapBlock(properties: Object) => Change
Wrap the Block nodes in the current selection with a new Block node of type, with optional data.
wrapInline
wrapInlinewrapInline(type: String) => Change
wrapInline(properties: Object) => Change
Wrap the Inline nodes in the current selection with a new Inline node of type, with optional data.
wrapText
wrapTextwrapText(prefix: String, [suffix: String]) => Change
Surround the text in the current selection with prefix and suffix strings. If the suffix is ommitted, the prefix will be used instead.
Selection Changes
These changes change the current selection, without touching the document.
blur
blurblur() => Change
Blur the current selection.
collapseTo{Edge}
collapseTo{Edge}collapseTo{Edge}() => Change
Collapse the current selection to its {Edge}. Where {Edge} is either Anchor, Focus, Start or End.
collapseTo{Edge}Of
collapseTo{Edge}OfcollapseTo{Edge}Of(node: Node) => Change
Collapse the current selection to the {Edge} of node. Where {Edge} is either Start or End.
collapseTo{Edge}Of{Direction}Block
collapseTo{Edge}Of{Direction}BlockcollapseTo{Edge}Of{Direction}Block() => Change
Collapse the current selection to the {Edge} of the next Block node in {Direction}. Where {Edge} is either Start or End and {Direction} is either Next or Previous.
collapseTo{Edge}Of{Direction}Text
collapseTo{Edge}Of{Direction}TextcollapseTo{Edge}Of{Direction}Text() => Change
Collapse the current selection to the {Edge} of the next Text node in {Direction}. Where {Edge} is either Start or End and {Direction} is either Next or Previous.
extend
extendextend(n: Number) => Change
Extend the current selection's points by n characters. n can be positive or negative to indicate direction.
extendTo{Edge}Of
extendTo{Edge}OfextendTo{Edge}Of(node: Node) => Change
Extend the current selection to the {Edge} of a node. Where {Edge} is either Start or End.
flip
flipflip() => Change
Flip the selection.
focus
focusfocus() => Change
Focus the current selection.
move
movemove(n: Number) => Change
Move the current selection's offsets by n.
move{Edge}
move{Edge}move{Edge}(n: Number) => Change
Move the current selection's {Edge} offset by n. {Edge} can be one of Start, End.
moveOffsetsTo
moveOffsetsTomoveOffsetsTo(anchorOffset: Number, focusOffset: Number) => Change
Move the current selection's offsets to a new anchorOffset and focusOffset.
moveToRangeOf
moveToRangeOfmoveToRangeOf(node: Node) => Change
Move the current selection's anchor point to the start of a node and its focus point to the end of the node.
select
selectselect(properties: Range || Object) => Change
Set the current selection to a range with merged properties. The properties can either be a Range object or a plain Javascript object of selection properties.
selectAll
selectAllselectAll() => Change
Select the entire document and focus the selection.
deselect
deselectdeselect() => Change
Unset the selection.
Document Changes
These changes act on a specific Range of the document.
deleteBackwardAtRange
deleteBackwardAtRangedeleteBackwardAtRange(range: Range, n: Number) => Change
Delete backward n characters at a range. If the range is expanded, this method is equivalent to a regular delete(). n defaults to 1.
deleteForwardAtRange
deleteForwardAtRangedeleteForwardAtRange(range: Range, n: Number) => Change
Delete forward n characters at a range. If the range is expanded, this method is equivalent to a regular delete(). n defaults to 1.
deleteAtRange
deleteAtRangedeleteAtRange(range: Range, ) => Change
Delete everything in a range.
insertBlockAtRange
insertBlockAtRangeinsertBlockAtRange(range: Range, block: Block) => Change
insertBlockAtRange(range: Range, properties: Object) => Change
insertBlockAtRange(range: Range, type: String) => Change
Insert a new block at the same level as the leaf block at a range, splitting the current block to make room if it is non-empty. If the selection is expanded, it will be deleted first.
insertFragmentAtRange
insertFragmentAtRangeinsertFragmentAtRange(range: Range, fragment: Document) => Change
Insert a fragment at a range. If the selection is expanded, it will be deleted first.
insertInlineAtRange
insertInlineAtRangeinsertInlineAtRange(range: Range, inline: Inline) => Change
insertInlineAtRange(range: Range, properties: Object) => Change
Insert a new inline at a range, splitting the text to make room if it is non-empty. If the selection is expanded, it will be deleted first.
insertTextAtRange
insertTextAtRangeinsertTextAtRange(range: Range, text: String) => Change
Insert a string of text at a range. If the selection is expanded, it will be deleted first.
addMarkAtRange
addMarkAtRangeaddMarkAtRange(range: Range, mark: Mark) => Change
addMarkAtRange(range: Range, properties: Object) => Change
addMarkAtRange(range: Range, type: String) => Change
Add a mark to the characters in a range. For convenience, you can pass a type string or properties object to implicitly create a Mark of that type.
setBlocksAtRange
setBlocksAtRangesetBlocksAtRange(range: Range, properties: Object) => Change
setBlocks(range: Range, type: String) => Change
Set the properties of the Blocks in a range. For convenience, you can pass a type string to set the blocks' type only.
setInlinesAtRange
setInlinesAtRangesetInlinesAtRange(range: Range, properties: Object) => Change
setInlines(range: Range, type: String) => Change
Set the properties of the Inlines nodes in a range. For convenience, you can pass a type string to set the inline nodes' type only.
splitBlockAtRange
splitBlockAtRangesplitBlockAtRange(range: Range, depth: Number) => Change
Split the Block in a range by depth levels. If the selection is expanded, it will be deleted first. depth defaults to 1.
splitInlineAtRange
splitInlineAtRangesplitInlineAtRange(range: Range, depth: Number) => Change
Split the Inline node in a range by depth levels. If the selection is expanded, it will be deleted first. depth defaults to Infinity.
removeMarkAtRange
removeMarkAtRangeremoveMarkAtRange(range: Range, mark: Mark) => Change
removeMarkAtRange(range: Range, properties: Object) => Change
removeMarkAtRange(range: Range, type: String) => Change
Remove a mark from the characters in a range. For convenience, you can pass a type string or properties object to implicitly create a Mark of that type.
toggleMarkAtRange
toggleMarkAtRangetoggleMarkAtRange(range: Range, mark: Mark) => Change
toggleMarkAtRange(range: Range, properties: Object) => Change
toggleMarkAtRange(range: Range, type: String) => Change
Add or remove a mark from the characters in a range, depending on whether any of them already have the mark. For convenience, you can pass a type string or properties object to implicitly create a Mark of that type.
unwrapBlockAtRange
unwrapBlockAtRangeunwrapBlockAtRange(range: Range, properties: Object) => Change
unwrapBlockAtRange(range: Range, type: String) => Change
Unwrap all Block nodes in a range that match properties. For convenience, you can pass a type string or properties object.
unwrapInlineAtRange
unwrapInlineAtRangeunwrapInlineAtRange(range: Range, properties: Object) => Change
unwrapInlineAtRange(range: Range, type: String) => Change
Unwrap all Inline nodes in a range that match properties. For convenience, you can pass a type string or properties object.
wrapBlockAtRange
wrapBlockAtRangewrapBlockAtRange(range: Range, properties: Object) => Change
wrapBlockAtRange(range: Range, type: String) => Change
Wrap the Block nodes in a range with a new Block node with properties. For convenience, you can pass a type string or properties object.
wrapInlineAtRange
wrapInlineAtRangewrapInlineAtRange(range: Range, properties: Object) => Change
wrapInlineAtRange(range: Range, type: String) => Change
Wrap the Inline nodes in a range with a new Inline node with properties. For convenience, you can pass a type string or properties object.
wrapTextAtRange
wrapTextAtRangewrapTextAtRange(range: Range, prefix: String, [suffix: String]) => Change
Surround the text in a range with prefix and suffix strings. If the suffix is ommitted, the prefix will be used instead.
Node Changes
These changes are lower-level, and act on a specific node by its key. They're often used in your custom components because you'll have access to props.node.
addMarkByKey
addMarkByKeyaddMarkByKey(key: String, offset: Number, length: Number, mark: Mark) => Change
Add a mark to length characters starting at an offset in a Node by its key.
insertNodeByKey
insertNodeByKeyinsertNodeByKey(key: String, index: Number, node: Node) => Change
Insert a node at index inside a parent Node by its key.
insertFragmentByKey
insertFragmentByKeyinsertFragmentByKey(key: String, index: Number, fragment: Fragment) => Transform
Insert a Fragment at index inside a parent Node by its key.
insertTextByKey
insertTextByKeyinsertTextByKey(key: String, offset: Number, text: String, [marks: Set]) => Change
Insert text at an offset in a Text Node by its key with optional marks.
moveNodeByKey
moveNodeByKeymoveNodeByKey(key: String, newKey: String, newIndex: Number) => Change
Move a Node by its key to a new parent node with its newKey and at a newIndex.
removeMarkByKey
removeMarkByKeyremoveMarkByKey(key: String, offset: Number, length: Number, mark: Mark) => Change
Remove a mark from length characters starting at an offset in a Node by its key.
removeNodeByKey
removeNodeByKeyremoveNodeByKey(key: String) => Change
Remove a Node from the document by its key.
replaceNodeByKey
replaceNodeByKeyreplaceNodeByKey(key: String, node: Node) => Change
Replace a Node in the document with a new Node by its key.
removeTextByKey
removeTextByKeyremoveTextByKey(key: String, offset: Number, length: Number) => Change
Remove length characters of text starting at an offset in a Node by its key.
setMarkByKey
setMarkByKeysetMarkByKey(key: String, offset: Number, length: Number, mark: Mark, properties: Object) => Change
Set a dictionary of properties on a mark on a Node by its key.
setNodeByKey
setNodeByKeysetNodeByKey(key: String, properties: Object) => Change
setNodeByKey(key: String, type: String) => Change
Set a dictionary of properties on a Node by its key. For convenience, you can pass a type string or properties object.
splitNodeByKey
splitNodeByKeysplitNodeByKey(key: String, offset: Number) => Change
Split a node by its key at an offset.
unwrapInlineByKey
unwrapInlineByKeyunwrapInlineByKey(key: String, properties: Object) => Change
unwrapInlineByKey(key: String, type: String) => Change
Unwrap all inner content of an Inline node by its key that match properties. For convenience, you can pass a type string or properties object.
unwrapBlockByKey
unwrapBlockByKeyunwrapBlockByKey(key: String, properties: Object) => Change
unwrapBlockByKey(key: String, type: String) => Change
Unwrap all inner content of a Block node by its key that match properties. For convenience, you can pass a type string or properties object.
unwrapNodeByKey
unwrapNodeByKeyunwrapNodeByKey(key: String) => Change
Unwrap a single node from its parent. If the node is surrounded with siblings, its parent will be split. If the node is the only child, the parent is removed, and simply replaced by the node itself. Cannot unwrap a root node.
wrapBlockByKey
wrapBlockByKeywrapBlockByKey(key: String, properties: Object) => Change
wrapBlockByKey(key: String, type: String) => Change
Wrap the given node in a Block node that match properties. For convenience, you can pass a type string or properties object.
wrapInlineByKey
wrapInlineByKeywrapInlineByKey(key: String, properties: Object) => Change
wrapInlineByKey(key: String, type: String) => Change
Wrap the given node in a Inline node that match properties. For convenience, you can pass a type string or properties object.
History Changes
These changes use the history to undo/redo previously made changes.
redo
redoredo() => Change
Move forward one step in the history.
undo
undoundo() => Change
Move backward one step in the history.
snapshotSelection
snapshotSelectionsnapshotSelection() => Change
Snapshot value.selection for undo purposes, useful with delete operations like removeNodeByKey(focusBlock.key).undo()
Last updated