| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /**
- * @module engine/view/domconverter
- */
- /* globals document, Node, NodeFilter, Text */
- import ViewText from './text';
- import ViewElement from './element';
- import ViewPosition from './position';
- import ViewRange from './range';
- import ViewSelection from './selection';
- import ViewDocumentFragment from './documentfragment';
- import ViewTreeWalker from './treewalker';
- import { BR_FILLER, INLINE_FILLER_LENGTH, isBlockFiller, isInlineFiller, startsWithFiller, getDataWithoutFiller } from './filler';
- import global from '@ckeditor/ckeditor5-utils/src/dom/global';
- import indexOf from '@ckeditor/ckeditor5-utils/src/dom/indexof';
- import getAncestors from '@ckeditor/ckeditor5-utils/src/dom/getancestors';
- import getCommonAncestor from '@ckeditor/ckeditor5-utils/src/dom/getcommonancestor';
- import isText from '@ckeditor/ckeditor5-utils/src/dom/istext';
- import { isElement } from 'lodash-es';
- /**
- * DomConverter is a set of tools to do transformations between DOM nodes and view nodes. It also handles
- * {@link module:engine/view/domconverter~DomConverter#bindElements binding} these nodes.
- *
- * DomConverter does not check which nodes should be rendered (use {@link module:engine/view/renderer~Renderer}), does not keep a
- * state of a tree nor keeps synchronization between tree view and DOM tree (use {@link module:engine/view/document~Document}).
- *
- * DomConverter keeps DOM elements to View element bindings, so when the converter will be destroyed, the binding will
- * be lost. Two converters will keep separate binding maps, so one tree view can be bound with two DOM trees.
- */
- export default class DomConverter {
- /**
- * Creates DOM converter.
- *
- * @param {Object} options Object with configuration options.
- * @param {Function} [options.blockFiller=module:engine/view/filler~BR_FILLER] Block filler creator.
- */
- constructor( options = {} ) {
- // Using WeakMap prevent memory leaks: when the converter will be destroyed all referenced between View and DOM
- // will be removed. Also because it is a *Weak*Map when both view and DOM elements will be removed referenced
- // will be also removed, isn't it brilliant?
- //
- // Yes, PJ. It is.
- //
- // You guys so smart.
- //
- // I've been here. Seen stuff. Afraid of code now.
- /**
- * Block {@link module:engine/view/filler filler} creator, which is used to create all block fillers during the
- * view to DOM conversion and to recognize block fillers during the DOM to view conversion.
- *
- * @readonly
- * @member {Function} module:engine/view/domconverter~DomConverter#blockFiller
- */
- this.blockFiller = options.blockFiller || BR_FILLER;
- /**
- * Tag names of DOM `Element`s which are considered pre-formatted elements.
- *
- * @readonly
- * @member {Array.<String>} module:engine/view/domconverter~DomConverter#preElements
- */
- this.preElements = [ 'pre' ];
- /**
- * Tag names of DOM `Element`s which are considered block elements.
- *
- * @readonly
- * @member {Array.<String>} module:engine/view/domconverter~DomConverter#blockElements
- */
- this.blockElements = [ 'p', 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ];
- /**
- * DOM to View mapping.
- *
- * @private
- * @member {WeakMap} module:engine/view/domconverter~DomConverter#_domToViewMapping
- */
- this._domToViewMapping = new WeakMap();
- /**
- * View to DOM mapping.
- *
- * @private
- * @member {WeakMap} module:engine/view/domconverter~DomConverter#_viewToDomMapping
- */
- this._viewToDomMapping = new WeakMap();
- /**
- * Holds mapping between fake selection containers and corresponding view selections.
- *
- * @private
- * @member {WeakMap} module:engine/view/domconverter~DomConverter#_fakeSelectionMapping
- */
- this._fakeSelectionMapping = new WeakMap();
- }
- /**
- * Binds given DOM element that represents fake selection to {@link module:engine/view/documentselection~DocumentSelection
- * document selection}. Document selection copy is stored and can be retrieved by
- * {@link module:engine/view/domconverter~DomConverter#fakeSelectionToView} method.
- *
- * @param {HTMLElement} domElement
- * @param {module:engine/view/documentselection~DocumentSelection} viewDocumentSelection
- */
- bindFakeSelection( domElement, viewDocumentSelection ) {
- this._fakeSelectionMapping.set( domElement, new ViewSelection( viewDocumentSelection ) );
- }
- /**
- * Returns {@link module:engine/view/selection~Selection view selection} instance corresponding to
- * given DOM element that represents fake selection. Returns `undefined` if binding to given DOM element does not exists.
- *
- * @param {HTMLElement} domElement
- * @returns {module:engine/view/selection~Selection|undefined}
- */
- fakeSelectionToView( domElement ) {
- return this._fakeSelectionMapping.get( domElement );
- }
- /**
- * Binds DOM and View elements, so it will be possible to get corresponding elements using
- * {@link module:engine/view/domconverter~DomConverter#mapDomToView} and
- * {@link module:engine/view/domconverter~DomConverter#mapViewToDom}.
- *
- * @param {HTMLElement} domElement DOM element to bind.
- * @param {module:engine/view/element~Element} viewElement View element to bind.
- */
- bindElements( domElement, viewElement ) {
- this._domToViewMapping.set( domElement, viewElement );
- this._viewToDomMapping.set( viewElement, domElement );
- }
- /**
- * Unbinds given `domElement` from the view element it was bound to. Unbinding is deep, meaning that all children of
- * `domElement` will be unbound too.
- *
- * @param {HTMLElement} domElement DOM element to unbind.
- */
- unbindDomElement( domElement ) {
- const viewElement = this._domToViewMapping.get( domElement );
- if ( viewElement ) {
- this._domToViewMapping.delete( domElement );
- this._viewToDomMapping.delete( viewElement );
- // Use Array.from because of MS Edge (#923).
- for ( const child of Array.from( domElement.childNodes ) ) {
- this.unbindDomElement( child );
- }
- }
- }
- /**
- * Binds DOM and View document fragments, so it will be possible to get corresponding document fragments using
- * {@link module:engine/view/domconverter~DomConverter#mapDomToView} and
- * {@link module:engine/view/domconverter~DomConverter#mapViewToDom}.
- *
- * @param {DocumentFragment} domFragment DOM document fragment to bind.
- * @param {module:engine/view/documentfragment~DocumentFragment} viewFragment View document fragment to bind.
- */
- bindDocumentFragments( domFragment, viewFragment ) {
- this._domToViewMapping.set( domFragment, viewFragment );
- this._viewToDomMapping.set( viewFragment, domFragment );
- }
- /**
- * Converts view to DOM. For all text nodes, not bound elements and document fragments new items will
- * be created. For bound elements and document fragments function will return corresponding items.
- *
- * @param {module:engine/view/node~Node|module:engine/view/documentfragment~DocumentFragment} viewNode
- * View node or document fragment to transform.
- * @param {Document} domDocument Document which will be used to create DOM nodes.
- * @param {Object} [options] Conversion options.
- * @param {Boolean} [options.bind=false] Determines whether new elements will be bound.
- * @param {Boolean} [options.withChildren=true] If `true`, node's and document fragment's children will be converted too.
- * @returns {Node|DocumentFragment} Converted node or DocumentFragment.
- */
- viewToDom( viewNode, domDocument, options = {} ) {
- if ( viewNode.is( 'text' ) ) {
- const textData = this._processDataFromViewText( viewNode );
- return domDocument.createTextNode( textData );
- } else {
- if ( this.mapViewToDom( viewNode ) ) {
- return this.mapViewToDom( viewNode );
- }
- let domElement;
- if ( viewNode.is( 'documentFragment' ) ) {
- // Create DOM document fragment.
- domElement = domDocument.createDocumentFragment();
- if ( options.bind ) {
- this.bindDocumentFragments( domElement, viewNode );
- }
- } else if ( viewNode.is( 'uiElement' ) ) {
- // UIElement has its own render() method (see #799).
- domElement = viewNode.render( domDocument );
- if ( options.bind ) {
- this.bindElements( domElement, viewNode );
- }
- return domElement;
- } else {
- // Create DOM element.
- domElement = domDocument.createElement( viewNode.name );
- if ( options.bind ) {
- this.bindElements( domElement, viewNode );
- }
- // Copy element's attributes.
- for ( const key of viewNode.getAttributeKeys() ) {
- domElement.setAttribute( key, viewNode.getAttribute( key ) );
- }
- }
- if ( options.withChildren || options.withChildren === undefined ) {
- for ( const child of this.viewChildrenToDom( viewNode, domDocument, options ) ) {
- domElement.appendChild( child );
- }
- }
- return domElement;
- }
- }
- /**
- * Converts children of the view element to DOM using the
- * {@link module:engine/view/domconverter~DomConverter#viewToDom} method.
- * Additionally, this method adds block {@link module:engine/view/filler filler} to the list of children, if needed.
- *
- * @param {module:engine/view/element~Element|module:engine/view/documentfragment~DocumentFragment} viewElement Parent view element.
- * @param {Document} domDocument Document which will be used to create DOM nodes.
- * @param {Object} options See {@link module:engine/view/domconverter~DomConverter#viewToDom} options parameter.
- * @returns {Iterable.<Node>} DOM nodes.
- */
- * viewChildrenToDom( viewElement, domDocument, options = {} ) {
- const fillerPositionOffset = viewElement.getFillerOffset && viewElement.getFillerOffset();
- let offset = 0;
- for ( const childView of viewElement.getChildren() ) {
- if ( fillerPositionOffset === offset ) {
- yield this.blockFiller( domDocument );
- }
- yield this.viewToDom( childView, domDocument, options );
- offset++;
- }
- if ( fillerPositionOffset === offset ) {
- yield this.blockFiller( domDocument );
- }
- }
- /**
- * Converts view {@link module:engine/view/range~Range} to DOM range.
- * Inline and block {@link module:engine/view/filler fillers} are handled during the conversion.
- *
- * @param {module:engine/view/range~Range} viewRange View range.
- * @returns {Range} DOM range.
- */
- viewRangeToDom( viewRange ) {
- const domStart = this.viewPositionToDom( viewRange.start );
- const domEnd = this.viewPositionToDom( viewRange.end );
- const domRange = document.createRange();
- domRange.setStart( domStart.parent, domStart.offset );
- domRange.setEnd( domEnd.parent, domEnd.offset );
- return domRange;
- }
- /**
- * Converts view {@link module:engine/view/position~Position} to DOM parent and offset.
- *
- * Inline and block {@link module:engine/view/filler fillers} are handled during the conversion.
- * If the converted position is directly before inline filler it is moved inside the filler.
- *
- * @param {module:engine/view/position~Position} viewPosition View position.
- * @returns {Object|null} position DOM position or `null` if view position could not be converted to DOM.
- * @returns {Node} position.parent DOM position parent.
- * @returns {Number} position.offset DOM position offset.
- */
- viewPositionToDom( viewPosition ) {
- const viewParent = viewPosition.parent;
- if ( viewParent.is( 'text' ) ) {
- const domParent = this.findCorrespondingDomText( viewParent );
- if ( !domParent ) {
- // Position is in a view text node that has not been rendered to DOM yet.
- return null;
- }
- let offset = viewPosition.offset;
- if ( startsWithFiller( domParent ) ) {
- offset += INLINE_FILLER_LENGTH;
- }
- return { parent: domParent, offset };
- } else {
- // viewParent is instance of ViewElement.
- let domParent, domBefore, domAfter;
- if ( viewPosition.offset === 0 ) {
- domParent = this.mapViewToDom( viewParent );
- if ( !domParent ) {
- // Position is in a view element that has not been rendered to DOM yet.
- return null;
- }
- domAfter = domParent.childNodes[ 0 ];
- } else {
- const nodeBefore = viewPosition.nodeBefore;
- domBefore = nodeBefore.is( 'text' ) ?
- this.findCorrespondingDomText( nodeBefore ) :
- this.mapViewToDom( viewPosition.nodeBefore );
- if ( !domBefore ) {
- // Position is after a view element that has not been rendered to DOM yet.
- return null;
- }
- domParent = domBefore.parentNode;
- domAfter = domBefore.nextSibling;
- }
- // If there is an inline filler at position return position inside the filler. We should never return
- // the position before the inline filler.
- if ( isText( domAfter ) && startsWithFiller( domAfter ) ) {
- return { parent: domAfter, offset: INLINE_FILLER_LENGTH };
- }
- const offset = domBefore ? indexOf( domBefore ) + 1 : 0;
- return { parent: domParent, offset };
- }
- }
- /**
- * Converts DOM to view. For all text nodes, not bound elements and document fragments new items will
- * be created. For bound elements and document fragments function will return corresponding items. For
- * {@link module:engine/view/filler fillers} `null` will be returned.
- * For all DOM elements rendered by {@link module:engine/view/uielement~UIElement} that UIElement will be returned.
- *
- * @param {Node|DocumentFragment} domNode DOM node or document fragment to transform.
- * @param {Object} [options] Conversion options.
- * @param {Boolean} [options.bind=false] Determines whether new elements will be bound.
- * @param {Boolean} [options.withChildren=true] If `true`, node's and document fragment's children will be converted too.
- * @param {Boolean} [options.keepOriginalCase=false] If `false`, node's tag name will be converter to lower case.
- * @returns {module:engine/view/node~Node|module:engine/view/documentfragment~DocumentFragment|null} Converted node or document fragment
- * or `null` if DOM node is a {@link module:engine/view/filler filler} or the given node is an empty text node.
- */
- domToView( domNode, options = {} ) {
- if ( isBlockFiller( domNode, this.blockFiller ) ) {
- return null;
- }
- // When node is inside UIElement return that UIElement as it's view representation.
- const uiElement = this.getParentUIElement( domNode, this._domToViewMapping );
- if ( uiElement ) {
- return uiElement;
- }
- if ( isText( domNode ) ) {
- if ( isInlineFiller( domNode ) ) {
- return null;
- } else {
- const textData = this._processDataFromDomText( domNode );
- return textData === '' ? null : new ViewText( textData );
- }
- } else if ( this.isComment( domNode ) ) {
- return null;
- } else {
- if ( this.mapDomToView( domNode ) ) {
- return this.mapDomToView( domNode );
- }
- let viewElement;
- if ( this.isDocumentFragment( domNode ) ) {
- // Create view document fragment.
- viewElement = new ViewDocumentFragment();
- if ( options.bind ) {
- this.bindDocumentFragments( domNode, viewElement );
- }
- } else {
- // Create view element.
- const viewName = options.keepOriginalCase ? domNode.tagName : domNode.tagName.toLowerCase();
- viewElement = new ViewElement( viewName );
- if ( options.bind ) {
- this.bindElements( domNode, viewElement );
- }
- // Copy element's attributes.
- const attrs = domNode.attributes;
- for ( let i = attrs.length - 1; i >= 0; i-- ) {
- viewElement._setAttribute( attrs[ i ].name, attrs[ i ].value );
- }
- }
- if ( options.withChildren || options.withChildren === undefined ) {
- for ( const child of this.domChildrenToView( domNode, options ) ) {
- viewElement._appendChild( child );
- }
- }
- return viewElement;
- }
- }
- /**
- * Converts children of the DOM element to view nodes using
- * the {@link module:engine/view/domconverter~DomConverter#domToView} method.
- * Additionally this method omits block {@link module:engine/view/filler filler}, if it exists in the DOM parent.
- *
- * @param {HTMLElement} domElement Parent DOM element.
- * @param {Object} options See {@link module:engine/view/domconverter~DomConverter#domToView} options parameter.
- * @returns {Iterable.<module:engine/view/node~Node>} View nodes.
- */
- * domChildrenToView( domElement, options = {} ) {
- for ( let i = 0; i < domElement.childNodes.length; i++ ) {
- const domChild = domElement.childNodes[ i ];
- const viewChild = this.domToView( domChild, options );
- if ( viewChild !== null ) {
- yield viewChild;
- }
- }
- }
- /**
- * Converts DOM selection to view {@link module:engine/view/selection~Selection}.
- * Ranges which cannot be converted will be omitted.
- *
- * @param {Selection} domSelection DOM selection.
- * @returns {module:engine/view/selection~Selection} View selection.
- */
- domSelectionToView( domSelection ) {
- // DOM selection might be placed in fake selection container.
- // If container contains fake selection - return corresponding view selection.
- if ( domSelection.rangeCount === 1 ) {
- let container = domSelection.getRangeAt( 0 ).startContainer;
- // The DOM selection might be moved to the text node inside the fake selection container.
- if ( isText( container ) ) {
- container = container.parentNode;
- }
- const viewSelection = this.fakeSelectionToView( container );
- if ( viewSelection ) {
- return viewSelection;
- }
- }
- const isBackward = this.isDomSelectionBackward( domSelection );
- const viewRanges = [];
- for ( let i = 0; i < domSelection.rangeCount; i++ ) {
- // DOM Range have correct start and end, no matter what is the DOM Selection direction. So we don't have to fix anything.
- const domRange = domSelection.getRangeAt( i );
- const viewRange = this.domRangeToView( domRange );
- if ( viewRange ) {
- viewRanges.push( viewRange );
- }
- }
- return new ViewSelection( viewRanges, { backward: isBackward } );
- }
- /**
- * Converts DOM Range to view {@link module:engine/view/range~Range}.
- * If the start or end position can not be converted `null` is returned.
- *
- * @param {Range} domRange DOM range.
- * @returns {module:engine/view/range~Range|null} View range.
- */
- domRangeToView( domRange ) {
- const viewStart = this.domPositionToView( domRange.startContainer, domRange.startOffset );
- const viewEnd = this.domPositionToView( domRange.endContainer, domRange.endOffset );
- if ( viewStart && viewEnd ) {
- return new ViewRange( viewStart, viewEnd );
- }
- return null;
- }
- /**
- * Converts DOM parent and offset to view {@link module:engine/view/position~Position}.
- *
- * If the position is inside a {@link module:engine/view/filler filler} which has no corresponding view node,
- * position of the filler will be converted and returned.
- *
- * If the position is inside DOM element rendered by {@link module:engine/view/uielement~UIElement}
- * that position will be converted to view position before that UIElement.
- *
- * If structures are too different and it is not possible to find corresponding position then `null` will be returned.
- *
- * @param {Node} domParent DOM position parent.
- * @param {Number} domOffset DOM position offset.
- * @returns {module:engine/view/position~Position} viewPosition View position.
- */
- domPositionToView( domParent, domOffset ) {
- if ( isBlockFiller( domParent, this.blockFiller ) ) {
- return this.domPositionToView( domParent.parentNode, indexOf( domParent ) );
- }
- // If position is somewhere inside UIElement - return position before that element.
- const viewElement = this.mapDomToView( domParent );
- if ( viewElement && viewElement.is( 'uiElement' ) ) {
- return ViewPosition._createBefore( viewElement );
- }
- if ( isText( domParent ) ) {
- if ( isInlineFiller( domParent ) ) {
- return this.domPositionToView( domParent.parentNode, indexOf( domParent ) );
- }
- const viewParent = this.findCorrespondingViewText( domParent );
- let offset = domOffset;
- if ( !viewParent ) {
- return null;
- }
- if ( startsWithFiller( domParent ) ) {
- offset -= INLINE_FILLER_LENGTH;
- offset = offset < 0 ? 0 : offset;
- }
- return new ViewPosition( viewParent, offset );
- }
- // domParent instanceof HTMLElement.
- else {
- if ( domOffset === 0 ) {
- const viewParent = this.mapDomToView( domParent );
- if ( viewParent ) {
- return new ViewPosition( viewParent, 0 );
- }
- } else {
- const domBefore = domParent.childNodes[ domOffset - 1 ];
- const viewBefore = isText( domBefore ) ?
- this.findCorrespondingViewText( domBefore ) :
- this.mapDomToView( domBefore );
- // TODO #663
- if ( viewBefore && viewBefore.parent ) {
- return new ViewPosition( viewBefore.parent, viewBefore.index + 1 );
- }
- }
- return null;
- }
- }
- /**
- * Returns corresponding view {@link module:engine/view/element~Element Element} or
- * {@link module:engine/view/documentfragment~DocumentFragment} for provided DOM element or
- * document fragment. If there is no view item {@link module:engine/view/domconverter~DomConverter#bindElements bound}
- * to the given DOM - `undefined` is returned.
- * For all DOM elements rendered by {@link module:engine/view/uielement~UIElement} that UIElement will be returned.
- *
- * @param {DocumentFragment|Element} domElementOrDocumentFragment DOM element or document fragment.
- * @returns {module:engine/view/element~Element|module:engine/view/documentfragment~DocumentFragment|undefined}
- * Corresponding view element, document fragment or `undefined` if no element was bound.
- */
- mapDomToView( domElementOrDocumentFragment ) {
- return this.getParentUIElement( domElementOrDocumentFragment ) || this._domToViewMapping.get( domElementOrDocumentFragment );
- }
- /**
- * Finds corresponding text node. Text nodes are not {@link module:engine/view/domconverter~DomConverter#bindElements bound},
- * corresponding text node is returned based on the sibling or parent.
- *
- * If the directly previous sibling is a {@link module:engine/view/domconverter~DomConverter#bindElements bound} element, it is used
- * to find the corresponding text node.
- *
- * If this is a first child in the parent and the parent is a {@link module:engine/view/domconverter~DomConverter#bindElements bound}
- * element, it is used to find the corresponding text node.
- *
- * For all text nodes rendered by {@link module:engine/view/uielement~UIElement} that UIElement will be returned.
- *
- * Otherwise `null` is returned.
- *
- * Note that for the block or inline {@link module:engine/view/filler filler} this method returns `null`.
- *
- * @param {Text} domText DOM text node.
- * @returns {module:engine/view/text~Text|null} Corresponding view text node or `null`, if it was not possible to find a
- * corresponding node.
- */
- findCorrespondingViewText( domText ) {
- if ( isInlineFiller( domText ) ) {
- return null;
- }
- // If DOM text was rendered by UIElement - return that element.
- const uiElement = this.getParentUIElement( domText );
- if ( uiElement ) {
- return uiElement;
- }
- const previousSibling = domText.previousSibling;
- // Try to use previous sibling to find the corresponding text node.
- if ( previousSibling ) {
- if ( !( this.isElement( previousSibling ) ) ) {
- // The previous is text or comment.
- return null;
- }
- const viewElement = this.mapDomToView( previousSibling );
- if ( viewElement ) {
- const nextSibling = viewElement.nextSibling;
- // It might be filler which has no corresponding view node.
- if ( nextSibling instanceof ViewText ) {
- return viewElement.nextSibling;
- } else {
- return null;
- }
- }
- }
- // Try to use parent to find the corresponding text node.
- else {
- const viewElement = this.mapDomToView( domText.parentNode );
- if ( viewElement ) {
- const firstChild = viewElement.getChild( 0 );
- // It might be filler which has no corresponding view node.
- if ( firstChild instanceof ViewText ) {
- return firstChild;
- } else {
- return null;
- }
- }
- }
- return null;
- }
- /**
- * Returns corresponding DOM item for provided {@link module:engine/view/element~Element Element} or
- * {@link module:engine/view/documentfragment~DocumentFragment DocumentFragment}.
- * To find a corresponding text for {@link module:engine/view/text~Text view Text instance}
- * use {@link #findCorrespondingDomText}.
- *
- * @param {module:engine/view/element~Element|module:engine/view/documentfragment~DocumentFragment} viewNode
- * View element or document fragment.
- * @returns {Node|DocumentFragment|undefined} Corresponding DOM node or document fragment.
- */
- mapViewToDom( documentFragmentOrElement ) {
- return this._viewToDomMapping.get( documentFragmentOrElement );
- }
- /**
- * Finds corresponding text node. Text nodes are not {@link module:engine/view/domconverter~DomConverter#bindElements bound},
- * corresponding text node is returned based on the sibling or parent.
- *
- * If the directly previous sibling is a {@link module:engine/view/domconverter~DomConverter#bindElements bound} element, it is used
- * to find the corresponding text node.
- *
- * If this is a first child in the parent and the parent is a {@link module:engine/view/domconverter~DomConverter#bindElements bound}
- * element, it is used to find the corresponding text node.
- *
- * Otherwise `null` is returned.
- *
- * @param {module:engine/view/text~Text} viewText View text node.
- * @returns {Text|null} Corresponding DOM text node or `null`, if it was not possible to find a corresponding node.
- */
- findCorrespondingDomText( viewText ) {
- const previousSibling = viewText.previousSibling;
- // Try to use previous sibling to find the corresponding text node.
- if ( previousSibling && this.mapViewToDom( previousSibling ) ) {
- return this.mapViewToDom( previousSibling ).nextSibling;
- }
- // If this is a first node, try to use parent to find the corresponding text node.
- if ( !previousSibling && viewText.parent && this.mapViewToDom( viewText.parent ) ) {
- return this.mapViewToDom( viewText.parent ).childNodes[ 0 ];
- }
- return null;
- }
- /**
- * Focuses DOM editable that is corresponding to provided {@link module:engine/view/editableelement~EditableElement}.
- *
- * @param {module:engine/view/editableelement~EditableElement} viewEditable
- */
- focus( viewEditable ) {
- const domEditable = this.mapViewToDom( viewEditable );
- if ( domEditable && domEditable.ownerDocument.activeElement !== domEditable ) {
- // Save the scrollX and scrollY positions before the focus.
- const { scrollX, scrollY } = global.window;
- const scrollPositions = [];
- // Save all scrollLeft and scrollTop values starting from domEditable up to
- // document#documentElement.
- forEachDomNodeAncestor( domEditable, node => {
- const { scrollLeft, scrollTop } = node;
- scrollPositions.push( [ scrollLeft, scrollTop ] );
- } );
- domEditable.focus();
- // Restore scrollLeft and scrollTop values starting from domEditable up to
- // document#documentElement.
- // https://github.com/ckeditor/ckeditor5-engine/issues/951
- // https://github.com/ckeditor/ckeditor5-engine/issues/957
- forEachDomNodeAncestor( domEditable, node => {
- const [ scrollLeft, scrollTop ] = scrollPositions.shift();
- node.scrollLeft = scrollLeft;
- node.scrollTop = scrollTop;
- } );
- // Restore the scrollX and scrollY positions after the focus.
- // https://github.com/ckeditor/ckeditor5-engine/issues/951
- global.window.scrollTo( scrollX, scrollY );
- }
- }
- /**
- * Returns `true` when `node.nodeType` equals `Node.ELEMENT_NODE`.
- *
- * @param {Node} node Node to check.
- * @returns {Boolean}
- */
- isElement( node ) {
- return node && node.nodeType == Node.ELEMENT_NODE;
- }
- /**
- * Returns `true` when `node.nodeType` equals `Node.DOCUMENT_FRAGMENT_NODE`.
- *
- * @param {Node} node Node to check.
- * @returns {Boolean}
- */
- isDocumentFragment( node ) {
- return node && node.nodeType == Node.DOCUMENT_FRAGMENT_NODE;
- }
- /**
- * Returns `true` when `node.nodeType` equals `Node.COMMENT_NODE`.
- *
- * @param {Node} node Node to check.
- * @returns {Boolean}
- */
- isComment( node ) {
- return node && node.nodeType == Node.COMMENT_NODE;
- }
- /**
- * Returns `true` if given selection is a backward selection, that is, if it's `focus` is before `anchor`.
- *
- * @param {Selection} DOM Selection instance to check.
- * @returns {Boolean}
- */
- isDomSelectionBackward( selection ) {
- if ( selection.isCollapsed ) {
- return false;
- }
- // Since it takes multiple lines of code to check whether a "DOM Position" is before/after another "DOM Position",
- // we will use the fact that range will collapse if it's end is before it's start.
- const range = document.createRange();
- range.setStart( selection.anchorNode, selection.anchorOffset );
- range.setEnd( selection.focusNode, selection.focusOffset );
- const backward = range.collapsed;
- range.detach();
- return backward;
- }
- /**
- * Returns parent {@link module:engine/view/uielement~UIElement} for provided DOM node. Returns `null` if there is no
- * parent UIElement.
- *
- * @param {Node} domNode
- * @returns {module:engine/view/uielement~UIElement|null}
- */
- getParentUIElement( domNode ) {
- const ancestors = getAncestors( domNode );
- // Remove domNode from the list.
- ancestors.pop();
- while ( ancestors.length ) {
- const domNode = ancestors.pop();
- const viewNode = this._domToViewMapping.get( domNode );
- if ( viewNode && viewNode.is( 'uiElement' ) ) {
- return viewNode;
- }
- }
- return null;
- }
- /**
- * Checks if given selection's boundaries are at correct places.
- *
- * The following places are considered as incorrect for selection boundaries:
- * * before or in the middle of the inline filler sequence,
- * * inside the DOM element which represents {@link module:engine/view/uielement~UIElement a view ui element}.
- *
- * @param {Selection} domSelection DOM Selection object to be checked.
- * @returns {Boolean} `true` if the given selection is at a correct place, `false` otherwise.
- */
- isDomSelectionCorrect( domSelection ) {
- return this._isDomSelectionPositionCorrect( domSelection.anchorNode, domSelection.anchorOffset ) &&
- this._isDomSelectionPositionCorrect( domSelection.focusNode, domSelection.focusOffset );
- }
- /**
- * Checks if the given DOM position is a correct place for selection boundary. See {@link #isDomSelectionCorrect}.
- *
- * @private
- * @param {Element} domParent Position parent.
- * @param {Number} offset Position offset.
- * @returns {Boolean} `true` if given position is at a correct place for selection boundary, `false` otherwise.
- */
- _isDomSelectionPositionCorrect( domParent, offset ) {
- // If selection is before or in the middle of inline filler string, it is incorrect.
- if ( isText( domParent ) && startsWithFiller( domParent ) && offset < INLINE_FILLER_LENGTH ) {
- // Selection in a text node, at wrong position (before or in the middle of filler).
- return false;
- }
- if ( this.isElement( domParent ) && startsWithFiller( domParent.childNodes[ offset ] ) ) {
- // Selection in an element node, before filler text node.
- return false;
- }
- const viewParent = this.mapDomToView( domParent );
- // If selection is in `view.UIElement`, it is incorrect. Note that `mapDomToView()` returns `view.UIElement`
- // also for any dom element that is inside the view ui element (so we don't need to perform any additional checks).
- if ( viewParent && viewParent.is( 'uiElement' ) ) {
- return false;
- }
- return true;
- }
- /**
- * Takes text data from a given {@link module:engine/view/text~Text#data} and processes it so
- * it is correctly displayed in the DOM.
- *
- * Following changes are done:
- *
- * * a space at the beginning is changed to ` ` if this is the first text node in its container
- * element or if a previous text node ends with a space character,
- * * space at the end of the text node is changed to ` ` if this is the last text node in its container,
- * * remaining spaces are replaced to a chain of spaces and ` ` (e.g. `'x x'` becomes `'x x'`).
- *
- * Content of {@link #preElements} is not processed.
- *
- * @private
- * @param {module:engine/view/text~Text} node View text node to process.
- * @returns {String} Processed text data.
- */
- _processDataFromViewText( node ) {
- let data = node.data;
- // If any of node ancestors has a name which is in `preElements` array, then currently processed
- // view text node is (will be) in preformatted element. We should not change whitespaces then.
- if ( node.getAncestors().some( parent => this.preElements.includes( parent.name ) ) ) {
- return data;
- }
- // 1. Replace the first space with a nbsp if the previous node ends with a space or there is no previous node
- // (container element boundary).
- if ( data.charAt( 0 ) == ' ' ) {
- const prevNode = this._getTouchingViewTextNode( node, false );
- const prevEndsWithSpace = prevNode && this._nodeEndsWithSpace( prevNode );
- if ( prevEndsWithSpace || !prevNode ) {
- data = '\u00A0' + data.substr( 1 );
- }
- }
- // 2. Replace the last space with a nbsp if this is the last text node (container element boundary).
- if ( data.charAt( data.length - 1 ) == ' ' ) {
- const nextNode = this._getTouchingViewTextNode( node, true );
- if ( !nextNode ) {
- data = data.substr( 0, data.length - 1 ) + '\u00A0';
- }
- }
- return data.replace( / {2}/g, ' \u00A0' );
- }
- /**
- * Checks whether given node ends with a space character after changing appropriate space characters to ` `s.
- *
- * @private
- * @param {module:engine/view/text~Text} node Node to check.
- * @returns {Boolean} `true` if given `node` ends with space, `false` otherwise.
- */
- _nodeEndsWithSpace( node ) {
- if ( node.getAncestors().some( parent => this.preElements.includes( parent.name ) ) ) {
- return false;
- }
- const data = this._processDataFromViewText( node );
- return data.charAt( data.length - 1 ) == ' ';
- }
- /**
- * Takes text data from native `Text` node and processes it to a correct {@link module:engine/view/text~Text view text node} data.
- *
- * Following changes are done:
- *
- * * multiple whitespaces are replaced to a single space,
- * * space at the beginning of a text node is removed if it is the first text node in its container
- * element or if the previous text node ends with a space character,
- * * space at the end of the text node is removed, if it is the last text node in its container.
- *
- * @param {Node} node DOM text node to process.
- * @returns {String} Processed data.
- * @private
- */
- _processDataFromDomText( node ) {
- let data = node.data;
- if ( _hasDomParentOfType( node, this.preElements ) ) {
- return getDataWithoutFiller( node );
- }
- // Change all consecutive whitespace characters (from the [ \n\t\r] set –
- // see https://github.com/ckeditor/ckeditor5-engine/issues/822#issuecomment-311670249) to a single space character.
- // That's how multiple whitespaces are treated when rendered, so we normalize those whitespaces.
- // We're replacing 1+ (and not 2+) to also normalize singular \n\t\r characters (#822).
- data = data.replace( /[ \n\t\r]{1,}/g, ' ' );
- const prevNode = this._getTouchingInlineDomNode( node, false );
- const nextNode = this._getTouchingInlineDomNode( node, true );
- const shouldLeftTrim = this._checkShouldLeftTrimDomText( prevNode );
- const shouldRightTrim = this._checkShouldRightTrimDomText( node, nextNode );
- // If the previous dom text node does not exist or it ends by whitespace character, remove space character from the beginning
- // of this text node. Such space character is treated as a whitespace.
- if ( shouldLeftTrim ) {
- data = data.replace( /^ /, '' );
- }
- // If the next text node does not exist remove space character from the end of this text node.
- if ( shouldRightTrim ) {
- data = data.replace( / $/, '' );
- }
- // At the beginning and end of a block element, Firefox inserts normal space + <br> instead of non-breaking space.
- // This means that the text node starts/end with normal space instead of non-breaking space.
- // This causes a problem because the normal space would be removed in `.replace` calls above. To prevent that,
- // the inline filler is removed only after the data is initially processed (by the `.replace` above). See ckeditor5#692.
- data = getDataWithoutFiller( new Text( data ) );
- // At this point we should have removed all whitespaces from DOM text data.
- // Now we have to change chars, that were in DOM text data because of rendering reasons, to spaces.
- // First, change all ` \u00A0` pairs (space + ) to two spaces. DOM converter changes two spaces from model/view as
- // ` \u00A0` to ensure proper rendering. Since here we convert back, we recognize those pairs and change them
- // to ` ` which is what we expect to have in model/view.
- data = data.replace( / \u00A0/g, ' ' );
- // Then, change character that is at the beginning of the text node to space character.
- // As above, that was created for rendering reasons but it's real meaning is just a space character.
- // We do that replacement only if this is the first node or the previous node ends on whitespace character.
- if ( shouldLeftTrim ) {
- data = data.replace( /^\u00A0/, ' ' );
- }
- // Since input text data could be: `x_ _`, we would not replace the first after `x` character.
- // We have to fix it. Since we already change all ` `, we will have something like this at the end of text data:
- // `x_ _ _` -> `x_ `. Find at the end of string (can be followed only by spaces).
- // We do that replacement only if this is the last node or the next node starts with or is a <br>.
- if ( isText( nextNode ) ? nextNode.data.charAt( 0 ) == '\u00A0' : true ) {
- data = data.replace( /\u00A0( *)$/, ' $1' );
- }
- // At this point, all whitespaces should be removed and all created for rendering reasons should be
- // changed to normal space. All left are inserted intentionally.
- return data;
- }
- /**
- * Helper function which checks if a DOM text node, preceded by the given `prevNode` should
- * be trimmed from the left side.
- *
- * @param {Node} prevNode
- */
- _checkShouldLeftTrimDomText( prevNode ) {
- if ( !prevNode ) {
- return true;
- }
- if ( isElement( prevNode ) ) {
- return true;
- }
- return /[^\S\u00A0]/.test( prevNode.data.charAt( prevNode.data.length - 1 ) );
- }
- /**
- * Helper function which checks if a DOM text node, succeeded by the given `nextNode` should
- * be trimmed from the right side.
- *
- * @param {Node} node
- * @param {Node} prevNode
- */
- _checkShouldRightTrimDomText( node, nextNode ) {
- if ( nextNode ) {
- return false;
- }
- return !startsWithFiller( node );
- }
- /**
- * Helper function. For given {@link module:engine/view/text~Text view text node}, it finds previous or next sibling
- * that is contained in the same container element. If there is no such sibling, `null` is returned.
- *
- * @param {module:engine/view/text~Text} node Reference node.
- * @param {Boolean} getNext
- * @returns {module:engine/view/text~Text|null} Touching text node or `null` if there is no next or previous touching text node.
- */
- _getTouchingViewTextNode( node, getNext ) {
- const treeWalker = new ViewTreeWalker( {
- startPosition: getNext ? ViewPosition._createAfter( node ) : ViewPosition._createBefore( node ),
- direction: getNext ? 'forward' : 'backward'
- } );
- for ( const value of treeWalker ) {
- // ViewContainerElement is found on a way to next ViewText node, so given `node` was first/last
- // text node in its container element.
- if ( value.item.is( 'containerElement' ) ) {
- return null;
- }
- // <br> found – it works like a block boundary, so do not scan further.
- else if ( value.item.is( 'br' ) ) {
- return null;
- }
- // Found a text node in the same container element.
- else if ( value.item.is( 'textProxy' ) ) {
- return value.item;
- }
- }
- return null;
- }
- /**
- * Helper function. For the given text node, it finds the closest touching node which is either
- * a text node or a `<br>`. The search is terminated at block element boundaries and if a matching node
- * wasn't found so far, `null` is returned.
- *
- * In the following DOM structure:
- *
- * <p>foo<b>bar</b><br>bom</p>
- *
- * * `foo` doesn't have its previous touching inline node (`null` is returned),
- * * `foo`'s next touching inline node is `bar`
- * * `bar`'s next touching inline node is `<br>`
- *
- * This method returns text nodes and `<br>` elements because these types of nodes affect how
- * spaces in the given text node need to be converted.
- *
- * @private
- * @param {Text} node
- * @param {Boolean} getNext
- * @returns {Text|Element|null}
- */
- _getTouchingInlineDomNode( node, getNext ) {
- if ( !node.parentNode ) {
- return null;
- }
- const direction = getNext ? 'nextNode' : 'previousNode';
- const document = node.ownerDocument;
- const topmostParent = getAncestors( node )[ 0 ];
- const treeWalker = document.createTreeWalker( topmostParent, NodeFilter.SHOW_TEXT | NodeFilter.SHOW_ELEMENT, {
- acceptNode( node ) {
- if ( isText( node ) ) {
- return NodeFilter.FILTER_ACCEPT;
- }
- if ( node.tagName == 'BR' ) {
- return NodeFilter.FILTER_ACCEPT;
- }
- return NodeFilter.FILTER_SKIP;
- }
- } );
- treeWalker.currentNode = node;
- const touchingNode = treeWalker[ direction ]();
- if ( touchingNode !== null ) {
- const lca = getCommonAncestor( node, touchingNode );
- // If there is common ancestor between the text node and next/prev text node,
- // and there are no block elements on a way from the text node to that ancestor,
- // and there are no block elements on a way from next/prev text node to that ancestor...
- if (
- lca &&
- !_hasDomParentOfType( node, this.blockElements, lca ) &&
- !_hasDomParentOfType( touchingNode, this.blockElements, lca )
- ) {
- // Then they are in the same container element.
- return touchingNode;
- }
- }
- return null;
- }
- }
- // Helper function.
- // Used to check if given native `Element` or `Text` node has parent with tag name from `types` array.
- //
- // @param {Node} node
- // @param {Array.<String>} types
- // @param {Boolean} [boundaryParent] Can be given if parents should be checked up to a given element (excluding that element).
- // @returns {Boolean} `true` if such parent exists or `false` if it does not.
- function _hasDomParentOfType( node, types, boundaryParent ) {
- let parents = getAncestors( node );
- if ( boundaryParent ) {
- parents = parents.slice( parents.indexOf( boundaryParent ) + 1 );
- }
- return parents.some( parent => parent.tagName && types.includes( parent.tagName.toLowerCase() ) );
- }
- // A helper that executes given callback for each DOM node's ancestor, starting from the given node
- // and ending in document#documentElement.
- //
- // @param {Node} node
- // @param {Function} callback A callback to be executed for each ancestor.
- function forEachDomNodeAncestor( node, callback ) {
- while ( node && node != global.document ) {
- callback( node );
- node = node.parentNode;
- }
- }
|