@ckeditor/ckeditor5-engine
Version:
The editing engine of CKEditor 5 – the best browser-based rich text editor.
101 lines (100 loc) • 3.8 kB
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module engine/model/operation/mergeoperation
*/
import Operation from './operation.js';
import Position from '../position.js';
import Range from '../range.js';
import type Document from '../document.js';
import type { Selectable } from '../selection.js';
/**
* Operation to merge two {@link module:engine/model/element~Element elements}.
*
* The merged element is the parent of {@link ~MergeOperation#sourcePosition} and it is merged into the parent of
* {@link ~MergeOperation#targetPosition}. All nodes from the merged element are moved to {@link ~MergeOperation#targetPosition}.
*
* The merged element is moved to the graveyard at {@link ~MergeOperation#graveyardPosition}.
*/
export default class MergeOperation extends Operation {
/**
* Position inside the merged element. All nodes from that element after that position will be moved to {@link #targetPosition}.
*/
sourcePosition: Position;
/**
* Summary offset size of nodes which will be moved from the merged element to the new parent.
*/
howMany: number;
/**
* Position which the nodes from the merged elements will be moved to.
*/
targetPosition: Position;
/**
* Position in graveyard to which the merged element will be moved.
*/
graveyardPosition: Position;
/**
* Creates a merge operation.
*
* @param sourcePosition Position inside the merged element. All nodes from that
* element after that position will be moved to {@link #targetPosition}.
* @param howMany Summary offset size of nodes which will be moved from the merged element to the new parent.
* @param targetPosition Position which the nodes from the merged elements will be moved to.
* @param graveyardPosition Position in graveyard to which the merged element will be moved.
* @param baseVersion Document {@link module:engine/model/document~Document#version} on which operation
* can be applied or `null` if the operation operates on detached (non-document) tree.
*/
constructor(sourcePosition: Position, howMany: number, targetPosition: Position, graveyardPosition: Position, baseVersion: number | null);
/**
* @inheritDoc
*/
get type(): 'merge';
/**
* Position before the merged element (which will be deleted).
*/
get deletionPosition(): Position;
/**
* Artificial range that contains all the nodes from the merged element that will be moved to {@link ~MergeOperation#sourcePosition}.
* The range starts at {@link ~MergeOperation#sourcePosition} and ends in the same parent, at `POSITIVE_INFINITY` offset.
*/
get movedRange(): Range;
/**
* @inheritDoc
*/
get affectedSelectable(): Selectable;
/**
* Creates and returns an operation that has the same parameters as this operation.
*/
clone(): MergeOperation;
/**
* See {@link module:engine/model/operation/operation~Operation#getReversed `Operation#getReversed()`}.
*/
getReversed(): Operation;
/**
* @inheritDoc
* @internal
*/
_validate(): void;
/**
* @inheritDoc
* @internal
*/
_execute(): void;
/**
* @inheritDoc
*/
toJSON(): unknown;
/**
* @inheritDoc
*/
static get className(): string;
/**
* Creates `MergeOperation` object from deserialized object, i.e. from parsed JSON string.
*
* @param json Deserialized JSON object.
* @param document Document on which this operation will be applied.
*/
static fromJSON(json: any, document: Document): MergeOperation;
}