| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- import Delta from './delta.js';
- import RemoveDelta from './removedelta.js';
- import { register } from '../batch-base.js';
- import InsertOperation from '../operation/insertoperation.js';
- /**
- * @classdesc
- * To provide specific OT behavior and better collisions solving, the {@link core.treeModel.Batch#insert Batch#insert} method
- * uses the `InsertDelta` class which inherits from the `Delta` class and may overwrite some methods.
- *
- * @memberOf core.treeModel.delta
- */
- export default class InsertDelta extends Delta {
- /**
- * Position where the delta inserts nodes or `null` if there are no operations in the delta.
- *
- * @type {core.treeModel.Position|null}
- */
- get position() {
- return this._insertOperation ? this._insertOperation.position : null;
- }
- /**
- * Node list containing all the nodes inserted by the delta or `null` if there are no operations in the delta.
- *
- * @type {core.treeModel.NodeList|null}
- */
- get nodeList() {
- return this._insertOperation ? this._insertOperation.nodeList : null;
- }
- /**
- * Insert operation that is saved in this delta or `null` if there are no operations in the delta.
- *
- * @protected
- * @type {core.treeModel.operation.InsertOperation|null}
- */
- get _insertOperation() {
- return this.operations[ 0 ] || null;
- }
- /**
- * @see core.treeModel.delta.Delta#_reverseDeltaClass
- * @private
- * @type {Object}
- */
- get _reverseDeltaClass() {
- return RemoveDelta;
- }
- }
- /**
- * Inserts a node or nodes at the given position.
- *
- * @chainable
- * @method core.treeModel.Batch#insert
- * @param {core.treeModel.Position} position Position of insertion.
- * @param {core.treeModel.NodeSet} nodes The list of nodes to be inserted.
- * List of nodes can be of any type accepted by the {@link core.treeModel.NodeList} constructor.
- */
- register( 'insert', function( position, nodes ) {
- const delta = new InsertDelta();
- const insert = new InsertOperation( position, nodes, this.doc.version );
- delta.addOperation( insert );
- this.doc.applyOperation( insert );
- this.addDelta( delta );
- return this;
- } );
|