Class Operation

Represents an operation in the operational transformation.

Constructors

Properties

baseLength: number = 0

The expected length of the document before applied.

operations: BasicOperation[] = []

Array of basic operations.

targetLength: number = 0

The expected length of the document after applied.

Methods

  • Adds a delete operation to the operation.

    Parameters

    • n: number

      The number of characters to delete.

    Returns this

    The updated operation.

  • Adds an insert operation to the operation.

    Parameters

    • str: string

      The string to insert.

    Returns this

    The updated operation.

  • Adds a retain operation to the operation.

    Parameters

    • n: number

      The number of characters to retain.

    Returns this

    The updated operation.

  • Applies the operation to a document.

    Parameters

    • doc: string

      The document to apply the operation to.

    Returns string

    The modified document.

    If the operation's base length is not equal to the document's length.

    If the operation's target length is not equal to the document's length.

  • Returns the inverse of this that apply(apply(doc, this), inverse) === doc. Note that the argument doc should be original doc, not the result of apply(doc, this).

    Parameters

    • doc: string

      The original document.

    Returns Operation

    The inverse of this.

  • Returns a merged Operation equal to a + b. Formally, apply(apply(doc, a), b) = apply(doc, compose(a, b)).

    a and b should be sequential operations, not concurrent.

    Parameters

    Returns Operation

    The merged Operation.

  • Creates an Operation object from an array of BasicOperation objects.

    Parameters

    Returns Operation

    The created Operation object.

  • Takes two operations a and b that happened concurrently and produces two operations a' and b' such that apply(apply(doc, a), b') = apply(apply(doc, b), a').

    a and b should be concurrent operations, not sequential.

    This function is commutative, i.e. transform(a, b) === transform(b, a).reverse().

    Parameters

    Returns [Operation, Operation]

    The transformed operations [a', b'].