Trilium Frontend API
    Preparing search index...

    Class UpcastDispatcher

    Upcast dispatcher is a central point of the view-to-model conversion, which is a process of converting a given module:engine/view/documentfragment~ViewDocumentFragment view document fragment or module:engine/view/element~ViewElement view element into a correct model structure.

    During the conversion process, the dispatcher fires events for all module:engine/view/node~ViewNode 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 module:engine/view/node~ViewNode view node or a module:engine/view/documentfragment~ViewDocumentFragment 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 a module:engine/model/range~ModelRange when the conversion succeeds.
    • data.modelCursor is a module:engine/model/position~ModelPosition position on which the converter should insert the newly created items.

    The third parameter of the callback is an instance of module:engine/conversion/upcastdispatcher~UpcastConversionApi which provides additional tools for converters.

    You can read more about conversion in the {@glink framework/deep-dive/conversion/upcast 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' } );

    viewCleanup

    element

    text

    documentFragment

    Hierarchy (View Summary)

    Index

    Constructors

    • 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.

      Returns UpcastDispatcher

      module:engine/conversion/upcastdispatcher~UpcastConversionApi

    Properties

    conversionApi: UpcastConversionApi

    An interface passed by the dispatcher to the event callbacks.

    Methods

    • Delegates selected events to another module:utils/emittermixin~Emitter. For instance:

      emitterA.delegate( 'eventX' ).to( emitterB );
      emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );

      then eventX is delegated (fired by) emitterB and emitterC along with data:

      emitterA.fire( 'eventX', data );
      

      and eventY is delegated (fired by) emitterC along with data:

      emitterA.fire( 'eventY', data );
      

      Parameters

      • ...events: string[]

        Event names that will be delegated to another emitter.

      Returns EmitterMixinDelegateChain

    • Fires an event, executing all callbacks registered for it.

      The first parameter passed to callbacks is an module:utils/eventinfo~EventInfo object, followed by the optional args provided in the fire() method call.

      Type Parameters

      • TEvent extends BaseEvent

        The type describing the event. See module:utils/emittermixin~BaseEvent.

      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 the module:utils/eventinfo~EventInfo#return evt.return's property (the event info is the first param of every callback).

    • 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 module:utils/eventinfo~EventInfo#stop stop the event and set the module:utils/eventinfo~EventInfo#return return value of the #fire method.

      Type Parameters

      • TEvent extends BaseEvent

        The type describing the event. See module:utils/emittermixin~BaseEvent.

      Parameters

      Returns void

      BASE_EMITTER

    • Stops executing the callback on the given event. Shorthand for #stopListening this.stopListening( this, event, callback ).

      Parameters

      • event: string

        The name of the event.

      • callback: Function

        The function to stop being called.

      Returns void

    • Registers a callback function to be executed when an event is fired.

      Shorthand for #listenTo this.listenTo( this, event, callback, options ) (it makes the emitter listen on itself).

      Type Parameters

      • TEvent extends BaseEvent

        The type descibing the event. See module:utils/emittermixin~BaseEvent.

      Parameters

      Returns void

    • Registers a callback function to be executed on the next time the event is fired only. This is similar to calling #on followed by #off in the callback.

      Type Parameters

      • TEvent extends BaseEvent

        The type descibing the event. See module:utils/emittermixin~BaseEvent.

      Parameters

      Returns void

    • 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

      • Optionalevent: string

        The name of the event to stop delegating. If omitted, stops it all delegations.

      • Optionalemitter: Emitter

        (requires event) The object to stop delegating a particular event to. If omitted, stops delegation of event to all emitters.

      Returns void

    • 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

      • Optionalemitter: Emitter

        The object to stop listening to. If omitted, stops it for all objects.

      • Optionalevent: string

        (Requires the emitter) The name of the event to stop listening to. If omitted, stops it for all events from emitter.

      • Optionalcallback: Function

        (Requires the event) The function to be removed from the call list for the given event.

      Returns void

      BASE_STOP