MarkerOperation (engine/model/operation)
@ckeditor/ckeditor5-engine/src/model/operation/markeroperation
Abstract base operation class.
Filtering
Properties
-
readonly
affectedSelectable : Selectable
module:engine/model/operation/markeroperation~MarkerOperation#affectedSelectable
A selectable that will be affected by the operation after it is executed.
The exact returned parameter differs between operation types.
-
affectsData : boolean
module:engine/model/operation/markeroperation~MarkerOperation#affectsData
Specifies whether the marker operation affects the data produced by the data pipeline (is persisted in the editor's data).
-
inherited
baseVersion : null | number
module:engine/model/operation/markeroperation~MarkerOperation#baseVersion
version
on which operation can be applied. If you try to apply operation with different base version than the document version the model-document-applyOperation-wrong-version error is thrown. -
Batch to which the operation is added or
null
if the operation is not added to any batch yet. -
readonly inherited
isDocumentOperation : boolean
module:engine/model/operation/markeroperation~MarkerOperation#isDocumentOperation
Defines whether operation is executed on attached or detached items.
-
name : string
module:engine/model/operation/markeroperation~MarkerOperation#name
Marker name.
-
Marker range after the change.
-
Marker range before the change.
-
Operation type.
-
private readonly
_markers : MarkerCollection
module:engine/model/operation/markeroperation~MarkerOperation#_markers
Marker collection on which change should be executed.
Static properties
-
readonly static
className : string
module:engine/model/operation/markeroperation~MarkerOperation.className
Name of the operation class used for serialization.
Methods
-
constructor( name, oldRange, newRange, markers, affectsData, baseVersion )
module:engine/model/operation/markeroperation~MarkerOperation#constructor
Parameters
name : string
Marker name.
oldRange : null | Range
Marker range before the change.
newRange : null | Range
Marker range after the change.
markers : MarkerCollection
Marker collection on which change should be executed.
affectsData : boolean
Specifies whether the marker operation affects the data produced by the data pipeline (is persisted in the editor's data).
baseVersion : null | number
Document
version
on which operation can be applied ornull
if the operation operates on detached (non-document) tree.
-
clone() → MarkerOperation
module:engine/model/operation/markeroperation~MarkerOperation#clone
Creates and returns an operation that has the same parameters as this operation.
Returns
-
getReversed() → Operation
module:engine/model/operation/markeroperation~MarkerOperation#getReversed
-
toJSON() → unknown
module:engine/model/operation/markeroperation~MarkerOperation#toJSON
Custom toJSON method to solve child-parent circular dependencies.
Returns
unknown
Clone of this object with the operation property replaced with string.
-
Executes the operation - modifications described by the operation properties will be applied to the model tree.
Returns
void
-
internal inherited
_validate() → void
module:engine/model/operation/markeroperation~MarkerOperation#_validate
Checks whether the operation's parameters are correct and the operation can be correctly executed. Throws an error if operation is not valid.
Returns
void
Static methods
-
static
fromJSON( json, document ) → MarkerOperation
module:engine/model/operation/markeroperation~MarkerOperation.fromJSON
Creates
MarkerOperation
object from deserialized object, i.e. from parsed JSON string.Parameters
json : any
Deserialized JSON object.
document : Document
Document on which this operation will be applied.
Returns
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.
With the release of version 42.0.0, we have rewritten much of our documentation to reflect the new import paths and features. We appreciate your feedback to help us ensure its accuracy and completeness.