| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /**
- * @module enter/softbreakcommand
- */
- import Command from '@ckeditor/ckeditor5-core/src/command';
- /**
- * Soft break command.
- *
- * @extends module:core/command~Command
- */
- export default class SoftBreakCommand extends Command {
- /**
- * @inheritDoc
- */
- execute() {
- const model = this.editor.model;
- const doc = model.document;
- model.change( writer => {
- softBreakAction( this.editor.model, writer, doc.selection, model.schema );
- this.fire( 'afterExecute', { writer } );
- } );
- }
- }
- // Creates a new block in the way that the <kbd>Enter</kbd> key is expected to work.
- //
- // @param {module:engine/model~Model} model
- // @param {module:engine/model/writer~Writer} writer
- // @param {module:engine/model/selection~Selection|module:engine/model/documentselection~DocumentSelection} selection
- // Selection on which the action should be performed.
- // @param {module:engine/model/schema~Schema} schema
- function softBreakAction( model, writer, selection, schema ) {
- const isSelectionEmpty = selection.isCollapsed;
- const range = selection.getFirstRange();
- const startElement = range.start.parent;
- const endElement = range.end.parent;
- // Don't touch the roots and other limit elements.
- if ( schema.isLimit( startElement ) || schema.isLimit( endElement ) ) {
- // Delete the selected content but only if inside a single limit element.
- // Abort, when crossing limit elements boundary (e.g. <limit1>x[x</limit1>donttouchme<limit2>y]y</limit2>).
- // This is an edge case and it's hard to tell what should actually happen because such a selection
- // is not entirely valid.
- if ( !isSelectionEmpty && startElement == endElement ) {
- model.deleteContent( selection );
- }
- return;
- }
- if ( isSelectionEmpty ) {
- insertBreak( writer, selection, range.end );
- } else {
- const leaveUnmerged = !( range.start.isAtStart && range.end.isAtEnd );
- const isContainedWithinOneElement = ( startElement == endElement );
- model.deleteContent( selection, { leaveUnmerged } );
- if ( leaveUnmerged ) {
- // Partially selected elements.
- //
- // <h>x[xx]x</h> -> <h>x^x</h> -> <h>x</h><h>^x</h>
- if ( isContainedWithinOneElement ) {
- insertBreak( writer, selection, selection.focus );
- }
- // Selection over multiple elements.
- //
- // <h>x[x</h><p>y]y<p> -> <h>x^</h><p>y</p> -> <h>x</h><p>^y</p>
- else {
- writer.setSelection( endElement, 0 );
- }
- }
- }
- }
- function insertBreak( writer, selection, position ) {
- const newBreak = writer.createElement( 'br' );
- if ( position.isAtEnd ) {
- // If the position is at the end of the element then insert the break at the end
- writer.insert( newBreak, position, 'after' );
- writer.setSelection( newBreak, 'after' );
- } else if ( position.isAtStart ) {
- // If the position is at the start of element, insert break at start
- writer.insert( newBreak, position, 'before' );
- writer.setSelection( newBreak, 'after' );
- } else {
- writer.insert( newBreak, position, 'end' );
- writer.setSelection( newBreak, 'after' );
- }
- }
|