| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * @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 paragraph/insertparagraphcommand
- */
- import Command from '@ckeditor/ckeditor5-core/src/command';
- /**
- * The insert paragraph command. It inserts a new paragraph at a specific
- * {@link module:engine/model/position~Position document position}.
- *
- * // Insert a new paragraph before an element in the document.
- * editor.execute( 'insertParagraph', {
- * position: editor.model.createPositionBefore( element )
- * } );
- *
- * **Note**: This command moves the selection to the inserted paragraph.
- *
- * @extends module:core/command~Command
- */
- export default class InsertParagraphCommand extends Command {
- /**
- * Executes the command.
- *
- * @param {Object} options Options for the executed command.
- * @param {module:engine/model/position~Position} options.position The model position at which
- * the new paragraph will be inserted.
- * @fires execute
- */
- execute( options ) {
- const model = this.editor.model;
- if ( !model.schema.checkChild( options.position, 'paragraph' ) ) {
- return;
- }
- model.change( writer => {
- const paragraph = writer.createElement( 'paragraph' );
- model.insertContent( paragraph, options.position );
- writer.setSelection( paragraph, 'in' );
- } );
- }
- }
|