Class

LivePosition (engine/model)

@ckeditor/ckeditor5-engine/src/model/liveposition

class

LivePosition is a type of Position that updates itself as document is changed through operations. It may be used as a bookmark.

Note: Contrary to Position, LivePosition works only in roots that are RootElement. If DocumentFragment is passed, error will be thrown.

Note: Be very careful when dealing with LivePosition. Each LivePosition instance bind events that might have to be unbound. Use detach whenever you don't need LivePosition anymore.

Filtering

Properties

  • index : Number

    readonly inherited

    Position offset converted to an index in position's parent node. It is equal to the index of a node after this position. If position is placed in text node, position index is equal to the index of that text node.

  • isAtEnd : Boolean

    readonly inherited

    Is true if position is at the end of its parent, false otherwise.

  • isAtStart : Boolean

    readonly inherited

    Is true if position is at the beginning of its parent, false otherwise.

  • nodeAfter : Node | null

    readonly inherited

    Node directly after this position or null if this position is in text node.

  • nodeBefore : Node | null

    readonly inherited

    Node directly before this position or null if this position is in text node.

  • offset : Number

    inherited

    Offset at which this position is located in its parent. It is equal to the last item in position path.

  • parent : Element | DocumentFragment

    readonly inherited

    Parent element of this position.

    Keep in mind that parent value is calculated when the property is accessed. If position path leads to a non-existing element, parent property will throw error.

    Also it is a good idea to cache parent property if it is used frequently in an algorithm (i.e. in a long loop).

  • path : Array.<Number>

    readonly inherited

    Position of the node in the tree. Path contains offsets, not indexes.

    Position can be placed before, after or in a node if that node has offsetSize greater than 1. Items in position path are starting offsets of position ancestors, starting from direct root children, down to the position offset in it's parent.

     ROOT
      |- P            before: [ 0 ]         after: [ 1 ]
      |- UL           before: [ 1 ]         after: [ 2 ]
         |- LI        before: [ 1, 0 ]      after: [ 1, 1 ]
         |  |- foo    before: [ 1, 0, 0 ]   after: [ 1, 0, 3 ]
         |- LI        before: [ 1, 1 ]      after: [ 1, 2 ]
            |- bar    before: [ 1, 1, 0 ]   after: [ 1, 1, 3 ]

    foo and bar are representing text nodes. Since text nodes has offset size greater than 1 you can place position offset between their start and end:

     ROOT
      |- P
      |- UL
         |- LI
         |  |- f^o|o  ^ has path: [ 1, 0, 1 ]   | has path: [ 1, 0, 2 ]
         |- LI
            |- b^a|r  ^ has path: [ 1, 1, 1 ]   | has path: [ 1, 1, 2 ]
  • root : Element | DocumentFragment

    readonly inherited

    Root of the position path.

  • stickiness : PositionStickiness

    inherited

    Position stickiness. See PositionStickiness.

  • textNode : Text | null

    readonly inherited

    Returns text node instance in which this position is placed or null if this position is not in a text node.

Methods

  • constructor( root, path, [ stickiness ] )

    Creates a live position.

    Parameters

    root : RootElement
    path : Array.<Number>
    [ stickiness ] : PositionStickiness

    Defaults to toNone

    Related:

  • clone() → Position

    inherited

    Returns a new position that is equal to current position.

    Returns

    Position
  • compareWith( otherPosition ) → PositionRelation

    inherited

    Checks whether this position is before or after given position.

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    otherPosition : Position

    Position to compare with.

    Returns

    PositionRelation
  • detach()

    Unbinds all events previously bound by LivePosition. Use it whenever you don't need LivePosition instance anymore (i.e. when leaving scope in which it was declared or before re-assigning variable that was referring to it).

  • getAncestors() → Array.<Item>

    inherited

    Returns ancestors array of this position, that is this position's parent and its ancestors.

    Returns

    Array.<Item>

    Array with ancestors.

  • getCommonAncestor( position ) → Element | DocumentFragment | null

    inherited

    Returns an Element or DocumentFragment which is a common ancestor of both positions. The roots of these two positions must be identical.

    Parameters

    position : Position

    The second position.

    Returns

    Element | DocumentFragment | null
  • getCommonPath( position ) → Array.<Number>

    inherited

    Returns the slice of two position paths which is identical. The roots of these two paths must be identical.

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    position : Position

    The second position.

    Returns

    Array.<Number>

    The common path.

  • getLastMatchingPosition( skip, options ) → Position

    inherited

    Gets the farthest position which matches the callback using TreeWalker.

    For example:

    getLastMatchingPosition( value => value.type == 'text' );
    // <paragraph>[]foo</paragraph> -> <paragraph>foo[]</paragraph>
    
    getLastMatchingPosition( value => value.type == 'text', { direction: 'backward' } );
    // <paragraph>foo[]</paragraph> -> <paragraph>[]foo</paragraph>
    
    getLastMatchingPosition( value => false );
    // Do not move the position.

    Parameters

    skip : function

    Callback function. Gets TreeWalkerValue and should return true if the value should be skipped or false if not.

    options : Object

    Object with configuration options. See TreeWalker.

    Returns

    Position

    The position after the last item which matches the skip callback test.

  • getParentPath() → Array.<Number>

    inherited

    Returns a path to this position's parent. Parent path is equal to position path but without the last item.

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Returns

    Array.<Number>

    Path to the parent.

  • getShiftedBy( shift ) → Position

    inherited

    Returns a new instance of Position, that has same parent but it's offset is shifted by shift value (can be a negative value).

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    shift : Number

    Offset shift. Can be a negative value.

    Returns

    Position

    Shifted position.

  • getTransformedByOperation( operation ) → Position

    inherited

    Returns a copy of this position that is transformed by given operation.

    The new position's parameters are updated accordingly to the effect of the operation.

    For example, if n nodes are inserted before the position, the returned position offset will be increased by n. If the position was in a merged element, it will be accordingly moved to the new element, etc.

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    operation : Operation

    Operation to transform by.

    Returns

    Position

    Transformed position.

  • hasSameParentAs( position ) → Boolean

    inherited

    Checks if two positions are in the same parent.

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    position : Position

    Position to compare with.

    Returns

    Boolean

    true if positions have the same parent, false otherwise.

  • is( type ) → Boolean

    Checks whether this object is of the given.

    livePosition.is( 'position' ); // -> true
    livePosition.is( 'model:position' ); // -> true
    livePosition.is( 'liveposition' ); // -> true
    livePosition.is( 'model:livePosition' ); // -> true
    
    livePosition.is( 'view:position' ); // -> false
    livePosition.is( 'documentSelection' ); // -> false

    Check the entire list of model objects which implement the is() method.

    Parameters

    type : String

    Returns

    Boolean
  • isAfter( otherPosition ) → Boolean

    inherited

    Checks whether this position is after given position.

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    otherPosition : Position

    Position to compare with.

    Returns

    Boolean

    True if this position is after given position.

    Related:

  • isBefore( otherPosition ) → Boolean

    inherited

    Checks whether this position is before given position.

    Note: watch out when using negation of the value returned by this method, because the negation will also be true if positions are in different roots and you might not expect this. You should probably use a.isAfter( b ) || a.isEqual( b ) or !a.isBefore( p ) && a.root == b.root in most scenarios. If your condition uses multiple isAfter and isBefore checks, build them so they do not use negated values, i.e.:

    if ( a.isBefore( b ) && c.isAfter( d ) ) {
        // do A.
    } else {
        // do B.
    }

    or, if you have only one if-branch:

    if ( !( a.isBefore( b ) && c.isAfter( d ) ) {
        // do B.
    }

    rather than:

    if ( !a.isBefore( b ) || && !c.isAfter( d ) ) {
        // do B.
    } else {
        // do A.
    }

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    otherPosition : Position

    Position to compare with.

    Returns

    Boolean

    True if this position is before given position.

  • isEqual( otherPosition ) → Boolean

    inherited

    Checks whether this position is equal to given position.

    This method is safe to use it on non-existing positions (for example during operational transformation).

    Parameters

    otherPosition : Position

    Position to compare with.

    Returns

    Boolean

    True if positions are same.

  • isTouching( otherPosition ) → Boolean

    inherited

    Checks whether this position is touching given position. Positions touch when there are no text nodes or empty nodes in a range between them. Technically, those positions are not equal but in many cases they are very similar or even indistinguishable.

    Parameters

    otherPosition : Position

    Position to compare with.

    Returns

    Boolean

    True if positions touch.

  • toJSON()

    inherited

  • toPosition() → Position

    Creates a position instance, which is equal to this live position.

    Returns

    Position
  • _getCombined( source, target ) → Position

    protected inherited

    Returns a new position that is a combination of this position and given positions.

    The combined position is a copy of this position transformed by moving a range starting at source position to the target position. It is expected that this position is inside the moved range.

    Example:

    let original = model.createPositionFromPath( root, [ 2, 3, 1 ] );
    let source = model.createPositionFromPath( root, [ 2, 2 ] );
    let target = model.createPositionFromPath( otherRoot, [ 1, 1, 3 ] );
    original._getCombined( source, target ); // path is [ 1, 1, 4, 1 ], root is `otherRoot`

    Explanation:

    We have a position [ 2, 3, 1 ] and move some nodes from [ 2, 2 ] to [ 1, 1, 3 ]. The original position was inside moved nodes and now should point to the new place. The moved nodes will be after positions [ 1, 1, 3 ], [ 1, 1, 4 ], [ 1, 1, 5 ]. Since our position was in the second moved node, the transformed position will be in a sub-tree of a node at [ 1, 1, 4 ]. Looking at original path, we took care of [ 2, 3 ] part of it. Now we have to add the rest of the original path to the transformed path. Finally, the transformed position will point to [ 1, 1, 4, 1 ].

    Parameters

    source : Position

    Beginning of the moved range.

    target : Position

    Position where the range is moved.

    Returns

    Position

    Combined position.

  • _getTransformedByDeletion( deletePosition, howMany ) → Position | null

    protected inherited

    Returns a copy of this position that is updated by removing howMany nodes starting from deletePosition. It may happen that this position is in a removed node. If that is the case, null is returned instead.

    Parameters

    deletePosition : Position

    Position before the first removed node.

    howMany : Number

    How many nodes are removed.

    Returns

    Position | null

    Transformed position or null.

  • _getTransformedByInsertOperation( operation ) → Position

    protected inherited

    Returns a copy of this position transformed by an insert operation.

    Parameters

    operation : InsertOperation

    Returns

    Position
  • _getTransformedByInsertion( insertPosition, howMany ) → Position

    protected inherited

    Returns a copy of this position that is updated by inserting howMany nodes at insertPosition.

    Parameters

    insertPosition : Position

    Position where nodes are inserted.

    howMany : Number

    How many nodes are inserted.

    Returns

    Position

    Transformed position.

  • _getTransformedByMergeOperation( operation ) → Position

    protected inherited

    Returns a copy of this position transformed by merge operation.

    Parameters

    operation : MergeOperation

    Returns

    Position
  • _getTransformedByMove( sourcePosition, targetPosition, howMany ) → Position

    protected inherited

    Returns a copy of this position that is updated by moving howMany nodes from sourcePosition to targetPosition.

    Parameters

    sourcePosition : Position

    Position before the first element to move.

    targetPosition : Position

    Position where moved elements will be inserted.

    howMany : Number

    How many consecutive nodes to move, starting from sourcePosition.

    Returns

    Position

    Transformed position.

  • _getTransformedByMoveOperation( operation ) → Position

    protected inherited

    Returns a copy of this position transformed by a move operation.

    Parameters

    operation : MoveOperation

    Returns

    Position
  • _getTransformedBySplitOperation( operation ) → Position

    protected inherited

    Returns a copy of this position transformed by a split operation.

    Parameters

    operation : SplitOperation

    Returns

    Position

Static methods

Events

  • change( eventInfo, oldPosition )

    Fired when LivePosition instance is changed due to changes on Document.

    Parameters

    eventInfo : EventInfo

    An object containing information about the fired event.

    oldPosition : Position

    Position equal to this live position before it got changed.