/** * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module engine/model/utils/insertcontent */ import Position from '../position'; import LivePosition from '../liveposition'; import Element from '../element'; import Range from '../range'; import DocumentSelection from '../documentselection'; import Selection from '../selection'; import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror'; /** * Inserts content into the editor (specified selection) as one would expect the paste * functionality to work. * * If an instance of {@link module:engine/model/selection~Selection} is passed as `selectable` it will be modified * to the insertion selection (equal to a range to be selected after insertion). * * If `selectable` is not passed, the content will be inserted using the current selection of the model document. * * **Note:** Use {@link module:engine/model/model~Model#insertContent} instead of this function. * This function is only exposed to be reusable in algorithms which change the {@link module:engine/model/model~Model#insertContent} * method's behavior. * * @param {module:engine/model/model~Model} model The model in context of which the insertion * should be performed. * @param {module:engine/model/documentfragment~DocumentFragment|module:engine/model/item~Item} content The content to insert. * @param {module:engine/model/selection~Selectable} [selectable=model.document.selection] * Selection into which the content should be inserted. * @param {Number|'before'|'end'|'after'|'on'|'in'} [placeOrOffset] Sets place or offset of the selection. * @returns {module:engine/model/range~Range} Range which contains all the performed changes. This is a range that, if removed, * would return the model to the state before the insertion. If no changes were preformed by `insertContent`, returns a range collapsed * at the insertion position. */ export default function insertContent( model, content, selectable, placeOrOffset ) { return model.change( writer => { let selection; if ( !selectable ) { selection = model.document.selection; } else if ( selectable instanceof Selection || selectable instanceof DocumentSelection ) { selection = selectable; } else { selection = writer.createSelection( selectable, placeOrOffset ); } if ( !selection.isCollapsed ) { model.deleteContent( selection, { doNotAutoparagraph: true } ); } const insertion = new Insertion( model, writer, selection.anchor ); let nodesToInsert; if ( content.is( 'documentFragment' ) ) { nodesToInsert = content.getChildren(); } else { nodesToInsert = [ content ]; } insertion.handleNodes( nodesToInsert, { // The set of children being inserted is the only set in this context // so it's the first and last (it's a hack ;)). isFirst: true, isLast: true } ); const newRange = insertion.getSelectionRange(); /* istanbul ignore else */ if ( newRange ) { if ( selection instanceof DocumentSelection ) { writer.setSelection( newRange ); } else { selection.setTo( newRange ); } } else { // We are not testing else because it's a safe check for unpredictable edge cases: // an insertion without proper range to select. // // @if CK_DEBUG // console.warn( 'Cannot determine a proper selection range after insertion.' ); } const affectedRange = insertion.getAffectedRange() || model.createRange( selection.anchor ); insertion.destroy(); return affectedRange; } ); } /** * Utility class for performing content insertion. * * @private */ class Insertion { constructor( model, writer, position ) { /** * The model in context of which the insertion should be performed. * * @member {module:engine/model~Model} #model */ this.model = model; /** * Batch to which operations will be added. * * @member {module:engine/controller/writer~Batch} #writer */ this.writer = writer; /** * The position at which (or near which) the next node will be inserted. * * @member {module:engine/model/position~Position} #position */ this.position = position; /** * Elements with which the inserted elements can be merged. * *
x^
y
+z
(can merge tox
) *x
^y
+z
(can merge toy
) *x^y
+z
(can merge toxy
which will be split during the action, * so both its pieces will be added to this set) * * * @member {Set} #canMergeWith */ this.canMergeWith = new Set( [ this.position.parent ] ); /** * Schema of the model. * * @member {module:engine/model/schema~Schema} #schema */ this.schema = model.schema; this._filterAttributesOf = []; /** * Beginning of the affected range. See {@link module:engine/model/utils/insertcontent~Insertion#getAffectedRange}. * * @private * @member {module:engine/model/liveposition~LivePosition|null} #_affectedStart */ this._affectedStart = null; /** * End of the affected range. See {@link module:engine/model/utils/insertcontent~Insertion#getAffectedRange}. * * @private * @member {module:engine/model/liveposition~LivePosition|null} #_affectedEnd */ this._affectedEnd = null; } /** * Handles insertion of a set of nodes. * * @param {Iterable.x^
+y
=>x
y
=>xy[]
// and: //x^y
+z
=>x
^y
+z
=>x
z
y
=>xz[]y
// but: //x
^
z
+y
=>x
y
z
(no merging) //x
[z
+y
=>x
y
z
(no merging, note: after running deleteContents // it's exactly the same case as above) this._mergeSiblingsOf( node, context ); } /** * @private * @param {module:engine/model/element~Element} node The object element. * @param {Object} context */ _handleObject( node, context ) { // Try finding it a place in the tree. if ( this._checkAndSplitToAllowedPosition( node ) ) { this._insert( node ); } // Try autoparagraphing. else { this._tryAutoparagraphing( node, context ); } } /** * @private * @param {module:engine/model/node~Node} node The disallowed node which needs to be handled. * @param {Object} context */ _handleDisallowedNode( node, context ) { // If the node is an element, try inserting its children (strip the parent). if ( node.is( 'element' ) ) { this.handleNodes( node.getChildren(), context ); } // If text is not allowed, try autoparagraphing it. else { this._tryAutoparagraphing( node, context ); } } /** * @private * @param {module:engine/model/node~Node} node The node to insert. */ _insert( node ) { /* istanbul ignore if */ if ( !this.schema.checkChild( this.position, node ) ) { // Algorithm's correctness check. We should never end up here but it's good to know that we did. // Note that it would often be a silent issue if we insert node in a place where it's not allowed. /** * Given node cannot be inserted on the given position. * * @error insertcontent-wrong-position * @param {module:engine/model/node~Node} node Node to insert. * @param {module:engine/model/position~Position} position Position to insert the node at. */ throw new CKEditorError( 'insertcontent-wrong-position: Given node cannot be inserted on the given position.', this, { node, position: this.position } ); } const livePos = LivePosition.fromPosition( this.position, 'toNext' ); this._setAffectedBoundaries( this.position ); this.writer.insert( node, this.position ); this.position = livePos.toPosition(); livePos.detach(); // The last inserted object should be selected because we can't put a collapsed selection after it. if ( this.schema.isObject( node ) && !this.schema.checkChild( this.position, '$text' ) ) { this.nodeToSelect = node; } else { this.nodeToSelect = null; } this._filterAttributesOf.push( node ); } /** * Sets `_affectedStart` and `_affectedEnd` to the given `position`. Should be used before a change is done during insertion process to * mark the affected range. * * This method is used before inserting a node or splitting a parent node. `_affectedStart` and `_affectedEnd` are also changed * during merging, but the logic there is more complicated so it is left out of this function. * * @private * @param {module:engine/model/position~Position} position */ _setAffectedBoundaries( position ) { // Set affected boundaries stickiness so that those position will "expand" when something is inserted in between them: //x
[]y
=>x[]
y
this.position = Position._createAt( mergePosRight.nodeBefore, 'end' ); // OK:xx[]
+yy
=>xx[]yy
(when sticks to previous) // NOK:xx[]
+yy
=>xxyy[]
(when sticks to next) const livePosition = LivePosition.fromPosition( this.position, 'toPrevious' ); // See comment above on moving `_affectedStart`. if ( this._affectedEnd.isEqual( mergePosRight ) ) { this._affectedEnd.detach(); this._affectedEnd = LivePosition._createAt( mergePosRight.nodeBefore, 'end', 'toNext' ); } this.writer.merge( mergePosRight ); // See comment above on moving `_affectedStart`. if ( mergePosRight.getShiftedBy( -1 ).isEqual( this._affectedStart ) && context.isFirst ) { this._affectedStart.detach(); this._affectedStart = LivePosition._createAt( mergePosRight.nodeBefore, 0, 'toPrevious' ); } this.position = livePosition.toPosition(); livePosition.detach(); } if ( mergeLeft || mergeRight ) { // After merge elements that were marked by _insert() to be filtered might be gone so // we need to mark the new container. this._filterAttributesOf.push( this.position.parent ); } mergePosLeft.detach(); mergePosRight.detach(); } /** * Checks whether specified node can be merged with previous sibling element. * * @private * @param {module:engine/model/node~Node} node The node which could potentially be merged. * @param {Object} context * @returns {Boolean} */ _canMergeLeft( node, context ) { const previousSibling = node.previousSibling; return context.isFirst && ( previousSibling instanceof Element ) && this.canMergeWith.has( previousSibling ) && this.model.schema.checkMerge( previousSibling, node ); } /** * Checks whether specified node can be merged with next sibling element. * * @private * @param {module:engine/model/node~Node} node The node which could potentially be merged. * @param {Object} context * @returns {Boolean} */ _canMergeRight( node, context ) { const nextSibling = node.nextSibling; return context.isLast && ( nextSibling instanceof Element ) && this.canMergeWith.has( nextSibling ) && this.model.schema.checkMerge( node, nextSibling ); } /** * Tries wrapping the node in a new paragraph and inserting it this way. * * @private * @param {module:engine/model/node~Node} node The node which needs to be autoparagraphed. * @param {Object} context */ _tryAutoparagraphing( node, context ) { const paragraph = this.writer.createElement( 'paragraph' ); // Do not autoparagraph if the paragraph won't be allowed there, // cause that would lead to an infinite loop. The paragraph would be rejected in // the next _handleNode() call and we'd be here again. if ( this._getAllowedIn( paragraph, this.position.parent ) && this.schema.checkChild( paragraph, node ) ) { paragraph._appendChild( node ); this._handleNode( paragraph, context ); } } /** * @private * @param {module:engine/model/node~Node} node * @returns {Boolean} Whether an allowed position was found. * `false` is returned if the node isn't allowed at any position up in the tree, `true` if was. */ _checkAndSplitToAllowedPosition( node ) { const allowedIn = this._getAllowedIn( node, this.position.parent ); if ( !allowedIn ) { return false; } while ( allowedIn != this.position.parent ) { // If a parent which we'd need to leave is a limit element, break. if ( this.schema.isLimit( this.position.parent ) ) { return false; } if ( this.position.isAtStart ) { // If insertion position is at the beginning of the parent, move it out instead of splitting. //^Foo
-> ^Foo
const parent = this.position.parent; this.position = this.writer.createPositionBefore( parent ); // Special case – parent is empty (^
). // // 1. parent.isEmpty // We can remove the element after moving insertion position out of it. // // 2. parent.parent === allowedIn // However parent should remain in place when allowed element is above limit element in document tree. // For example there shouldn't be allowed to remove empty paragraph from tableCell, when is pasted // content allowed in $root. if ( parent.isEmpty && parent.parent === allowedIn ) { this.writer.remove( parent ); } } else if ( this.position.isAtEnd ) { // If insertion position is at the end of the parent, move it out instead of splitting. //Foo^
->Foo
^ this.position = this.writer.createPositionAfter( this.position.parent ); } else { const tempPos = this.writer.createPositionAfter( this.position.parent ); this._setAffectedBoundaries( this.position ); this.writer.split( this.position ); this.position = tempPos; this.canMergeWith.add( this.position.nodeAfter ); } } return true; } /** * Gets the element in which the given node is allowed. It checks the passed element and all its ancestors. * * @private * @param {module:engine/model/node~Node} node The node to check. * @param {module:engine/model/element~Element} element The element in which the node's correctness should be checked. * @returns {module:engine/model/element~Element|null} */ _getAllowedIn( node, element ) { if ( this.schema.checkChild( element, node ) ) { return element; } if ( element.parent ) { return this._getAllowedIn( node, element.parent ); } return null; } }