UpcastDispatcher (engine/conversion)
@ckeditor/ckeditor5-engine/src/conversion/upcastdispatcher
Upcast dispatcher is a central point of the view-to-model conversion, which is a process of converting a given view document fragment or view element into a correct model structure.
During the conversion process, the dispatcher fires events for all view nodes from the converted view document fragment. Special callbacks called "converters" should listen to these events in order to convert the view nodes.
The second parameter of the callback is the data
object with the following properties:
data.viewItem
contains a view node or a view document fragment that is converted at the moment and might be handled by the callback.data.modelRange
is used to point to the result of the current conversion (e.g. the element that is being inserted) and is always aRange
when the conversion succeeds.data.modelCursor
is a position on which the converter should insert the newly created items.
The third parameter of the callback is an instance of UpcastConversionApi
which provides additional tools for converters.
You can read more about conversion in the Upcast conversion guide.
Examples of event-based converters:
// A converter for links (<a>).
editor.data.upcastDispatcher.on( 'element:a', ( evt, data, conversionApi ) => {
if ( conversionApi.consumable.consume( data.viewItem, { name: true, attributes: [ 'href' ] } ) ) {
// The <a> element is inline and is represented by an attribute in the model.
// This is why you need to convert only children.
const { modelRange } = conversionApi.convertChildren( data.viewItem, data.modelCursor );
for ( let item of modelRange.getItems() ) {
if ( conversionApi.schema.checkAttribute( item, 'linkHref' ) ) {
conversionApi.writer.setAttribute( 'linkHref', data.viewItem.getAttribute( 'href' ), item );
}
}
}
} );
// Convert <p> element's font-size style.
// Note: You should use a low-priority observer in order to ensure that
// it is executed after the element-to-element converter.
editor.data.upcastDispatcher.on( 'element:p', ( evt, data, conversionApi ) => {
const { consumable, schema, writer } = conversionApi;
if ( !consumable.consume( data.viewItem, { style: 'font-size' } ) ) {
return;
}
const fontSize = data.viewItem.getStyle( 'font-size' );
// Do not go for the model element after data.modelCursor because it might happen
// that a single view element was converted to multiple model elements. Get all of them.
for ( const item of data.modelRange.getItems( { shallow: true } ) ) {
if ( schema.checkAttribute( item, 'fontSize' ) ) {
writer.setAttribute( 'fontSize', fontSize, item );
}
}
}, { priority: 'low' } );
// Convert all elements which have no custom converter into a paragraph (autoparagraphing).
editor.data.upcastDispatcher.on( 'element', ( evt, data, conversionApi ) => {
// Check if an element can be converted.
if ( !conversionApi.consumable.test( data.viewItem, { name: data.viewItem.name } ) ) {
// When an element is already consumed by higher priority converters, do nothing.
return;
}
const paragraph = conversionApi.writer.createElement( 'paragraph' );
// Try to safely insert a paragraph at the model cursor - it will find an allowed parent for the current element.
if ( !conversionApi.safeInsert( paragraph, data.modelCursor ) ) {
// When an element was not inserted, it means that you cannot insert a paragraph at this position.
return;
}
// Consume the inserted element.
conversionApi.consumable.consume( data.viewItem, { name: data.viewItem.name } ) );
// Convert the children to a paragraph.
const { modelRange } = conversionApi.convertChildren( data.viewItem, paragraph ) );
// Update `modelRange` and `modelCursor` in the `data` as a conversion result.
conversionApi.updateConversionResult( paragraph, data );
}, { priority: 'low' } );
Filtering
Properties
-
conversionApi : UpcastConversionApi
module:engine/conversion/upcastdispatcher~UpcastDispatcher#conversionApi
An interface passed by the dispatcher to the event callbacks.
-
private
_cursorParents : Map<Node, Element | DocumentFragment>
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_cursorParents
The list of cursor parent elements that were created during splitting.
After the conversion process the list is cleared.
-
private
_emptyElementsToKeep : Set<Element>
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_emptyElementsToKeep
The list of elements that were created during the splitting but should not get removed on conversion end even if they are empty.
The list is cleared after the conversion process.
-
private
_modelCursor : null | Position
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_modelCursor
The position in the temporary structure where the converted content is inserted. The structure reflects the context of the target position where the content will be inserted. This property is built based on the context parameter of the convert method.
-
private
_splitParts : Map<Element, Array<Element>>
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_splitParts
The list of elements that were created during splitting.
After the conversion process, the list is cleared.
Methods
-
constructor( conversionApi )
module:engine/conversion/upcastdispatcher~UpcastDispatcher#constructor
Creates an upcast dispatcher that operates using the passed API.
Parameters
conversionApi : Pick<UpcastConversionApi, 'schema'>
Additional properties for an interface that will be passed to events fired by the upcast dispatcher.
Related:
-
convert( viewElement, writer, context ) → DocumentFragment
module:engine/conversion/upcastdispatcher~UpcastDispatcher#convert
Starts the conversion process. The entry point for the conversion.
Parameters
viewElement : Element | DocumentFragment
The part of the view to be converted.
writer : Writer
An instance of the model writer.
context : SchemaContextDefinition
Elements will be converted according to this context.
Defaults to
...
Returns
DocumentFragment
Model data that is the result of the conversion process wrapped in
DocumentFragment
. Converted marker elements will be set as the document fragment's static markers map.
Fires
-
inherited
delegate( events ) → EmitterMixinDelegateChain
module:engine/conversion/upcastdispatcher~UpcastDispatcher#delegate
Delegates selected events to another
Emitter
. For instance:emitterA.delegate( 'eventX' ).to( emitterB ); emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );
then
eventX
is delegated (fired by)emitterB
andemitterC
along withdata
:emitterA.fire( 'eventX', data );
and
eventY
is delegated (fired by)emitterC
along withdata
:emitterA.fire( 'eventY', data );
Parameters
events : Array<string>
Event names that will be delegated to another emitter.
Returns
-
inherited
fire( eventOrInfo, args ) → GetEventInfo<TEvent>[ 'return' ]
module:engine/conversion/upcastdispatcher~UpcastDispatcher#fire
Fires an event, executing all callbacks registered for it.
The first parameter passed to callbacks is an
EventInfo
object, followed by the optionalargs
provided in thefire()
method call.Type parameters
Parameters
eventOrInfo : GetNameOrEventInfo<TEvent>
The name of the event or
EventInfo
object if event is delegated.args : TEvent[ 'args' ]
Additional arguments to be passed to the callbacks.
Returns
GetEventInfo<TEvent>[ 'return' ]
By default the method returns
undefined
. However, the return value can be changed by listeners through modification of theevt.return
's property (the event info is the first param of every callback).
-
inherited
listenTo( emitter, event, callback, [ options ] ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#listenTo:BASE_EMITTER
Registers a callback function to be executed when an event is fired in a specific (emitter) object.
Events can be grouped in namespaces using
:
. When namespaced event is fired, it additionally fires all callbacks for that namespace.// myEmitter.on( ... ) is a shorthand for myEmitter.listenTo( myEmitter, ... ). myEmitter.on( 'myGroup', genericCallback ); myEmitter.on( 'myGroup:myEvent', specificCallback ); // genericCallback is fired. myEmitter.fire( 'myGroup' ); // both genericCallback and specificCallback are fired. myEmitter.fire( 'myGroup:myEvent' ); // genericCallback is fired even though there are no callbacks for "foo". myEmitter.fire( 'myGroup:foo' );
An event callback can stop the event and set the return value of the
fire
method.Type parameters
Parameters
emitter : Emitter
The object that fires the event.
event : TEvent[ 'name' ]
The name of the event.
callback : GetCallback<TEvent>
The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>
Additional options.
Returns
void
-
inherited
off( event, callback ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#off
Stops executing the callback on the given event. Shorthand for
this.stopListening( this, event, callback )
.Parameters
event : string
The name of the event.
callback : Function
The function to stop being called.
Returns
void
-
inherited
on( event, callback, [ options ] ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#on
Registers a callback function to be executed when an event is fired.
Shorthand for
this.listenTo( this, event, callback, options )
(it makes the emitter listen on itself).Type parameters
Parameters
event : TEvent[ 'name' ]
The name of the event.
callback : GetCallback<TEvent>
The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>
Additional options.
Returns
void
-
inherited
once( event, callback, [ options ] ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#once
Registers a callback function to be executed on the next time the event is fired only. This is similar to calling
on
followed byoff
in the callback.Type parameters
Parameters
event : TEvent[ 'name' ]
The name of the event.
callback : GetCallback<TEvent>
The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>
Additional options.
Returns
void
-
inherited
stopDelegating( [ event ], [ emitter ] ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#stopDelegating
Stops delegating events. It can be used at different levels:
- To stop delegating all events.
- To stop delegating a specific event to all emitters.
- To stop delegating a specific event to a specific emitter.
Parameters
[ event ] : string
The name of the event to stop delegating. If omitted, stops it all delegations.
[ emitter ] : Emitter
(requires
event
) The object to stop delegating a particular event to. If omitted, stops delegation ofevent
to all emitters.
Returns
void
-
inherited
stopListening( [ emitter ], [ event ], [ callback ] ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#stopListening:BASE_STOP
Stops listening for events. It can be used at different levels:
- To stop listening to a specific callback.
- To stop listening to a specific event.
- To stop listening to all events fired by a specific object.
- To stop listening to all events fired by all objects.
Parameters
[ emitter ] : Emitter
The object to stop listening to. If omitted, stops it for all objects.
[ event ] : string
(Requires the
emitter
) The name of the event to stop listening to. If omitted, stops it for all events fromemitter
.[ callback ] : Function
(Requires the
event
) The function to be removed from the call list for the givenevent
.
Returns
void
-
private
_convertChildren( viewItem, elementOrModelCursor ) → object
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_convertChildren
Parameters
viewItem : Element | DocumentFragment
elementOrModelCursor : Element | Position
Returns
object
Related:
-
private
_convertItem( viewItem, modelCursor ) → object
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_convertItem
-
private
_getSplitParts( element ) → Array<Element>
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_getSplitParts
-
private
_keepEmptyElement( element ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_keepEmptyElement
Mark an element that were created during the splitting to not get removed on conversion end even if it is empty.
Parameters
element : Element
Returns
void
-
private
_registerSplitPair( originalPart, splitPart ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_registerSplitPair
Registers that a
splitPart
element is a split part of theoriginalPart
element.The data set by this method is used by
_getSplitParts
and_removeEmptyElements
.Parameters
Returns
void
-
private
_removeEmptyElements() → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_removeEmptyElements
Checks if there are any empty elements created while splitting and removes them.
This method works recursively to re-check empty elements again after at least one element was removed in the initial call, as some elements might have become empty after other empty elements were removed from them.
Returns
void
-
private
_safeInsert( modelNode, position ) → boolean
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_safeInsert
Parameters
Returns
boolean
Related:
-
private
_splitToAllowedParent( node, modelCursor ) → null | object
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_splitToAllowedParent
Parameters
Returns
null | object
Related:
-
private
_updateConversionResult( modelElement, data ) → void
module:engine/conversion/upcastdispatcher~UpcastDispatcher#_updateConversionResult
Parameters
modelElement : Element
data : UpcastConversionData<DocumentFragment | Item>
Returns
void
Related:
Events
-
documentFragment( eventInfo, data, conversionApi )
module:engine/conversion/upcastdispatcher~UpcastDispatcher#event:documentFragment
Fired when a
DocumentFragment
is converted.Parameters
eventInfo : EventInfo
An object containing information about the fired event.
data : UpcastConversionData<TItem>
conversionApi : UpcastConversionApi
Related:
-
element( eventInfo, data, conversionApi )
module:engine/conversion/upcastdispatcher~UpcastDispatcher#event:element
Fired when an
Element
is converted.element
is a namespace event for a class of events. Names of actually called events follow the pattern ofelement:<elementName>
whereelementName
is the name of the converted element. This way listeners may listen to a conversion of all or just specific elements.Parameters
eventInfo : EventInfo
An object containing information about the fired event.
data : UpcastConversionData<TItem>
The conversion data. Keep in mind that this object is shared by reference between all callbacks that will be called. This means that callbacks can override values if needed, and these values will be available in other callbacks.
conversionApi : UpcastConversionApi
Conversion utilities to be used by the callback.
-
text( eventInfo, data, conversionApi )
module:engine/conversion/upcastdispatcher~UpcastDispatcher#event:text
Fired when a
Text
is converted.Parameters
eventInfo : EventInfo
An object containing information about the fired event.
data : UpcastConversionData<TItem>
conversionApi : UpcastConversionApi
Related:
-
viewCleanup( eventInfo, viewItem )
module:engine/conversion/upcastdispatcher~UpcastDispatcher#event:viewCleanup
Fired before the first conversion event, at the beginning of the upcast (view-to-model conversion) process.
Parameters
eventInfo : EventInfo
An object containing information about the fired event.
viewItem : Element | DocumentFragment
A part of the view to be converted.
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.
With the release of version 42.0.0, we have rewritten much of our documentation to reflect the new import paths and features. We appreciate your feedback to help us ensure its accuracy and completeness.